From 63042ec4bda65e35a643e5769e6ff1fb0b4fed61 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Tue, 28 Nov 2023 11:20:38 -0800 Subject: [PATCH] Auth code review (#1250) This is the first (and likely largest) set of suggestions I have from my second pass through code review on auth.rs, which I think at this point I've at least reviewed all the _logic_ of. There's still some naming, corner-case panic-avoidance and comment-clarity stuff I'll come back to address tomorrow, but the main thing I wanted to do was understand the tracker-matching logic, and I think I did that (at least I documented it here, made its state values and invariants a bit more explicit, and it still passes all tests; comments welcome!) I did notice one thing that I am quite uncertain about, logic-wise: it seems to me that the snapshot and rollback functionality for `InvokerContractAuthorizationTracker`s does .. nothing much? Or not what I would expect anyways. In particular: - It snapshots the `AuthorizedInvocation`s for each tracker, but not the rest of the tracker's matching state. - On rollback it restores even less, only comparing the length of the trackers vector, and then throwing the snapshots away. It seems to me that it should snapshot the full matching state of the trackers, and restore them to that state on rollback, especially because the set of trackers could actually change between snapshot and restore (because a user could call `authorize_as_curr_contract` to extend them). But that seems quite far from how it works now, and I worry that gap is intentional and I'm completely misunderstanding; I would appreciate clarification from @dmkozh about whether the current behaviour is actually correct in this regard, and if so why. --- ...test__bytes__linear_memory_operations.json | 2 +- .../test__complex__run_complex_1.json | 2 +- .../test__complex__run_complex_2.json | 2 +- ...ch__dispatch_with_wrong_arg_type_call.json | 2 +- ...ch_with_wrong_arg_type_contract_event.json | 2 +- ...h_with_wrong_arg_type_create_contract.json | 2 +- ...th_wrong_arg_type_duration_obj_to_u64.json | 2 +- ...h_with_wrong_arg_type_fail_with_error.json | 2 +- ...h_wrong_arg_type_i256_val_to_be_bytes.json | 2 +- ...wrong_arg_type_log_from_linear_memory.json | 2 +- ..._dispatch_with_wrong_arg_type_map_put.json | 2 +- ..._dispatch_with_wrong_arg_type_obj_cmp.json | 2 +- ..._with_wrong_arg_type_obj_to_i128_lo64.json | 2 +- ...with_wrong_arg_type_obj_to_i256_hi_hi.json | 2 +- ...spatch_with_wrong_arg_type_obj_to_i64.json | 2 +- ..._with_wrong_arg_type_obj_to_u128_lo64.json | 2 +- ...with_wrong_arg_type_obj_to_u256_hi_hi.json | 2 +- ...spatch_with_wrong_arg_type_obj_to_u64.json | 2 +- ...arg_type_string_copy_to_linear_memory.json | 2 +- ...arg_type_symbol_copy_to_linear_memory.json | 2 +- ...h_wrong_arg_type_timepoint_obj_to_u64.json | 2 +- ...wrong_arg_type_u256_val_from_be_bytes.json | 2 +- ...h_wrong_arg_type_u256_val_to_be_bytes.json | 2 +- ...object_handle_address_to_strkey_arg_0.json | 2 +- ...ndle_authorize_as_curr_contract_arg_0.json | 2 +- ...alid_object_handle_bytes_append_arg_0.json | 2 +- ...alid_object_handle_bytes_append_arg_1.json | 2 +- ...nvalid_object_handle_bytes_back_arg_0.json | 2 +- ...e_bytes_copy_from_linear_memory_arg_0.json | 2 +- ...dle_bytes_copy_to_linear_memory_arg_0.json | 2 +- ...invalid_object_handle_bytes_del_arg_0.json | 2 +- ...valid_object_handle_bytes_front_arg_0.json | 2 +- ...invalid_object_handle_bytes_get_arg_0.json | 2 +- ...alid_object_handle_bytes_insert_arg_0.json | 2 +- ...invalid_object_handle_bytes_len_arg_0.json | 2 +- ...invalid_object_handle_bytes_pop_arg_0.json | 2 +- ...nvalid_object_handle_bytes_push_arg_0.json | 2 +- ...invalid_object_handle_bytes_put_arg_0.json | 2 +- ...valid_object_handle_bytes_slice_arg_0.json | 2 +- ...tch__invalid_object_handle_call_arg_0.json | 2 +- ...tch__invalid_object_handle_call_arg_2.json | 2 +- ...t_handle_compute_hash_keccak256_arg_0.json | 2 +- ...ject_handle_compute_hash_sha256_arg_0.json | 2 +- ...id_object_handle_contract_event_arg_0.json | 2 +- ...ct_handle_create_asset_contract_arg_0.json | 2 +- ...d_object_handle_create_contract_arg_0.json | 2 +- ...d_object_handle_create_contract_arg_1.json | 2 +- ...d_object_handle_create_contract_arg_2.json | 2 +- ...t_handle_deserialize_from_bytes_arg_0.json | 2 +- ...ject_handle_duration_obj_to_u64_arg_0.json | 2 +- ..._contract_instance_and_code_ttl_arg_0.json | 2 +- ...ct_handle_get_asset_contract_id_arg_0.json | 2 +- ...d_object_handle_get_contract_id_arg_0.json | 2 +- ...d_object_handle_get_contract_id_arg_1.json | 2 +- ...t_handle_i256_val_from_be_bytes_arg_0.json | 2 +- ...__invalid_object_handle_map_del_arg_0.json | 2 +- ...__invalid_object_handle_map_get_arg_0.json | 2 +- ...__invalid_object_handle_map_has_arg_0.json | 2 +- ...id_object_handle_map_key_by_pos_arg_0.json | 2 +- ..._invalid_object_handle_map_keys_arg_0.json | 2 +- ...__invalid_object_handle_map_len_arg_0.json | 2 +- ...__invalid_object_handle_map_put_arg_0.json | 2 +- ...dle_map_unpack_to_linear_memory_arg_0.json | 2 +- ...id_object_handle_map_val_by_pos_arg_0.json | 2 +- ...nvalid_object_handle_map_values_arg_0.json | 2 +- ..._object_handle_obj_to_i128_hi64_arg_0.json | 2 +- ..._object_handle_obj_to_i128_lo64_arg_0.json | 2 +- ...object_handle_obj_to_i256_hi_hi_arg_0.json | 2 +- ...object_handle_obj_to_i256_hi_lo_arg_0.json | 2 +- ...object_handle_obj_to_i256_lo_hi_arg_0.json | 2 +- ...object_handle_obj_to_i256_lo_lo_arg_0.json | 2 +- ...nvalid_object_handle_obj_to_i64_arg_0.json | 2 +- ..._object_handle_obj_to_u128_hi64_arg_0.json | 2 +- ..._object_handle_obj_to_u128_lo64_arg_0.json | 2 +- ...object_handle_obj_to_u256_hi_hi_arg_0.json | 2 +- ...object_handle_obj_to_u256_hi_lo_arg_0.json | 2 +- ...object_handle_obj_to_u256_lo_hi_arg_0.json | 2 +- ...object_handle_obj_to_u256_lo_lo_arg_0.json | 2 +- ...nvalid_object_handle_obj_to_u64_arg_0.json | 2 +- ...valid_object_handle_prng_reseed_arg_0.json | 2 +- ..._object_handle_prng_vec_shuffle_arg_0.json | 2 +- ...dle_recover_key_ecdsa_secp256k1_arg_0.json | 2 +- ...dle_recover_key_ecdsa_secp256k1_arg_1.json | 2 +- ...alid_object_handle_require_auth_arg_0.json | 2 +- ...ct_handle_require_auth_for_args_arg_0.json | 2 +- ...ct_handle_require_auth_for_args_arg_1.json | 2 +- ...le_string_copy_to_linear_memory_arg_0.json | 2 +- ...nvalid_object_handle_string_len_arg_0.json | 2 +- ...le_symbol_copy_to_linear_memory_arg_0.json | 2 +- ...nvalid_object_handle_symbol_len_arg_0.json | 2 +- ...ect_handle_timepoint_obj_to_u64_arg_0.json | 2 +- ..._invalid_object_handle_try_call_arg_0.json | 2 +- ..._invalid_object_handle_try_call_arg_2.json | 2 +- ...t_handle_u256_val_from_be_bytes_arg_0.json | 2 +- ...le_update_current_contract_wasm_arg_0.json | 2 +- ...valid_object_handle_upload_wasm_arg_0.json | 2 +- ...nvalid_object_handle_vec_append_arg_0.json | 2 +- ...nvalid_object_handle_vec_append_arg_1.json | 2 +- ..._invalid_object_handle_vec_back_arg_0.json | 2 +- ...object_handle_vec_binary_search_arg_0.json | 2 +- ...__invalid_object_handle_vec_del_arg_0.json | 2 +- ...bject_handle_vec_first_index_of_arg_0.json | 2 +- ...invalid_object_handle_vec_front_arg_0.json | 2 +- ...__invalid_object_handle_vec_get_arg_0.json | 2 +- ...nvalid_object_handle_vec_insert_arg_0.json | 2 +- ...object_handle_vec_last_index_of_arg_0.json | 2 +- ...__invalid_object_handle_vec_len_arg_0.json | 2 +- ...alid_object_handle_vec_pop_back_arg_0.json | 2 +- ...lid_object_handle_vec_pop_front_arg_0.json | 2 +- ...lid_object_handle_vec_push_back_arg_0.json | 2 +- ...id_object_handle_vec_push_front_arg_0.json | 2 +- ...__invalid_object_handle_vec_put_arg_0.json | 2 +- ...invalid_object_handle_vec_slice_arg_0.json | 2 +- ...dle_vec_unpack_to_linear_memory_arg_0.json | 2 +- ...bject_handle_verify_sig_ed25519_arg_0.json | 2 +- ...bject_handle_verify_sig_ed25519_arg_1.json | 2 +- ...bject_handle_verify_sig_ed25519_arg_2.json | 2 +- ...ils_when_contract_call_depth_exceeded.json | 402 ++++++------ ...ils_when_serialization_depth_exceeded.json | 6 +- ...l_fails_with_deep_xdr_deserialization.json | 398 ++++++------ ...ils_with_too_deep_xdr_deserialization.json | 398 ++++++------ ...alization_exceeding_host_object_depth.json | 398 ++++++------ ...t_deep_stack_call_succeeds_near_limit.json | 398 ++++++------ ...s_near_limit_with_xdr_deserialization.json | 398 ++++++------ ...with_debug_on_off_affects_no_metering.json | 2 +- ...est__invocation__error_spoof_rejected.json | 2 +- .../test__invocation__invoke_alloc.json | 2 +- ...ocation__invoke_contract_with_reentry.json | 2 +- ...ation__invoke_cross_contract_indirect.json | 4 +- ...n__invoke_cross_contract_indirect_err.json | 2 +- ...nvoke_cross_contract_with_diagnostics.json | 2 +- ...ation__invoke_cross_contract_with_err.json | 2 +- ...ke_cross_contract_without_diagnostics.json | 2 +- ...tion__invoke_single_contract_function.json | 2 +- ...tion__wasm_invoke_return_err_variants.json | 2 +- ..._lifecycle__test_contract_wasm_update.json | 2 +- ...st_contract_wasm_update_with_try_call.json | 4 +- ...ct_from_source_account_recording_auth.json | 2 +- ...m_linear_memory_with_bytes_length_oob.json | 2 +- ...from_linear_memory_with_bytes_pos_oob.json | 2 +- ...rom_linear_memory_with_good_inputs_ok.json | 2 +- ...o_linear_memory_with_bytes_length_oob.json | 2 +- ...y_to_linear_memory_with_bytes_pos_oob.json | 2 +- ..._to_linear_memory_with_good_inputs_ok.json | 2 +- ...o_linear_memory_with_not_enough_bytes.json | 2 +- ...m_linear_memory_with_bytes_length_oob.json | 2 +- ...from_linear_memory_with_bytes_pos_oob.json | 2 +- ...rom_linear_memory_with_good_inputs_ok.json | 2 +- ...rom_linear_memory_with_bad_key_length.json | 2 +- ...w_from_linear_memory_with_bad_key_ptr.json | 2 +- ...rom_linear_memory_with_good_slices_ok.json | 2 +- ...m_linear_memory_with_good_val_data_ok.json | 2 +- ..._from_linear_memory_with_invalid_vals.json | 2 +- ...om_linear_memory_with_length_too_long.json | 2 +- ...m_linear_memory_with_pos_out_of_range.json | 2 +- ..._to_linear_memory_with_bad_key_length.json | 2 +- ...ack_to_linear_memory_with_bad_key_ptr.json | 2 +- ..._to_linear_memory_with_good_slices_ok.json | 2 +- ...o_linear_memory_with_good_val_data_ok.json | 2 +- ...to_linear_memory_with_length_too_long.json | 2 +- ...o_linear_memory_with_pos_out_of_range.json | 2 +- ...o_linear_memory_with_bytes_length_oob.json | 2 +- ...y_to_linear_memory_with_bytes_pos_oob.json | 2 +- ..._to_linear_memory_with_good_inputs_ok.json | 2 +- ...o_linear_memory_with_not_enough_bytes.json | 2 +- ...m_linear_memory_with_bytes_length_oob.json | 2 +- ...from_linear_memory_with_bytes_pos_oob.json | 2 +- ...rom_linear_memory_with_good_inputs_ok.json | 2 +- ...o_linear_memory_with_bytes_length_oob.json | 2 +- ...y_to_linear_memory_with_bytes_pos_oob.json | 2 +- ..._to_linear_memory_with_good_inputs_ok.json | 2 +- ...o_linear_memory_with_not_enough_bytes.json | 2 +- ..._in_linear_memory_with_bad_key_length.json | 2 +- ...dex_in_linear_memory_with_bad_key_ptr.json | 2 +- ..._in_linear_memory_with_good_slices_ok.json | 2 +- ...m_linear_memory_with_bytes_length_oob.json | 2 +- ...from_linear_memory_with_bytes_pos_oob.json | 2 +- ...rom_linear_memory_with_good_inputs_ok.json | 2 +- ...m_linear_memory_with_good_val_data_ok.json | 2 +- ..._from_linear_memory_with_invalid_vals.json | 2 +- ...om_linear_memory_with_length_too_long.json | 2 +- ...m_linear_memory_with_pos_out_of_range.json | 2 +- ...o_linear_memory_with_good_val_data_ok.json | 2 +- ...to_linear_memory_with_length_too_long.json | 2 +- ...o_linear_memory_with_pos_out_of_range.json | 2 +- ...t_mvp__test_enabled_post_mvp_features.json | 2 +- ...ccount_invoker_auth_with_issuer_admin.json | 10 +- ...t_contract__test_allowance_live_until.json | 12 +- ...assic_balance_boundaries_large_values.json | 14 +- ...act_classic_balance_boundaries_simple.json | 14 +- ...c_balance_boundaries_with_liabilities.json | 14 +- ...boundaries_with_limit_and_liabilities.json | 14 +- ...lance_boundaries_with_trustline_limit.json | 14 +- ..._auth_rejected_for_bad_signature_type.json | 2 +- ...est_auth_rejected_for_incorrect_nonce.json | 10 +- ...t_auth_rejected_for_incorrect_payload.json | 2 +- ...ar_asset_contract__test_auth_required.json | 4 +- ...ract__test_auth_revocable_on_contract.json | 6 +- ...st__stellar_asset_contract__test_burn.json | 20 +- ...set_contract__test_cannot_burn_native.json | 2 +- ...t__test_classic_account_multisig_auth.json | 26 +- ...s_not_possible_for_unauthorized_asset.json | 4 +- ...et_contract__test_clawback_on_account.json | 8 +- ...t_contract__test_clawback_on_contract.json | 8 +- ..._contract__test_contract_invoker_auth.json | 2 +- ...et_contract__test_custom_account_auth.json | 16 +- ..._asset_contract__test_direct_transfer.json | 8 +- ...test_negative_amounts_are_not_allowed.json | 4 +- ...rding_auth_for_stellar_asset_contract.json | 2 +- ...ract__test_sac_reentry_is_not_allowed.json | 10 +- ...tellar_asset_contract__test_set_admin.json | 14 +- ..._stellar_asset_contract_authorization.json | 16 +- ...act_classic_balance_boundaries_simple.json | 10 +- ..._balance_boundaries_with_large_values.json | 10 +- ...c_balance_boundaries_with_liabilities.json | 10 +- ..._balance_boundaries_with_sponsorships.json | 10 +- ...ies_with_sponsorships_and_liabilities.json | 10 +- ...ontract__test_transfer_with_allowance.json | 16 +- ...r_asset_contract__test_trustline_auth.json | 24 +- ...lar_asset_contract__test_zero_amounts.json | 14 +- ...ract__verify_nested_try_call_rollback.json | 6 +- .../test__storage__test_instance_storage.json | 2 +- ...est__storage__test_large_instance_key.json | 2 +- ...t__storage__test_large_instance_value.json | 2 +- ...t__storage__test_large_persistent_key.json | 2 +- ..._storage__test_large_persistent_value.json | 2 +- .../test__storage__test_nested_bump.json | 4 +- ...est__storage__test_persistent_storage.json | 2 +- .../test__storage__test_storage_mix.json | 2 +- .../test__storage__test_temp_storage.json | 2 +- .../test__vec__linear_memory_operations.json | 2 +- soroban-env-host/src/auth.rs | 585 ++++++++++-------- .../src/builtin_contracts/account_contract.rs | 19 +- soroban-env-host/src/host.rs | 2 +- soroban-env-host/src/host/conversion.rs | 42 +- 235 files changed, 1955 insertions(+), 1841 deletions(-) diff --git a/soroban-env-host/observations/test__bytes__linear_memory_operations.json b/soroban-env-host/observations/test__bytes__linear_memory_operations.json index 5393fca66..39723970a 100644 --- a/soroban-env-host/observations/test__bytes__linear_memory_operations.json +++ b/soroban-env-host/observations/test__bytes__linear_memory_operations.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1851968, mem:1306112, objs:-/5@c401ef9d, auth:1@351f54c4/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1852654", - " 10 call get_ledger_network_id()": "cpu:1852912, auth:1@351f54c4/1@6904edb3", + " 10 call get_ledger_network_id()": "cpu:1852912, auth:1@351f54c4/1@bda4a8d6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1855809, mem:1306224, objs:-/6@792a5a99", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1893674, mem:1307730, objs:-/7@d6d51cb7, store:-/2@4836ccd0, foot:2@b1f2e802, auth:-/1@c4bfd12a", " 13 call call(Address(obj#13), Symbol(bin_word), Vec(obj#15))": "cpu:1896460, mem:1307818, objs:-/8@f97a0e5c, auth:-/-", diff --git a/soroban-env-host/observations/test__complex__run_complex_1.json b/soroban-env-host/observations/test__complex__run_complex_1.json index 925fb292d..5dd3e8511 100644 --- a/soroban-env-host/observations/test__complex__run_complex_1.json +++ b/soroban-env-host/observations/test__complex__run_complex_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1529195, mem:1282892, objs:-/5@323db3fb, auth:1@de3a0860/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1529881", - " 10 call get_ledger_network_id()": "cpu:1530139, auth:1@de3a0860/1@6d08ef88", + " 10 call get_ledger_network_id()": "cpu:1530139, auth:1@de3a0860/1@7251f3a4", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1533036, mem:1283004, objs:-/6@2108e60f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1570901, mem:1284510, objs:-/7@41331041, store:-/2@a6c6cedb, foot:2@9f923800, auth:-/1@53e8b462", " 13 call call(Address(obj#13), Symbol(go), Vec(obj#15))": "cpu:1572042, mem:1284574, objs:-/8@8c37934a, auth:-/-", diff --git a/soroban-env-host/observations/test__complex__run_complex_2.json b/soroban-env-host/observations/test__complex__run_complex_2.json index 40a71c8a7..c89e3e8b9 100644 --- a/soroban-env-host/observations/test__complex__run_complex_2.json +++ b/soroban-env-host/observations/test__complex__run_complex_2.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1529416, mem:1283516, objs:-/5@323db3fb, auth:1@de3a0860/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1530102", - " 10 call get_ledger_network_id()": "cpu:1530360, auth:1@de3a0860/1@6d08ef88", + " 10 call get_ledger_network_id()": "cpu:1530360, auth:1@de3a0860/1@7251f3a4", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1533257, mem:1283628, objs:-/6@2108e60f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1562786, mem:1284918, objs:-/7@41331041, store:-/3@4ac985d, auth:-/1@53e8b462", " 13 call call(Address(obj#13), Symbol(go), Vec(obj#15))": "cpu:1563927, mem:1284982, objs:-/8@8c37934a, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_call.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_call.json index 33d596b3f..c676c97bd 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_call.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_call.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@3a6bffed, auth:1@8663364a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8663364a/1@410c6c66", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8663364a/1@b055b42a", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@2162e67", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@c23eec30, store:-/2@d686ae66, foot:2@a7dc2b7e, auth:-/1@eaa228d1", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@95baacb0, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_contract_event.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_contract_event.json index d0a1f598f..696be502b 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_contract_event.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_contract_event.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@999151e1, auth:1@ccf8ace5/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@ccf8ace5/1@67cea2db", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@ccf8ace5/1@e5e5f16a", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@7854f085", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@58c25580, store:-/2@cfe70b31, foot:2@4c8c7e89, auth:-/1@62519865", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@1df7e37b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_create_contract.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_create_contract.json index f5ae61198..d27199030 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_create_contract.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_create_contract.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@bde9c37e, auth:1@4de362ff/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@6dbe1fbb", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@c698f750", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@1aab4eed", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@3ba0dfd2, store:-/2@da059081, foot:2@f864dcae, auth:-/1@30581d6b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@64150a93, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_duration_obj_to_u64.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_duration_obj_to_u64.json index 632b50d54..8fa4d4578 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_duration_obj_to_u64.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_duration_obj_to_u64.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@405d49cb, auth:1@e08bcd5c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e08bcd5c/1@121562d1", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e08bcd5c/1@50052bb2", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@63388bf7", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@335c336e, store:-/2@b8aa1dff, foot:2@2eba8d2a, auth:-/1@22c85d02", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@98982401, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_fail_with_error.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_fail_with_error.json index 1a18d742e..ea7b6194a 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_fail_with_error.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_fail_with_error.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@925b54de, auth:1@e499debf/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e499debf/1@81577161", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e499debf/1@d4d4a03c", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@e557324c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@d961d582, store:-/2@892d2645, foot:2@4e58d6ef, auth:-/1@f9ac5c29", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@629791a9, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_i256_val_to_be_bytes.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_i256_val_to_be_bytes.json index 09c2eccd7..1f7d3f9e7 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_i256_val_to_be_bytes.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_i256_val_to_be_bytes.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@27a1cbe4, auth:1@92ce7ff3/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@92ce7ff3/1@267b777d", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@92ce7ff3/1@d1afa716", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@61e288f9", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@b84401e8, store:-/2@3f7ae286, foot:2@bbd43653, auth:-/1@6e905795", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@aab4378f, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_log_from_linear_memory.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_log_from_linear_memory.json index 6a273369e..341c537d7 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_log_from_linear_memory.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_log_from_linear_memory.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@1d9e0436, auth:1@d8fcacb9/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@d8fcacb9/1@c071cecd", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@d8fcacb9/1@55ce3077", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@f4c6cf9e", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@3938d66d, store:-/2@42e19808, foot:2@cb5493ab, auth:-/1@bfbdc66c", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@e2ed2e76, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_map_put.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_map_put.json index 09408446a..869f8c55c 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_map_put.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_map_put.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@8f0edeec, auth:1@31e35348/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@31e35348/1@beb6ca95", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@31e35348/1@994173f6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@cd855fbb", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@7bfdf815, store:-/2@3bae16a3, foot:2@9380539e, auth:-/1@47f4a8f5", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@1a7ee862, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_cmp.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_cmp.json index 878544aa8..d8eaa3977 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_cmp.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_cmp.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@4221ced9, auth:1@aad8905a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@aad8905a/1@7bd4226a", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@aad8905a/1@9ae7c1ab", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@f90fad42", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@1d2d5977, store:-/2@60c309df, foot:2@e21556ee, auth:-/1@951d0e08", " 13 end": "cpu:1117520, mem:204626, prngs:-/9b4a753, objs:-/7@1d2d5977, vm:-/-, evt:-, store:-/2@60c309df, foot:2@e21556ee, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i128_lo64.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i128_lo64.json index c7aeb1ea1..e4679cc22 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i128_lo64.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i128_lo64.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@fda48ce5, auth:1@3893c7e8/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@3893c7e8/1@14256af9", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@3893c7e8/1@d43541b6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@b6cfa146", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@a2b8050c, store:-/2@a1f2e3cb, foot:2@bb2ab4bc, auth:-/1@bacc53f0", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@ca22a729, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i256_hi_hi.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i256_hi_hi.json index f47e84c05..98adb222d 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i256_hi_hi.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i256_hi_hi.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@342fce2c, auth:1@edb4be3c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@edb4be3c/1@3300fa5b", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@edb4be3c/1@7dc57c90", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@a32e4c52", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@8a24e591, store:-/2@4c3b2e17, foot:2@d04307a9, auth:-/1@1240c449", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@c28b34b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i64.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i64.json index 9161f1b11..f86a87749 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i64.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_i64.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@7313bdf6, auth:1@1ee49106/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@1ee49106/1@ac3711cc", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@1ee49106/1@bf57b801", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@95d7490a", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@b970e202, store:-/2@616ad4d5, foot:2@1f0eecb2, auth:-/1@431a10fa", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@9aa2163e, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u128_lo64.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u128_lo64.json index afab13642..48025a3e0 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u128_lo64.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u128_lo64.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@f3483fb1, auth:1@70504b55/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70504b55/1@7ea04015", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70504b55/1@125323fc", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@767b9c50", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@31eceb19, store:-/2@7642de56, foot:2@3f4cce16, auth:-/1@b97cd449", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@a01bfe43, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u256_hi_hi.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u256_hi_hi.json index 503f07435..5629d8439 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u256_hi_hi.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u256_hi_hi.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@bdaec9c2, auth:1@21f58be/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@21f58be/1@15eb2fdc", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@21f58be/1@f7ecb65c", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@5e44cb11", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@f3be7f70, store:-/2@9a11f3fa, foot:2@c7f56519, auth:-/1@d8f5136e", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@247b5e41, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u64.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u64.json index 56ff2f12d..6b11465b4 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u64.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_obj_to_u64.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@9a750885, auth:1@70a4c4e9/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70a4c4e9/1@d162ebed", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70a4c4e9/1@e2b8e71f", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@560de9d", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@cf6c9e65, store:-/2@2ab5cc63, foot:2@9309acc8, auth:-/1@bdfcece9", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@789544d6, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_string_copy_to_linear_memory.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_string_copy_to_linear_memory.json index 391a37b6c..5a08aa0f7 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_string_copy_to_linear_memory.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_string_copy_to_linear_memory.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@ec7a3527, auth:1@32c16dbf/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@32c16dbf/1@1902f6a9", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@32c16dbf/1@1e47e2d2", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@284f85f9", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@caa3118c, store:-/2@b7025245, foot:2@e4ea900, auth:-/1@dd2669cd", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@70f53497, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_symbol_copy_to_linear_memory.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_symbol_copy_to_linear_memory.json index 73aded37e..c2384c16e 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_symbol_copy_to_linear_memory.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_symbol_copy_to_linear_memory.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@23378c1d, auth:1@623720ca/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@623720ca/1@854597d5", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@623720ca/1@dfe3057f", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@9db91801", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@2f40ec90, store:-/2@fca74d91, foot:2@1001b375, auth:-/1@ce387574", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@2c1b82d7, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_timepoint_obj_to_u64.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_timepoint_obj_to_u64.json index 532576dab..59c2ee7c8 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_timepoint_obj_to_u64.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_timepoint_obj_to_u64.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@e339a15c, auth:1@15190a57/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@15190a57/1@8512828e", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@15190a57/1@b1c4088e", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@ff1dd7cf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@207a6133, store:-/2@dd090242, foot:2@2d1b8526, auth:-/1@2f49d129", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@950d1815, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_from_be_bytes.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_from_be_bytes.json index e80b81ecb..27878389b 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_from_be_bytes.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_from_be_bytes.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@4350c5cb, auth:1@268c0647/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@268c0647/1@774f0972", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@268c0647/1@74347473", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@4c59c047", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@b8ede73d, store:-/2@aec12108, foot:2@f43b65ed, auth:-/1@d34a6e78", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@b49e6ae7, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_to_be_bytes.json b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_to_be_bytes.json index f2ee05dc1..7302c016f 100644 --- a/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_to_be_bytes.json +++ b/soroban-env-host/observations/test__dispatch__dispatch_with_wrong_arg_type_u256_val_to_be_bytes.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@2c1703b9, auth:1@26b4c6e4/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@26b4c6e4/1@64b47fc5", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@26b4c6e4/1@3cef5a5b", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@2dff2c98", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@e4e73abf, store:-/2@c9359d2a, foot:2@1a35f7ff, auth:-/1@51de19a8", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@b6775478, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_address_to_strkey_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_address_to_strkey_arg_0.json index 0761023df..b9d2d7c94 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_address_to_strkey_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_address_to_strkey_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@ad55f4da, auth:1@9a0fea68/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@9a0fea68/1@41bb3de6", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@9a0fea68/1@c7f277fe", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@edde46cd", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@31b903e5, store:-/2@15d2b21f, foot:2@c04b4659, auth:-/1@6e2299bc", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@93fd6215, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_authorize_as_curr_contract_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_authorize_as_curr_contract_arg_0.json index e07ee1d38..de5a90109 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_authorize_as_curr_contract_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_authorize_as_curr_contract_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@e9b859db, auth:1@56a02493/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@56a02493/1@5342fb87", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@56a02493/1@2cc2c954", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@d09fedbb", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@16e8011f, store:-/2@a2c641d9, foot:2@4dad0164, auth:-/1@f8086560", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@2581bb07, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_0.json index 2b5a648ff..2d5355980 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@c78c171d, auth:1@e9f9aa4a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@e9f9aa4a/1@b68e46b5", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@e9f9aa4a/1@f5e4cf8d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@9d3e476c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@8c8ac8ee, store:-/2@b8544d7a, foot:2@a732dd16, auth:-/1@85fd76da", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@64d8e693, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_1.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_1.json index 454103572..c357ee4b7 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_1.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_append_arg_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@c78c171d, auth:1@e9f9aa4a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@e9f9aa4a/1@b68e46b5", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@e9f9aa4a/1@f5e4cf8d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@9d3e476c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@8c8ac8ee, store:-/2@b8544d7a, foot:2@a732dd16, auth:-/1@85fd76da", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@43315f7, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_back_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_back_arg_0.json index 5062d366a..cd582e27d 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_back_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_back_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@1ed184f6, auth:1@718579de/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@718579de/1@83d69a0f", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@718579de/1@8b4d8efb", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@9326fd2e", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@c06b0eb5, store:-/2@1583e18c, foot:2@f24ae786, auth:-/1@f0dc561b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@7be0193b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_from_linear_memory_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_from_linear_memory_arg_0.json index 7d6c68559..dc2587bee 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_from_linear_memory_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_from_linear_memory_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@f71369e9, auth:1@fed4a0ac/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@fed4a0ac/1@79d5eee7", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@fed4a0ac/1@4b526c39", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@dd016634", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@1142feb3, store:-/2@e42b92ae, foot:2@c8c7c710, auth:-/1@5bc54d87", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@788928f9, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_to_linear_memory_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_to_linear_memory_arg_0.json index 448bd7870..221b012c4 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_to_linear_memory_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_copy_to_linear_memory_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@6d6f524e, auth:1@57d7c497/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@57d7c497/1@dd2cecb6", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@57d7c497/1@d08af7c5", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@f27e6166", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@dd0f1e63, store:-/2@df1f6a23, foot:2@b7730c34, auth:-/1@3a830fb", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@e94871e2, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_del_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_del_arg_0.json index 3d853e5e3..c747b740e 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_del_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_del_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@d6fa128e, auth:1@9d6a23cd/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@9d6a23cd/1@aeebd647", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@9d6a23cd/1@a508c3df", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@826f7230", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@b73d9512, store:-/2@8b9f075f, foot:2@8f75c65e, auth:-/1@2b50b8d4", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@8fcdded0, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_front_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_front_arg_0.json index cf93e8597..e1d8fdd10 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_front_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_front_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@281e72c8, auth:1@c9738a42/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c9738a42/1@9b5e5d0", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c9738a42/1@6c436fcb", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@63700478", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@c2af4524, store:-/2@ab46bcb9, foot:2@ba38bc37, auth:-/1@4cab3cdc", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@a94aeabd, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_get_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_get_arg_0.json index afff67f43..55b21a0b5 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_get_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_get_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@2ba82acf, auth:1@5b78b671/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@5b78b671/1@deb18da9", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@5b78b671/1@9c7d26ca", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@32c2d386", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@f57392ee, store:-/2@1ae5033f, foot:2@aec1b83e, auth:-/1@9aae450b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@e389e270, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_insert_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_insert_arg_0.json index af0a89b4c..d498635a4 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_insert_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_insert_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@70e25e08, auth:1@3281224/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@3281224/1@3fd3fcb0", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@3281224/1@f0247b7a", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@4d1e3738", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@419ba54f, store:-/2@87bf9845, foot:2@fe7c6ab0, auth:-/1@71dabe6a", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@5e39ecf4, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_len_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_len_arg_0.json index 512437a59..50dbc2047 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_len_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_len_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@c485651d, auth:1@b94ed1e2/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@b94ed1e2/1@41db1f25", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@b94ed1e2/1@74519227", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@a3b51952", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@83c56162, store:-/2@5caa9c18, foot:2@72451532, auth:-/1@f603b49", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@b6a8c27b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_pop_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_pop_arg_0.json index f9c4ee956..c8331da98 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_pop_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_pop_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@84eea2a7, auth:1@c5ea2439/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c5ea2439/1@6caa3604", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c5ea2439/1@ebb5eb88", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@750fbe99", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@3e632f2c, store:-/2@fd155627, foot:2@e4298c7b, auth:-/1@d90ffce", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@aeebdd81, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_push_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_push_arg_0.json index c20ab2028..f60f5b71e 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_push_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_push_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@99b211b9, auth:1@1742a50c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@1742a50c/1@613b66be", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@1742a50c/1@6dec118b", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@334ac34", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@6de429fb, store:-/2@7fbf142f, foot:2@cecf7a86, auth:-/1@2e30405f", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@2a1a37e3, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_put_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_put_arg_0.json index fbbac9414..829204806 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_put_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_put_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@3f9fb96, auth:1@312bd65a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@312bd65a/1@861dbe8", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@312bd65a/1@682f4125", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@3cdd1be9", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@351211bc, store:-/2@ddd198ab, foot:2@2d849092, auth:-/1@c6a24709", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@a1f12868, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_slice_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_slice_arg_0.json index ab08f61b5..711b19319 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_slice_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_bytes_slice_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@46b5c21e, auth:1@88f6fb5/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@88f6fb5/1@9ae0e532", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@88f6fb5/1@ed8f7b54", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@36f03a5e", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@e818ba4d, store:-/2@45265a99, foot:2@85c53a5f, auth:-/1@3b5918ee", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@5fe1c058, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_0.json index 9d16e98f7..6374b6887 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@3a6bffed, auth:1@8663364a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8663364a/1@410c6c66", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8663364a/1@b055b42a", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@2162e67", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@c23eec30, store:-/2@d686ae66, foot:2@a7dc2b7e, auth:-/1@eaa228d1", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1121539, mem:204879, objs:-/9@5e8538eb, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_2.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_2.json index 37b468bad..9718827fe 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_2.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_call_arg_2.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@3a6bffed, auth:1@8663364a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8663364a/1@410c6c66", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8663364a/1@b055b42a", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@2162e67", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@c23eec30, store:-/2@d686ae66, foot:2@a7dc2b7e, auth:-/1@eaa228d1", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1121539, mem:204879, objs:-/9@e5898f35, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_keccak256_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_keccak256_arg_0.json index 4e5222829..539a2c244 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_keccak256_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_keccak256_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@e2a30bf2, auth:1@ca448653/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@ca448653/1@3137c774", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@ca448653/1@d3c804ae", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@417f5b7b", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@87c905f3, store:-/2@d80f837d, foot:2@5ad43831, auth:-/1@27e2071", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@e77588cb, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_sha256_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_sha256_arg_0.json index 621d4e2b5..b12c449e5 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_sha256_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_compute_hash_sha256_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@eded5e8e, auth:1@40807e06/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@40807e06/1@f0802c7b", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@40807e06/1@382392a0", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@5caca4cb", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@57bcae4c, store:-/2@3315edad, foot:2@eda10a1b, auth:-/1@8bb234d0", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@887aab93, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_contract_event_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_contract_event_arg_0.json index a797eca9a..6190cf41c 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_contract_event_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_contract_event_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@999151e1, auth:1@ccf8ace5/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@ccf8ace5/1@67cea2db", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@ccf8ace5/1@e5e5f16a", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@7854f085", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@58c25580, store:-/2@cfe70b31, foot:2@4c8c7e89, auth:-/1@62519865", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@1fcc706b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_asset_contract_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_asset_contract_arg_0.json index b9310e8dd..e337846f2 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_asset_contract_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_asset_contract_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@bba0161c, auth:1@a49e414/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@a49e414/1@e7b81d8c", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@a49e414/1@7d2a1c68", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@36e351d7", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@95579770, store:-/2@25ac64ce, foot:2@9293fd0e, auth:-/1@60f7e8d3", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@27a4e0a2, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_0.json index ab528a0bf..194c28c25 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@bde9c37e, auth:1@4de362ff/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@6dbe1fbb", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@c698f750", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@1aab4eed", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@3ba0dfd2, store:-/2@da059081, foot:2@f864dcae, auth:-/1@30581d6b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#19))": "cpu:1122680, mem:204943, objs:-/10@3202e53f, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_1.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_1.json index 1457e9a5f..344feb0bd 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_1.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@bde9c37e, auth:1@4de362ff/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@6dbe1fbb", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@c698f750", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@1aab4eed", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@3ba0dfd2, store:-/2@da059081, foot:2@f864dcae, auth:-/1@30581d6b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#19))": "cpu:1122680, mem:204943, objs:-/10@900fd689, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_2.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_2.json index 6ebe61a28..a17b47238 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_2.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_create_contract_arg_2.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@bde9c37e, auth:1@4de362ff/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@6dbe1fbb", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@4de362ff/1@c698f750", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@1aab4eed", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@3ba0dfd2, store:-/2@da059081, foot:2@f864dcae, auth:-/1@30581d6b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#19))": "cpu:1122680, mem:204943, objs:-/10@64e3c22e, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_deserialize_from_bytes_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_deserialize_from_bytes_arg_0.json index 65eb08946..c9b00aa39 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_deserialize_from_bytes_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_deserialize_from_bytes_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@c9c2c407, auth:1@fa833a24/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@fa833a24/1@6976b4dd", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@fa833a24/1@3dcc9c02", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@dbc88209", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@771b75d2, store:-/2@7849c7d2, foot:2@9cb6352b, auth:-/1@cc0839a2", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@79a390b5, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_duration_obj_to_u64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_duration_obj_to_u64_arg_0.json index 5ccfb2b67..9ce8b2d85 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_duration_obj_to_u64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_duration_obj_to_u64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@405d49cb, auth:1@e08bcd5c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e08bcd5c/1@121562d1", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e08bcd5c/1@50052bb2", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@63388bf7", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@335c336e, store:-/2@b8aa1dff, foot:2@2eba8d2a, auth:-/1@22c85d02", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@c870cb1, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_extend_contract_instance_and_code_ttl_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_extend_contract_instance_and_code_ttl_arg_0.json index a71289e4f..5c0894f29 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_extend_contract_instance_and_code_ttl_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_extend_contract_instance_and_code_ttl_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@7cf4ebfe, auth:1@fee738b0/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@fee738b0/1@b8b00dde", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@fee738b0/1@577aa79c", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@d24ab267", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@5c7c9c3, store:-/2@61fc9f3f, foot:2@ca89a209, auth:-/1@683aed9e", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@478829d0, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_asset_contract_id_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_asset_contract_id_arg_0.json index 26996d51b..cee3220e4 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_asset_contract_id_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_asset_contract_id_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@cae58cf0, auth:1@7f8d273b/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@7f8d273b/1@64473c97", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@7f8d273b/1@87a0e5af", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@ee36e523", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@1b0d184f, store:-/2@f540f72b, foot:2@6ef9d3e6, auth:-/1@bc05fa51", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@1dc017fc, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_0.json index 2421f6df3..d9e30e8ff 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@20a010b9, auth:1@114a7196/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@114a7196/1@1565a551", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@114a7196/1@970c23ba", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@aee9a72c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@781dff1, store:-/2@5b59d641, foot:2@91299ddb, auth:-/1@111614a5", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@98eaa09e, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_1.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_1.json index 43434dce1..8883d7158 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_1.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_get_contract_id_arg_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@20a010b9, auth:1@114a7196/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@114a7196/1@1565a551", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@114a7196/1@970c23ba", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@aee9a72c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@781dff1, store:-/2@5b59d641, foot:2@91299ddb, auth:-/1@111614a5", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@ad413952, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_i256_val_from_be_bytes_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_i256_val_from_be_bytes_arg_0.json index 4405c79b9..9ec3f8c5f 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_i256_val_from_be_bytes_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_i256_val_from_be_bytes_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@a02756e1, auth:1@69fea03/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@69fea03/1@19db85f8", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@69fea03/1@690b4025", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@ce1d91b9", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@f4a2f534, store:-/2@73335879, foot:2@20296ec9, auth:-/1@e2ac5ea2", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@193bf933, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_del_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_del_arg_0.json index 8b01c119e..3ba566c48 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_del_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_del_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@b55f968d, auth:1@1668cb5a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@1668cb5a/1@850ffeb7", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@1668cb5a/1@4fed3a4d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@98847d62", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@97ec891f, store:-/2@37059ad3, foot:2@2ef5c18e, auth:-/1@59672640", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@26e94f0c, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_get_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_get_arg_0.json index 9e477a905..0ce52c8ca 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_get_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_get_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@2f834721, auth:1@68df54a/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@68df54a/1@f5580b05", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@68df54a/1@12897ff1", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@2a6d668a", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@28a136ec, store:-/2@2d4a4a9b, foot:2@bc9570ff, auth:-/1@e58d3eda", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@2e886597, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_has_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_has_arg_0.json index c26354691..bf1eca848 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_has_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_has_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@d904ada7, auth:1@d8630ea7/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@d8630ea7/1@bbc794db", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@d8630ea7/1@9e10cd61", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@3181e2ae", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@563796eb, store:-/2@5e856e19, foot:2@2214ea71, auth:-/1@523e2ba", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@72b6e356, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_key_by_pos_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_key_by_pos_arg_0.json index 0001677b8..1d220ecb5 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_key_by_pos_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_key_by_pos_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@a9da7703, auth:1@b2c2c166/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@b2c2c166/1@4d6d46f7", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@b2c2c166/1@6be54507", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@bd176207", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@e1f322cc, store:-/2@3e677c48, foot:2@6e3a3fc9, auth:-/1@92f166d1", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@a837a7fb, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_keys_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_keys_arg_0.json index c7513fa90..0830d8d9b 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_keys_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_keys_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@3b97db79, auth:1@f7b662a1/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@f7b662a1/1@185eac7d", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@f7b662a1/1@23155c9a", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@48a6e035", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@e82d36d, store:-/2@139cfd55, foot:2@66082983, auth:-/1@d3262992", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@84254df2, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_len_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_len_arg_0.json index a28df33f7..1e9dae764 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_len_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_len_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@897a8c1, auth:1@985e6bc8/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@985e6bc8/1@77173898", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@985e6bc8/1@9e07eff5", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@6dc12684", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@a56f9bf6, store:-/2@a21c869c, foot:2@a7a59d33, auth:-/1@8d01cb5b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@6cf2d1da, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_put_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_put_arg_0.json index 5ca985d99..378dbd117 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_put_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_put_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@8f0edeec, auth:1@31e35348/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@31e35348/1@beb6ca95", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@31e35348/1@994173f6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@cd855fbb", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@7bfdf815, store:-/2@3bae16a3, foot:2@9380539e, auth:-/1@47f4a8f5", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@eb0a10a9, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_unpack_to_linear_memory_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_unpack_to_linear_memory_arg_0.json index 818b40ed9..a5928be4f 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_unpack_to_linear_memory_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_unpack_to_linear_memory_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@d59d94db, auth:1@c17e413e/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@c17e413e/1@9aa169dc", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@c17e413e/1@bb821780", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@61645325", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@e8bedaa, store:-/2@325cf070, foot:2@efbc09a, auth:-/1@97f6e42e", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@d6c9d40c, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_val_by_pos_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_val_by_pos_arg_0.json index 8344a2d4b..49587f641 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_val_by_pos_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_val_by_pos_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@8fc0f30a, auth:1@1e5f1f93/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@1e5f1f93/1@c2eab9b8", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@1e5f1f93/1@a644cd4c", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@baadf5a9", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@589f0d72, store:-/2@5e24a986, foot:2@fc3a0ebf, auth:-/1@9485dec1", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@e084f66d, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_values_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_values_arg_0.json index edd753999..21f835dd3 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_values_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_map_values_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@ab9b3b05, auth:1@5816bdb9/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@5816bdb9/1@a34b6b4a", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@5816bdb9/1@8dd9fdd9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@dccc7c6c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@60de4991, store:-/2@d3e1c661, foot:2@30b7f7e3, auth:-/1@16f103de", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@cf1a12f6, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_hi64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_hi64_arg_0.json index 7df913c69..dbeafc4ae 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_hi64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_hi64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@f1cfb199, auth:1@cf19fe6e/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@cf19fe6e/1@4505262c", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@cf19fe6e/1@8a325f13", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@cb56ac66", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@de203a58, store:-/2@a3b1608, foot:2@39ba9e60, auth:-/1@646d9d07", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@5c2303c0, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_lo64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_lo64_arg_0.json index 52fe37799..5a6384ed4 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_lo64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i128_lo64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@fda48ce5, auth:1@3893c7e8/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@3893c7e8/1@14256af9", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@3893c7e8/1@d43541b6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@b6cfa146", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@a2b8050c, store:-/2@a1f2e3cb, foot:2@bb2ab4bc, auth:-/1@bacc53f0", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@a1485ae6, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_hi_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_hi_arg_0.json index b941ac667..59043b2d0 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_hi_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_hi_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@342fce2c, auth:1@edb4be3c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@edb4be3c/1@3300fa5b", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@edb4be3c/1@7dc57c90", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@a32e4c52", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@8a24e591, store:-/2@4c3b2e17, foot:2@d04307a9, auth:-/1@1240c449", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@1228ff21, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_lo_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_lo_arg_0.json index ee12bb169..d1bd8ab5d 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_lo_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_hi_lo_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@b4d37904, auth:1@30669fdb/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@30669fdb/1@4a867800", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@30669fdb/1@fcb04590", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@ae4adc1a", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@8f9b15fc, store:-/2@b879d3a1, foot:2@6a028e65, auth:-/1@1174c11", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@c97c8490, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_hi_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_hi_arg_0.json index 1fa881a52..56d80d50a 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_hi_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_hi_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@e2074988, auth:1@18717f86/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@18717f86/1@13abb121", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@18717f86/1@ebec8f28", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@64f557d7", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@579a7de4, store:-/2@e79fa940, foot:2@2231856b, auth:-/1@120570b5", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@2bffc045, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_lo_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_lo_arg_0.json index c9f3cbe3b..a1e6aef9e 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_lo_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i256_lo_lo_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@efbc4914, auth:1@c053f138/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c053f138/1@1ecd5c11", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c053f138/1@c2c9495d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@407c2e2c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@3964fa0d, store:-/2@c5cfbf19, foot:2@1cfba1b6, auth:-/1@78147231", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@4205a2ed, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i64_arg_0.json index 1c594215e..490600197 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_i64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@7313bdf6, auth:1@1ee49106/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@1ee49106/1@ac3711cc", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@1ee49106/1@bf57b801", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@95d7490a", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@b970e202, store:-/2@616ad4d5, foot:2@1f0eecb2, auth:-/1@431a10fa", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@17c93872, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_hi64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_hi64_arg_0.json index bb2e58d45..89364835a 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_hi64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_hi64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@6309927d, auth:1@79223b8f/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@79223b8f/1@fe2ab61d", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@79223b8f/1@fa640db8", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@3e9a17d", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@cf468973, store:-/2@75b015d9, foot:2@1c6f1849, auth:-/1@936903cd", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@19e6d07a, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_lo64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_lo64_arg_0.json index 7af0860e7..58f0080ef 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_lo64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u128_lo64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@f3483fb1, auth:1@70504b55/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70504b55/1@7ea04015", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70504b55/1@125323fc", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@767b9c50", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@31eceb19, store:-/2@7642de56, foot:2@3f4cce16, auth:-/1@b97cd449", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@acbc2e96, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_hi_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_hi_arg_0.json index d7a54355d..461cfe11a 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_hi_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_hi_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@bdaec9c2, auth:1@21f58be/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@21f58be/1@15eb2fdc", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@21f58be/1@f7ecb65c", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@5e44cb11", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@f3be7f70, store:-/2@9a11f3fa, foot:2@c7f56519, auth:-/1@d8f5136e", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@345837b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_lo_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_lo_arg_0.json index d2d436573..3dad34133 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_lo_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_hi_lo_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@e08387c5, auth:1@fa74c351/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@fa74c351/1@9a983a89", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@fa74c351/1@2c8569b4", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@4162ba3c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@a544ebee, store:-/2@10f057f7, foot:2@c2981a38, auth:-/1@6d62659", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@7c0aab8b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_hi_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_hi_arg_0.json index 0b9be16eb..31c0543d0 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_hi_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_hi_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@c9df1148, auth:1@441b4ad1/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@441b4ad1/1@5a51d47e", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@441b4ad1/1@792c8cd6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@bf066820", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@d2755009, store:-/2@922ed947, foot:2@4ab8f9ac, auth:-/1@ca1aef10", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@f12ee22b, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_lo_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_lo_arg_0.json index 3be88823d..85dc6b313 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_lo_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u256_lo_lo_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@977d1c91, auth:1@8dc3a601/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@8dc3a601/1@e17d1262", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@8dc3a601/1@11c0dbc0", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@c4f6284e", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@5a7a69ad, store:-/2@4fee735f, foot:2@f239ab05, auth:-/1@1b78022d", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@e0f89c9a, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u64_arg_0.json index e683b464e..4f6bfd168 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_obj_to_u64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@9a750885, auth:1@70a4c4e9/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70a4c4e9/1@d162ebed", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@70a4c4e9/1@e2b8e71f", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@560de9d", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@cf6c9e65, store:-/2@2ab5cc63, foot:2@9309acc8, auth:-/1@bdfcece9", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@c765ac3f, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_reseed_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_reseed_arg_0.json index 5de0b94cd..b4a6251ce 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_reseed_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_reseed_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@fec4083, auth:1@6c483a77/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@6c483a77/1@209e261d", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@6c483a77/1@aed66525", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@5abfedd4", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@3ea2e161, store:-/2@5fe188e9, foot:2@c141f9df, auth:-/1@e335c124", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@dad2d7ac, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_vec_shuffle_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_vec_shuffle_arg_0.json index 3b74ffb75..ef2de9bcd 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_vec_shuffle_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_prng_vec_shuffle_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@452569b0, auth:1@10675b67/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@10675b67/1@33b751e5", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@10675b67/1@ed3c0c94", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@14f6dd85", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@cd65fbba, store:-/2@ef1ed93c, foot:2@42079a2f, auth:-/1@f84acf4d", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@4e77af7, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_0.json index 9927668b2..c5d7a9223 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@27255dbd, auth:1@381d6590/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@381d6590/1@1ccf5cd9", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@381d6590/1@742ef8bd", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@43cad8ef", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@37918653, store:-/2@e3b8db9, foot:2@d2fb1e62, auth:-/1@69e3ace6", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1121539, mem:204879, objs:-/9@94863c75, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_1.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_1.json index 89dbf7381..341e35371 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_1.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_recover_key_ecdsa_secp256k1_arg_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@27255dbd, auth:1@381d6590/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@381d6590/1@1ccf5cd9", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@381d6590/1@742ef8bd", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@43cad8ef", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@37918653, store:-/2@e3b8db9, foot:2@d2fb1e62, auth:-/1@69e3ace6", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1121539, mem:204879, objs:-/9@7cdf3275, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_arg_0.json index e892ddf4e..2725b6ee1 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@23af76bd, auth:1@cde1de75/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@cde1de75/1@8f00d84f", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@cde1de75/1@fdbdebba", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@4454c957", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@3ecc1378, store:-/2@80c9fafa, foot:2@93638b1b, auth:-/1@5d681378", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@8ec57115, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_0.json index ab2fdfbdb..99c6a228f 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@8d6c27ae, auth:1@d911a0fc/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@d911a0fc/1@b29f6542", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@d911a0fc/1@4b36b9dd", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@1e45a98a", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@ee3d9e43, store:-/2@e1b90df1, foot:2@9e3aeca9, auth:-/1@dfdf0e53", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@438ee734, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_1.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_1.json index 0efc5a7cb..c37b730ea 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_1.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_require_auth_for_args_arg_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@8d6c27ae, auth:1@d911a0fc/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@d911a0fc/1@b29f6542", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@d911a0fc/1@4b36b9dd", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@1e45a98a", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@ee3d9e43, store:-/2@e1b90df1, foot:2@9e3aeca9, auth:-/1@dfdf0e53", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@470bf079, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_copy_to_linear_memory_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_copy_to_linear_memory_arg_0.json index f42ddbae6..67820342d 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_copy_to_linear_memory_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_copy_to_linear_memory_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@ec7a3527, auth:1@32c16dbf/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@32c16dbf/1@1902f6a9", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@32c16dbf/1@1e47e2d2", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@284f85f9", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@caa3118c, store:-/2@b7025245, foot:2@e4ea900, auth:-/1@dd2669cd", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@189714f7, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_len_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_len_arg_0.json index 30acb0640..631a71da2 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_len_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_string_len_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@4d556394, auth:1@e0a22e97/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e0a22e97/1@32599306", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@e0a22e97/1@9a98f894", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@8b05f3e5", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@e87e7d8b, store:-/2@bde1b54, foot:2@cd41bbe1, auth:-/1@e197e1de", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@6d43e83d, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_copy_to_linear_memory_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_copy_to_linear_memory_arg_0.json index 714d57503..ac0d409d0 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_copy_to_linear_memory_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_copy_to_linear_memory_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1079294, mem:203259, objs:-/5@23378c1d, auth:1@623720ca/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1079980", - " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@623720ca/1@854597d5", + " 10 call get_ledger_network_id()": "cpu:1080238, auth:1@623720ca/1@dfe3057f", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1083135, mem:203371, objs:-/6@9db91801", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1121000, mem:204877, objs:-/7@2f40ec90, store:-/2@fca74d91, foot:2@1001b375, auth:-/1@ce387574", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1122141, mem:204941, objs:-/8@8070a243, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_len_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_len_arg_0.json index bdbfe655c..2f3bc42af 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_len_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_symbol_len_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@62bf0501, auth:1@89ac55cd/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@89ac55cd/1@7a3b5512", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@89ac55cd/1@a9ee729f", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@962882d8", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@4fcca4f8, store:-/2@7efe158b, foot:2@2b40fc, auth:-/1@b5163143", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@2841a751, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_timepoint_obj_to_u64_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_timepoint_obj_to_u64_arg_0.json index 81abbc21b..2217d20c7 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_timepoint_obj_to_u64_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_timepoint_obj_to_u64_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@e339a15c, auth:1@15190a57/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@15190a57/1@8512828e", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@15190a57/1@b1c4088e", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@ff1dd7cf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@207a6133, store:-/2@dd090242, foot:2@2d1b8526, auth:-/1@2f49d129", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@2c861324, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_0.json index ebfb430e8..e9dbe4de4 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@e4147ef3, auth:1@579faf94/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@579faf94/1@da7bde95", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@579faf94/1@1466ba82", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@2628d46f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@ebcc8fc1, store:-/2@ef1e2e8f, foot:2@c671627b, auth:-/1@aeff387f", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1121539, mem:204879, objs:-/9@5ab6ed20, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_2.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_2.json index bf63e93eb..0fd7f0d47 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_2.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_try_call_arg_2.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@e4147ef3, auth:1@579faf94/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@579faf94/1@da7bde95", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@579faf94/1@1466ba82", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@2628d46f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@ebcc8fc1, store:-/2@ef1e2e8f, foot:2@c671627b, auth:-/1@aeff387f", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1121539, mem:204879, objs:-/9@99f31fb1, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_u256_val_from_be_bytes_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_u256_val_from_be_bytes_arg_0.json index e31c36440..91940090d 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_u256_val_from_be_bytes_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_u256_val_from_be_bytes_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@4350c5cb, auth:1@268c0647/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@268c0647/1@774f0972", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@268c0647/1@74347473", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@4c59c047", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@b8ede73d, store:-/2@aec12108, foot:2@f43b65ed, auth:-/1@d34a6e78", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@cf97455, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_update_current_contract_wasm_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_update_current_contract_wasm_arg_0.json index dc7c59925..ed2723631 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_update_current_contract_wasm_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_update_current_contract_wasm_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@3c67376f, auth:1@ca90e536/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@ca90e536/1@459f02af", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@ca90e536/1@8daffe72", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@408f4cf5", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@9f35af1a, store:-/2@70b6ff65, foot:2@d5c32aae, auth:-/1@c85cfe9", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@a002d18d, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_upload_wasm_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_upload_wasm_arg_0.json index 4fc29c8cb..77797e2b4 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_upload_wasm_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_upload_wasm_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@93bf3fbc, auth:1@118ba020/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@118ba020/1@a3b465e2", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@118ba020/1@2eb52cf9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@56cc2f97", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@c72494e4, store:-/2@609bd4ae, foot:2@8e4b7e7d, auth:-/1@3b38dc3a", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@268b19cb, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_0.json index c8d14e203..fcfd86e04 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@bd41b8ef, auth:1@c2070508/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@c2070508/1@f3e8ad8a", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@c2070508/1@17648570", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@de093601", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@7c2c3650, store:-/2@11790c6, foot:2@15d0f60e, auth:-/1@ff7036f5", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@ae6c54ad, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_1.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_1.json index 975a9e9d0..ae939b01b 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_1.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_append_arg_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@bd41b8ef, auth:1@c2070508/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@c2070508/1@f3e8ad8a", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@c2070508/1@17648570", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@de093601", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@7c2c3650, store:-/2@11790c6, foot:2@15d0f60e, auth:-/1@ff7036f5", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#17))": "cpu:1119802, mem:204754, objs:-/9@8624f706, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_back_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_back_arg_0.json index a4a031e40..4cc4985f0 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_back_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_back_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@fff00956, auth:1@62adf5ed/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@62adf5ed/1@df91b73b", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@62adf5ed/1@79a516da", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@9d5c3b4", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@77e7ed0e, store:-/2@1af875d6, foot:2@e5cd8093, auth:-/1@3fd303df", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@ac3b7e9d, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_binary_search_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_binary_search_arg_0.json index c05915aca..8549ad627 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_binary_search_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_binary_search_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@c3be1681, auth:1@759f109d/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@759f109d/1@cfd9c93e", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@759f109d/1@12152bf1", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@82d5390b", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@dc961fa1, store:-/2@787efb57, foot:2@b87f9e55, auth:-/1@f7484c", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@98c0a81e, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_del_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_del_arg_0.json index 2a969417e..1bb6bca0b 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_del_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_del_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@579bdc53, auth:1@625ee34b/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@625ee34b/1@b510c279", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@625ee34b/1@19e6e0ca", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@e12d68bb", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@6d13ad5, store:-/2@2c3e7071, foot:2@1bb1ee35, auth:-/1@3d04965c", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@63df9e9a, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_first_index_of_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_first_index_of_arg_0.json index cc105fda2..213fcf7b4 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_first_index_of_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_first_index_of_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@3ecdaea1, auth:1@f492223f/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@f492223f/1@f6b4215", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@f492223f/1@7a9c4f78", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@24778f7b", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@890c0f07, store:-/2@ed0700f9, foot:2@da97bcd9, auth:-/1@cfba2", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@3b52282a, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_front_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_front_arg_0.json index 3b251dc40..1851ef976 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_front_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_front_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@d85eb2ef, auth:1@c602931/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c602931/1@5584cf14", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@c602931/1@5abadfed", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@4ac1a9db", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@c1b51ba5, store:-/2@c25b394a, foot:2@fea02bd7, auth:-/1@d54b0c92", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@8c94560a, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_get_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_get_arg_0.json index 411a0d4ca..cf9919918 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_get_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_get_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@16e8b5ac, auth:1@fdda9751/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@fdda9751/1@95ee42d5", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@fdda9751/1@3451f216", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@4126a7b0", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@bca1fb14, store:-/2@6cfb078, foot:2@22c2fa2, auth:-/1@cdd556ff", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@cdf72dfb, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_insert_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_insert_arg_0.json index 77d488410..a4e0472f7 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_insert_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_insert_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@3b1c250, auth:1@c1ce653e/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@c1ce653e/1@73a4ea4d", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@c1ce653e/1@103d7f64", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@ffce09dc", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@2a133950, store:-/2@e106981c, foot:2@4ad02872, auth:-/1@86facc06", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@8f158e85, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_last_index_of_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_last_index_of_arg_0.json index 4b10349bd..2a2ac2589 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_last_index_of_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_last_index_of_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@d3750997, auth:1@afa61978/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@afa61978/1@a5bec8d", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@afa61978/1@a32648a4", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@3b903ac", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@459f635, store:-/2@dd85687a, foot:2@7c0fccce, auth:-/1@39e31641", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@2d87da90, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_len_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_len_arg_0.json index 1d65d5162..2034e818e 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_len_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_len_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@b47acef3, auth:1@67bab237/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@67bab237/1@ebe878ca", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@67bab237/1@23d3e9af", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@eb83980b", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@affe0bae, store:-/2@3df9814a, foot:2@d041476c, auth:-/1@ae7dd410", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@a5497ab5, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_back_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_back_arg_0.json index 792abf14e..0e29cd57e 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_back_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_back_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@a11fff67, auth:1@11af204c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@11af204c/1@53c950d0", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@11af204c/1@55a25d74", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@15e83b7d", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@dab93a32, store:-/2@56d785c6, foot:2@7ba5e48, auth:-/1@df24a0f", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@6f207529, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_front_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_front_arg_0.json index c61c64b9f..1dbc48a2d 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_front_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_pop_front_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1074074, mem:202883, objs:-/5@1bb2f434, auth:1@7234bff6/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1074760", - " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@7234bff6/1@38ab2a8a", + " 10 call get_ledger_network_id()": "cpu:1075018, auth:1@7234bff6/1@f40d0aa8", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1077915, mem:202995, objs:-/6@9865c9d7", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1115780, mem:204501, objs:-/7@daf60953, store:-/2@b612f31b, foot:2@20683323, auth:-/1@93188850", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1116921, mem:204565, objs:-/8@5899f741, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_back_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_back_arg_0.json index 0602e640a..6eabf5a66 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_back_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_back_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@984b62fb, auth:1@db198c95/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@db198c95/1@8639ae69", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@db198c95/1@754d90cb", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@44ac8c67", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@94a405a6, store:-/2@53637180, foot:2@889b428f, auth:-/1@5857a560", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@8ba23697, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_front_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_front_arg_0.json index 8d98e634a..a8dc35a44 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_front_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_push_front_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1075814, mem:203008, objs:-/5@dfd7553f, auth:1@b72f3cc1/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1076500", - " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@b72f3cc1/1@a143e3bf", + " 10 call get_ledger_network_id()": "cpu:1076758, auth:1@b72f3cc1/1@f711ba09", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1079655, mem:203120, objs:-/6@42c31a01", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1117520, mem:204626, objs:-/7@9205ccb2, store:-/2@67df10df, foot:2@489cb169, auth:-/1@3d7fd4d7", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1118661, mem:204690, objs:-/8@4afd72e5, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_put_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_put_arg_0.json index f329b7d4f..259e332dd 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_put_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_put_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@58619ed1, auth:1@d5f915f5/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@d5f915f5/1@2a425ec", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@d5f915f5/1@f07b7efc", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@b81a0f15", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@79a897b0, store:-/2@646c1b25, foot:2@799e1686, auth:-/1@96c79b8b", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@3b52899e, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_slice_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_slice_arg_0.json index 2e15a153c..7e205c42b 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_slice_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_slice_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@e6d59da0, auth:1@60120583/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@60120583/1@db9807cf", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@60120583/1@2366ba76", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@f1960820", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@2ae0acc3, store:-/2@2d825fca, foot:2@629af32d, auth:-/1@8d094c4a", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@6516dc85, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_unpack_to_linear_memory_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_unpack_to_linear_memory_arg_0.json index 000c483f2..8863c5569 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_unpack_to_linear_memory_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_vec_unpack_to_linear_memory_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@a51f1d4, auth:1@8df23a3e/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8df23a3e/1@1b242a44", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@8df23a3e/1@ab682979", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@91459312", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@ed8c4902, store:-/2@48d7d781, foot:2@d9572222, auth:-/1@cfc6f75d", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#15))": "cpu:1120398, mem:204815, objs:-/8@38f0b401, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_0.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_0.json index 2e50851f4..e15539a2e 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_0.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_0.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@8f7db34d, auth:1@1ae3d622/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@1ae3d622/1@da0d8ebc", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@1ae3d622/1@478c5b77", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@5bdce8bf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@493bb37d, store:-/2@866c857d, foot:2@51cbc061, auth:-/1@82a32ba9", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#19))": "cpu:1122680, mem:204943, objs:-/10@b2e323d6, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_1.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_1.json index 40445a877..42f76b765 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_1.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_1.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@8f7db34d, auth:1@1ae3d622/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@1ae3d622/1@da0d8ebc", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@1ae3d622/1@478c5b77", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@5bdce8bf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@493bb37d, store:-/2@866c857d, foot:2@51cbc061, auth:-/1@82a32ba9", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#19))": "cpu:1122680, mem:204943, objs:-/10@7ccb09f, auth:-/-", diff --git a/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_2.json b/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_2.json index 7b7eb9ce7..ead023d7c 100644 --- a/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_2.json +++ b/soroban-env-host/observations/test__dispatch__invalid_object_handle_verify_sig_ed25519_arg_2.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1077551, mem:203133, objs:-/5@8f7db34d, auth:1@1ae3d622/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1078237", - " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@1ae3d622/1@da0d8ebc", + " 10 call get_ledger_network_id()": "cpu:1078495, auth:1@1ae3d622/1@478c5b77", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1081392, mem:203245, objs:-/6@5bdce8bf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1119257, mem:204751, objs:-/7@493bb37d, store:-/2@866c857d, foot:2@51cbc061, auth:-/1@82a32ba9", " 13 call call(Address(obj#13), Symbol(test), Vec(obj#19))": "cpu:1122680, mem:204943, objs:-/10@5bcbf1a0, auth:-/-", diff --git a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_contract_call_depth_exceeded.json b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_contract_call_depth_exceeded.json index 1f6229808..910a213e5 100644 --- a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_contract_call_depth_exceeded.json +++ b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_contract_call_depth_exceeded.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2011761, mem:1318326, objs:-/5@a60269d1, auth:1@6c2ade56/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2012447", - " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@525240f7", + " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@72b99d18", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2015602, mem:1318438, objs:-/6@a06c2cba", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2053467, mem:1319944, objs:-/7@77a0a1db, store:-/2@ca7bd8a8, foot:2@c7956e9e, auth:-/1@c716b1ea", " 13 call bytes_new_from_slice(1723)": "cpu:2053722, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4053930, mem:2637748, objs:-/12@546c0606, auth:1@a7879343/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4054616", - " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@c690470a", + " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@a19a51b4", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4057771, mem:2637860, objs:-/13@8641253d", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4099512, mem:2639552, objs:-/14@20711f65, store:-/3@cd31c995, foot:3@fb973c1e, auth:-/1@f39d17e5", " 25 call bytes_new_from_slice(1723)": "cpu:4099767, auth:-/-", @@ -33,7 +33,7 @@ " 31 call create_contract(Address(obj#33), Bytes(obj#31), Bytes(obj#35))": "", " 32 call obj_cmp(Address(obj#37), Address(obj#33))": "cpu:6099975, mem:3957356, objs:-/19@51e48355, auth:1@cbbd7837/-", " 33 ret obj_cmp -> Ok(0)": "cpu:6100661", - " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@a4cf6e03", + " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@47f29939", " 35 ret get_ledger_network_id -> Ok(Bytes(obj#39))": "cpu:6103816, mem:3957468, objs:-/20@81732572", " 36 ret create_contract -> Ok(Address(obj#41))": "cpu:6144911, mem:3959346, objs:-/21@69ad5c25, store:-/4@b3a15027, foot:4@fa0f6bfc, auth:-/1@f7095008", " 37 call bytes_new_from_slice(1723)": "cpu:6145166, auth:-/-", @@ -45,7 +45,7 @@ " 43 call create_contract(Address(obj#47), Bytes(obj#45), Bytes(obj#49))": "", " 44 call obj_cmp(Address(obj#51), Address(obj#47))": "cpu:8145395, mem:5277150, objs:-/26@a092b5f, auth:1@67261b2f/-", " 45 ret obj_cmp -> Ok(0)": "cpu:8146081", - " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@11a86388", + " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@24809fc3", " 47 ret get_ledger_network_id -> Ok(Bytes(obj#53))": "cpu:8149236, mem:5277262, objs:-/27@a7bff74e", " 48 ret create_contract -> Ok(Address(obj#55))": "cpu:8197003, mem:5279326, objs:-/28@9670d0cc, store:-/5@58e9c9eb, foot:5@81d1a3bf, auth:-/1@83ee389", " 49 call bytes_new_from_slice(1723)": "cpu:8197258, auth:-/-", @@ -57,7 +57,7 @@ " 55 call create_contract(Address(obj#61), Bytes(obj#59), Bytes(obj#63))": "", " 56 call obj_cmp(Address(obj#65), Address(obj#61))": "cpu:10197487, mem:6597130, objs:-/33@9dddfe41, auth:1@2aa08219/-", " 57 ret obj_cmp -> Ok(0)": "cpu:10198173", - " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@c0063591", + " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@63a8e160", " 59 ret get_ledger_network_id -> Ok(Bytes(obj#67))": "cpu:10201328, mem:6597242, objs:-/34@6254c4ce", " 60 ret create_contract -> Ok(Address(obj#69))": "cpu:10249147, mem:6599492, objs:-/35@be977224, store:-/6@889e1830, foot:6@364e4b9c, auth:-/1@47f4d18a", " 61 call bytes_new_from_slice(1723)": "cpu:10249402, auth:-/-", @@ -69,7 +69,7 @@ " 67 call create_contract(Address(obj#75), Bytes(obj#73), Bytes(obj#77))": "", " 68 call obj_cmp(Address(obj#79), Address(obj#75))": "cpu:12249631, mem:7917296, objs:-/40@2f55f569, auth:1@e8341f65/-", " 69 ret obj_cmp -> Ok(0)": "cpu:12250317", - " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@ebc115d9", + " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@9c248d", " 71 ret get_ledger_network_id -> Ok(Bytes(obj#81))": "cpu:12253472, mem:7917408, objs:-/41@b3ed0b57", " 72 ret create_contract -> Ok(Address(obj#83))": "cpu:12303367, mem:7919844, objs:-/42@cd5ce2c6, store:-/7@b061db62, foot:7@9320c72c, auth:-/1@1b3d937c", " 73 call bytes_new_from_slice(1723)": "cpu:12303622, auth:-/-", @@ -81,7 +81,7 @@ " 79 call create_contract(Address(obj#89), Bytes(obj#87), Bytes(obj#91))": "", " 80 call obj_cmp(Address(obj#93), Address(obj#89))": "cpu:14303851, mem:9237648, objs:-/47@92c2cfa5, auth:1@b20998ae/-", " 81 ret obj_cmp -> Ok(0)": "cpu:14304537", - " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@59dea197", + " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@f80b6a67", " 83 ret get_ledger_network_id -> Ok(Bytes(obj#95))": "cpu:14307692, mem:9237760, objs:-/48@149b423f", " 84 ret create_contract -> Ok(Address(obj#97))": "cpu:14358717, mem:9240382, objs:-/49@3bf0a33b, store:-/8@786ebbf2, foot:8@ee264d76, auth:-/1@221f74c6", " 85 call bytes_new_from_slice(1723)": "cpu:14358972, auth:-/-", @@ -93,7 +93,7 @@ " 91 call create_contract(Address(obj#103), Bytes(obj#101), Bytes(obj#105))": "", " 92 call obj_cmp(Address(obj#107), Address(obj#103))": "cpu:16359220, mem:10558186, objs:-/54@da02b960, auth:1@48d6a5b6/-", " 93 ret obj_cmp -> Ok(0)": "cpu:16359906", - " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@219d787c", + " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@81156bb8", " 95 ret get_ledger_network_id -> Ok(Bytes(obj#109))": "cpu:16363061, mem:10558298, objs:-/55@bb3ae225", " 96 ret create_contract -> Ok(Address(obj#111))": "cpu:16412374, mem:10561106, objs:-/56@51ce6ca1, store:-/9@f38d0f95, foot:9@5c828c77, auth:-/1@a42343f5", " 97 call bytes_new_from_slice(1723)": "cpu:16412629, auth:-/-", @@ -105,7 +105,7 @@ " 103 call create_contract(Address(obj#117), Bytes(obj#115), Bytes(obj#119))": "", " 104 call obj_cmp(Address(obj#121), Address(obj#117))": "cpu:18412877, mem:11878910, objs:-/61@61c34d4e, auth:1@f96e0eaf/-", " 105 ret obj_cmp -> Ok(0)": "cpu:18413563", - " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@cc6b59fa", + " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@8cefe257", " 107 ret get_ledger_network_id -> Ok(Bytes(obj#123))": "cpu:18416718, mem:11879022, objs:-/62@99cabf3b", " 108 ret create_contract -> Ok(Address(obj#125))": "cpu:18472685, mem:11882016, objs:-/63@7f4b322d, store:-/10@ef434c8d, foot:10@317c61e3, auth:-/1@d0418fbc", " 109 call bytes_new_from_slice(1723)": "cpu:18472940, auth:-/-", @@ -117,7 +117,7 @@ " 115 call create_contract(Address(obj#131), Bytes(obj#129), Bytes(obj#133))": "", " 116 call obj_cmp(Address(obj#135), Address(obj#131))": "cpu:20473188, mem:13199820, objs:-/68@7f9f7f94, auth:1@5cc0479e/-", " 117 ret obj_cmp -> Ok(0)": "cpu:20473874", - " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@b017d899", + " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@d336881f", " 119 ret get_ledger_network_id -> Ok(Bytes(obj#137))": "cpu:20477029, mem:13199932, objs:-/69@80e69e15", " 120 ret create_contract -> Ok(Address(obj#139))": "cpu:20534058, mem:13203112, objs:-/70@1ab41456, store:-/11@e6b97191, foot:11@bd373101, auth:-/1@6fd7cdbe", " 121 call bytes_new_from_slice(1723)": "cpu:20534313, auth:-/-", @@ -129,7 +129,7 @@ " 127 call create_contract(Address(obj#145), Bytes(obj#143), Bytes(obj#147))": "", " 128 call obj_cmp(Address(obj#149), Address(obj#145))": "cpu:22534561, mem:14520916, objs:-/75@942af2dd, auth:1@4d46cea6/-", " 129 ret obj_cmp -> Ok(0)": "cpu:22535247", - " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@c791f0c8", + " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@7324855f", " 131 ret get_ledger_network_id -> Ok(Bytes(obj#151))": "cpu:22538402, mem:14521028, objs:-/76@f11550b8", " 132 ret create_contract -> Ok(Address(obj#153))": "cpu:22596497, mem:14524394, objs:-/77@9f3fd10e, store:-/12@7c2f9ba3, foot:12@35d2fc7a, auth:-/1@3eabf35c", " 133 call bytes_new_from_slice(1723)": "cpu:22596752, auth:-/-", @@ -141,7 +141,7 @@ " 139 call create_contract(Address(obj#159), Bytes(obj#157), Bytes(obj#161))": "", " 140 call obj_cmp(Address(obj#163), Address(obj#159))": "cpu:24597000, mem:15842198, objs:-/82@21bbc84c, auth:1@9e1b78d/-", " 141 ret obj_cmp -> Ok(0)": "cpu:24597686", - " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@6f759f1a", + " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@44fbf6bc", " 143 ret get_ledger_network_id -> Ok(Bytes(obj#165))": "cpu:24600841, mem:15842310, objs:-/83@e08739a8", " 144 ret create_contract -> Ok(Address(obj#167))": "cpu:24659996, mem:15845862, objs:-/84@ae4d6e4e, store:-/13@2b941c36, foot:13@62a1620d, auth:-/1@aee68f92", " 145 call bytes_new_from_slice(1723)": "cpu:24660251, auth:-/-", @@ -153,7 +153,7 @@ " 151 call create_contract(Address(obj#173), Bytes(obj#171), Bytes(obj#175))": "", " 152 call obj_cmp(Address(obj#177), Address(obj#173))": "cpu:26660499, mem:17163666, objs:-/89@5858b5f0, auth:1@445de93b/-", " 153 ret obj_cmp -> Ok(0)": "cpu:26661185", - " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@3ba9ffd2", + " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@ca57c8bc", " 155 ret get_ledger_network_id -> Ok(Bytes(obj#179))": "cpu:26664340, mem:17163778, objs:-/90@5826fb63", " 156 ret create_contract -> Ok(Address(obj#181))": "cpu:26722783, mem:17167516, objs:-/91@cd1cc65f, store:-/14@c33862ef, foot:14@4ba8b225, auth:-/1@617a1eda", " 157 call bytes_new_from_slice(1723)": "cpu:26723038, auth:-/-", @@ -165,7 +165,7 @@ " 163 call create_contract(Address(obj#187), Bytes(obj#185), Bytes(obj#189))": "", " 164 call obj_cmp(Address(obj#191), Address(obj#187))": "cpu:28723286, mem:18485320, objs:-/96@d11f253b, auth:1@225cfc41/-", " 165 ret obj_cmp -> Ok(0)": "cpu:28723972", - " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@2cc903b5", + " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@a1637ff7", " 167 ret get_ledger_network_id -> Ok(Bytes(obj#193))": "cpu:28727127, mem:18485432, objs:-/97@dd3834b9", " 168 ret create_contract -> Ok(Address(obj#195))": "cpu:28788408, mem:18489356, objs:-/98@ddc288ce, store:-/15@8f2e00df, foot:15@85a5128f, auth:-/1@84c703c7", " 169 call bytes_new_from_slice(1723)": "cpu:28788663, auth:-/-", @@ -177,7 +177,7 @@ " 175 call create_contract(Address(obj#201), Bytes(obj#199), Bytes(obj#203))": "", " 176 call obj_cmp(Address(obj#205), Address(obj#201))": "cpu:30788911, mem:19807160, objs:-/103@6ee6745e, auth:1@f8067266/-", " 177 ret obj_cmp -> Ok(0)": "cpu:30789597", - " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@1c1b5ee3", + " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@e817f19c", " 179 ret get_ledger_network_id -> Ok(Bytes(obj#207))": "cpu:30792752, mem:19807272, objs:-/104@da675632", " 180 ret create_contract -> Ok(Address(obj#209))": "cpu:30855171, mem:19811382, objs:-/105@3c250e80, store:-/16@56a18dab, foot:16@3031c757, auth:-/1@6c77c0c9", " 181 call bytes_new_from_slice(1723)": "cpu:30855426, auth:-/-", @@ -189,7 +189,7 @@ " 187 call create_contract(Address(obj#215), Bytes(obj#213), Bytes(obj#217))": "", " 188 call obj_cmp(Address(obj#219), Address(obj#215))": "cpu:32855695, mem:21129186, objs:-/110@3460445f, auth:1@6f395edd/-", " 189 ret obj_cmp -> Ok(0)": "cpu:32856381", - " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@d3530f4c", + " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@1357ae2d", " 191 ret get_ledger_network_id -> Ok(Bytes(obj#221))": "cpu:32859536, mem:21129298, objs:-/111@88602a33", " 192 ret create_contract -> Ok(Address(obj#223))": "cpu:32925835, mem:21133594, objs:-/112@1a30dd19, store:-/17@a1cdad8, foot:17@e114d7d6, auth:-/1@37251ff7", " 193 call bytes_new_from_slice(1723)": "cpu:32926090, auth:-/-", @@ -201,7 +201,7 @@ " 199 call create_contract(Address(obj#229), Bytes(obj#227), Bytes(obj#231))": "", " 200 call obj_cmp(Address(obj#233), Address(obj#229))": "cpu:34926359, mem:22451398, objs:-/117@f769caeb, auth:1@93079846/-", " 201 ret obj_cmp -> Ok(0)": "cpu:34927045", - " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@80a698b9", + " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@507bf132", " 203 ret get_ledger_network_id -> Ok(Bytes(obj#235))": "cpu:34930200, mem:22451510, objs:-/118@a79d010f", " 204 ret create_contract -> Ok(Address(obj#237))": "cpu:34991975, mem:22455992, objs:-/119@faf87716, store:-/18@284aadf3, foot:18@4481d0f6, auth:-/1@79adba34", " 205 call bytes_new_from_slice(1723)": "cpu:34992230, auth:-/-", @@ -213,7 +213,7 @@ " 211 call create_contract(Address(obj#243), Bytes(obj#241), Bytes(obj#245))": "", " 212 call obj_cmp(Address(obj#247), Address(obj#243))": "cpu:36992499, mem:23773796, objs:-/124@ddd780c4, auth:1@3e29297a/-", " 213 ret obj_cmp -> Ok(0)": "cpu:36993185", - " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@e22dec68", + " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@9a48546", " 215 ret get_ledger_network_id -> Ok(Bytes(obj#249))": "cpu:36996340, mem:23773908, objs:-/125@510120e0", " 216 ret create_contract -> Ok(Address(obj#251))": "cpu:37060193, mem:23778576, objs:-/126@c484c412, store:-/19@5d26a578, foot:19@fbbb733f, auth:-/1@43f44fbb", " 217 call bytes_new_from_slice(1723)": "cpu:37060448, auth:-/-", @@ -225,7 +225,7 @@ " 223 call create_contract(Address(obj#257), Bytes(obj#255), Bytes(obj#259))": "", " 224 call obj_cmp(Address(obj#261), Address(obj#257))": "cpu:39060717, mem:25096380, objs:-/131@e4c001b6, auth:1@399056d1/-", " 225 ret obj_cmp -> Ok(0)": "cpu:39061403", - " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@fc1a6912", + " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@20d8425c", " 227 ret get_ledger_network_id -> Ok(Bytes(obj#263))": "cpu:39064558, mem:25096492, objs:-/132@18805d31", " 228 ret create_contract -> Ok(Address(obj#265))": "cpu:39131253, mem:25101346, objs:-/133@daaee86c, store:-/20@6d147ad1, foot:20@f939d50c, auth:-/1@a9273ecb", " 229 call bytes_new_from_slice(1723)": "cpu:39131508, auth:-/-", @@ -237,7 +237,7 @@ " 235 call create_contract(Address(obj#271), Bytes(obj#269), Bytes(obj#273))": "", " 236 call obj_cmp(Address(obj#275), Address(obj#271))": "cpu:41131777, mem:26419150, objs:-/138@8a39b9a5, auth:1@aea0b0c0/-", " 237 ret obj_cmp -> Ok(0)": "cpu:41132463", - " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@f1da0dd5", + " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@e3b3557c", " 239 ret get_ledger_network_id -> Ok(Bytes(obj#277))": "cpu:41135618, mem:26419262, objs:-/139@ce76e6fb", " 240 ret create_contract -> Ok(Address(obj#279))": "cpu:41205155, mem:26424302, objs:-/140@737416ce, store:-/21@cac04bf9, foot:21@435f9792, auth:-/1@48a20b51", " 241 call bytes_new_from_slice(1723)": "cpu:41205410, auth:-/-", @@ -249,7 +249,7 @@ " 247 call create_contract(Address(obj#285), Bytes(obj#283), Bytes(obj#287))": "", " 248 call obj_cmp(Address(obj#289), Address(obj#285))": "cpu:43205679, mem:27742106, objs:-/145@74331567, auth:1@330b1c67/-", " 249 ret obj_cmp -> Ok(0)": "cpu:43206365", - " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@9a165117", + " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@c480bd80", " 251 ret get_ledger_network_id -> Ok(Bytes(obj#291))": "cpu:43209520, mem:27742218, objs:-/146@d168c7a7", " 252 ret create_contract -> Ok(Address(obj#293))": "cpu:43278343, mem:27747444, objs:-/147@16f6005c, store:-/22@33195a82, foot:22@b33a0417, auth:-/1@b7d59a15", " 253 call bytes_new_from_slice(1723)": "cpu:43278598, auth:-/-", @@ -261,7 +261,7 @@ " 259 call create_contract(Address(obj#299), Bytes(obj#297), Bytes(obj#301))": "", " 260 call obj_cmp(Address(obj#303), Address(obj#299))": "cpu:45278867, mem:29065248, objs:-/152@e53b83e3, auth:1@785996a7/-", " 261 ret obj_cmp -> Ok(0)": "cpu:45279553", - " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@fe7b423e", + " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@7f8bbf70", " 263 ret get_ledger_network_id -> Ok(Bytes(obj#305))": "cpu:45282708, mem:29065360, objs:-/153@9f17ddc6", " 264 ret create_contract -> Ok(Address(obj#307))": "cpu:45355387, mem:29070772, objs:-/154@cf228652, store:-/23@300f245c, foot:23@27540f12, auth:-/1@cefa2a75", " 265 call bytes_new_from_slice(1723)": "cpu:45355642, auth:-/-", @@ -273,7 +273,7 @@ " 271 call create_contract(Address(obj#313), Bytes(obj#311), Bytes(obj#315))": "", " 272 call obj_cmp(Address(obj#317), Address(obj#313))": "cpu:47355911, mem:30388576, objs:-/159@63a78bd4, auth:1@da0afee7/-", " 273 ret obj_cmp -> Ok(0)": "cpu:47356597", - " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@9dbef6d4", + " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@6aa8b510", " 275 ret get_ledger_network_id -> Ok(Bytes(obj#319))": "cpu:47359752, mem:30388688, objs:-/160@4af09aee", " 276 ret create_contract -> Ok(Address(obj#321))": "cpu:47430705, mem:30394286, objs:-/161@92ee88ed, store:-/24@101e4564, foot:24@c9aaea41, auth:-/1@84386fec", " 277 call bytes_new_from_slice(1723)": "cpu:47430960, auth:-/-", @@ -285,7 +285,7 @@ " 283 call create_contract(Address(obj#327), Bytes(obj#325), Bytes(obj#329))": "", " 284 call obj_cmp(Address(obj#331), Address(obj#327))": "cpu:49431229, mem:31712090, objs:-/166@7fccca03, auth:1@aa9fae3a/-", " 285 ret obj_cmp -> Ok(0)": "cpu:49431915", - " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@f33a894d", + " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@d871ba2c", " 287 ret get_ledger_network_id -> Ok(Bytes(obj#333))": "cpu:49435070, mem:31712202, objs:-/167@a32ae8a9", " 288 ret create_contract -> Ok(Address(obj#335))": "cpu:49509879, mem:31717986, objs:-/168@2aafa42f, store:-/25@8e92a30e, foot:25@3b46cff6, auth:-/1@96704b35", " 289 call bytes_new_from_slice(1723)": "cpu:49510134, auth:-/-", @@ -297,7 +297,7 @@ " 295 call create_contract(Address(obj#341), Bytes(obj#339), Bytes(obj#343))": "", " 296 call obj_cmp(Address(obj#345), Address(obj#341))": "cpu:51510403, mem:33035790, objs:-/173@81268679, auth:1@3dec2490/-", " 297 ret obj_cmp -> Ok(0)": "cpu:51511089", - " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@71ebc84a", + " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@121df96c", " 299 ret get_ledger_network_id -> Ok(Bytes(obj#347))": "cpu:51514244, mem:33035902, objs:-/174@86b62e4b", " 300 ret create_contract -> Ok(Address(obj#349))": "cpu:51590119, mem:33041872, objs:-/175@1dabe68a, store:-/26@f151c33b, foot:26@1cf63df0, auth:-/1@302de960", " 301 call bytes_new_from_slice(1723)": "cpu:51590374, auth:-/-", @@ -309,7 +309,7 @@ " 307 call create_contract(Address(obj#355), Bytes(obj#353), Bytes(obj#357))": "", " 308 call obj_cmp(Address(obj#359), Address(obj#355))": "cpu:53590643, mem:34359676, objs:-/180@8b3d9cc8, auth:1@6b4de48e/-", " 309 ret obj_cmp -> Ok(0)": "cpu:53591329", - " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@e71ff6d6", + " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@3202ab93", " 311 ret get_ledger_network_id -> Ok(Bytes(obj#361))": "cpu:53594484, mem:34359788, objs:-/181@7d2def3b", " 312 ret create_contract -> Ok(Address(obj#363))": "cpu:53671421, mem:34365944, objs:-/182@4ac4bd9e, store:-/27@8340ee6d, foot:27@fba9c4de, auth:-/1@95751d48", " 313 call bytes_new_from_slice(1723)": "cpu:53671676, auth:-/-", @@ -321,7 +321,7 @@ " 319 call create_contract(Address(obj#369), Bytes(obj#367), Bytes(obj#371))": "", " 320 call obj_cmp(Address(obj#373), Address(obj#369))": "cpu:55671945, mem:35683748, objs:-/187@41f59b8a, auth:1@6b4c8d3e/-", " 321 ret obj_cmp -> Ok(0)": "cpu:55672631", - " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@1287fb5c", + " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@a8b01321", " 323 ret get_ledger_network_id -> Ok(Bytes(obj#375))": "cpu:55675786, mem:35683860, objs:-/188@acf77cba", " 324 ret create_contract -> Ok(Address(obj#377))": "cpu:55753787, mem:35690202, objs:-/189@4ae78034, store:-/28@fb432119, foot:28@dbaee220, auth:-/1@ebc38f0b", " 325 call bytes_new_from_slice(1723)": "cpu:55754042, auth:-/-", @@ -333,7 +333,7 @@ " 331 call create_contract(Address(obj#383), Bytes(obj#381), Bytes(obj#385))": "", " 332 call obj_cmp(Address(obj#387), Address(obj#383))": "cpu:57754311, mem:37008006, objs:-/194@41937dac, auth:1@6a2c4396/-", " 333 ret obj_cmp -> Ok(0)": "cpu:57754997", - " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@6e63ce88", + " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@d85d3c27", " 335 ret get_ledger_network_id -> Ok(Bytes(obj#389))": "cpu:57758152, mem:37008118, objs:-/195@c7b31bd4", " 336 ret create_contract -> Ok(Address(obj#391))": "cpu:57833659, mem:37014646, objs:-/196@630be1a, store:-/29@f2b2ba33, foot:29@86207dba, auth:-/1@8030be25", " 337 call bytes_new_from_slice(1723)": "cpu:57833914, auth:-/-", @@ -345,7 +345,7 @@ " 343 call create_contract(Address(obj#397), Bytes(obj#395), Bytes(obj#399))": "", " 344 call obj_cmp(Address(obj#401), Address(obj#397))": "cpu:59834183, mem:38332450, objs:-/201@e7013f13, auth:1@efff116e/-", " 345 ret obj_cmp -> Ok(0)": "cpu:59834869", - " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@717266a3", + " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@6b349df9", " 347 ret get_ledger_network_id -> Ok(Bytes(obj#403))": "cpu:59838024, mem:38332562, objs:-/202@b6091744", " 348 ret create_contract -> Ok(Address(obj#405))": "cpu:59918151, mem:38339276, objs:-/203@fcd408de, store:-/30@7b349abd, foot:30@39863402, auth:-/1@eed4bb1e", " 349 call bytes_new_from_slice(1723)": "cpu:59918406, auth:-/-", @@ -357,7 +357,7 @@ " 355 call create_contract(Address(obj#411), Bytes(obj#409), Bytes(obj#413))": "", " 356 call obj_cmp(Address(obj#415), Address(obj#411))": "cpu:61918675, mem:39657080, objs:-/208@bef8f250, auth:1@4d2b336a/-", " 357 ret obj_cmp -> Ok(0)": "cpu:61919361", - " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@c6b91a0a", + " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@74393111", " 359 ret get_ledger_network_id -> Ok(Bytes(obj#417))": "cpu:61922516, mem:39657192, objs:-/209@5a6a7d5d", " 360 ret create_contract -> Ok(Address(obj#419))": "cpu:62001929, mem:39664092, objs:-/210@1ac1704e, store:-/31@4fa3e91b, foot:31@305062e7, auth:-/1@7a19b357", " 361 call bytes_new_from_slice(1723)": "cpu:62002184, auth:-/-", @@ -369,7 +369,7 @@ " 367 call create_contract(Address(obj#425), Bytes(obj#423), Bytes(obj#427))": "", " 368 call obj_cmp(Address(obj#429), Address(obj#425))": "cpu:64002453, mem:40981896, objs:-/215@a1746993, auth:1@f7013137/-", " 369 ret obj_cmp -> Ok(0)": "cpu:64003139", - " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@1c77542", + " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@53b8d019", " 371 ret get_ledger_network_id -> Ok(Bytes(obj#431))": "cpu:64006294, mem:40982008, objs:-/216@cf95d889", " 372 ret create_contract -> Ok(Address(obj#433))": "cpu:64088615, mem:40989094, objs:-/217@99f04015, store:-/32@3ddbcca8, foot:32@e907b904, auth:-/1@ef6b177", " 373 call bytes_new_from_slice(1723)": "cpu:64088870, auth:-/-", @@ -381,7 +381,7 @@ " 379 call create_contract(Address(obj#439), Bytes(obj#437), Bytes(obj#441))": "", " 380 call obj_cmp(Address(obj#443), Address(obj#439))": "cpu:66089158, mem:42306898, objs:-/222@9918a39f, auth:1@da3c47d1/-", " 381 ret obj_cmp -> Ok(0)": "cpu:66089844", - " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@2b4da665", + " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@738bcb6e", " 383 ret get_ledger_network_id -> Ok(Bytes(obj#445))": "cpu:66092999, mem:42307010, objs:-/223@f5510b1", " 384 ret create_contract -> Ok(Address(obj#447))": "cpu:66176402, mem:42314282, objs:-/224@29135409, store:-/33@3da44f4f, foot:33@76d72a8d, auth:-/1@d0c5ccbe", " 385 call bytes_new_from_slice(1723)": "cpu:66176657, auth:-/-", @@ -393,7 +393,7 @@ " 391 call create_contract(Address(obj#453), Bytes(obj#451), Bytes(obj#455))": "", " 392 call obj_cmp(Address(obj#457), Address(obj#453))": "cpu:68176945, mem:43632086, objs:-/229@843f1f78, auth:1@fe39debc/-", " 393 ret obj_cmp -> Ok(0)": "cpu:68177631", - " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@7ae07493", + " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@cf888e58", " 395 ret get_ledger_network_id -> Ok(Bytes(obj#459))": "cpu:68180786, mem:43632198, objs:-/230@87253b5a", " 396 ret create_contract -> Ok(Address(obj#461))": "cpu:68263477, mem:43639656, objs:-/231@dfe2f621, store:-/34@26269e2a, foot:34@db6f722c, auth:-/1@c5425e98", " 397 call bytes_new_from_slice(1723)": "cpu:68263732, auth:-/-", @@ -405,7 +405,7 @@ " 403 call create_contract(Address(obj#467), Bytes(obj#465), Bytes(obj#469))": "", " 404 call obj_cmp(Address(obj#471), Address(obj#467))": "cpu:70264020, mem:44957460, objs:-/236@8e491acb, auth:1@8758e2be/-", " 405 ret obj_cmp -> Ok(0)": "cpu:70264706", - " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@402732e1", + " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@653e6cb8", " 407 ret get_ledger_network_id -> Ok(Bytes(obj#473))": "cpu:70267861, mem:44957572, objs:-/237@e891750f", " 408 ret create_contract -> Ok(Address(obj#475))": "cpu:70354406, mem:44965216, objs:-/238@3c9f9d08, store:-/35@be282ec7, foot:35@ad713040, auth:-/1@c2518348", " 409 call bytes_new_from_slice(1723)": "cpu:70354661, auth:-/-", @@ -417,7 +417,7 @@ " 415 call create_contract(Address(obj#481), Bytes(obj#479), Bytes(obj#483))": "", " 416 call obj_cmp(Address(obj#485), Address(obj#481))": "cpu:72354949, mem:46283020, objs:-/243@f3039fd5, auth:1@7b318976/-", " 417 ret obj_cmp -> Ok(0)": "cpu:72355635", - " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@1e553952", + " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@c257e53", " 419 ret get_ledger_network_id -> Ok(Bytes(obj#487))": "cpu:72358790, mem:46283132, objs:-/244@cdf88cce", " 420 ret create_contract -> Ok(Address(obj#489))": "cpu:72445387, mem:46290962, objs:-/245@cd6fd0a6, store:-/36@e78fd4ec, foot:36@8d6c62c1, auth:-/1@9be18b7d", " 421 call bytes_new_from_slice(1723)": "cpu:72445642, auth:-/-", @@ -429,7 +429,7 @@ " 427 call create_contract(Address(obj#495), Bytes(obj#493), Bytes(obj#497))": "", " 428 call obj_cmp(Address(obj#499), Address(obj#495))": "cpu:74445930, mem:47608766, objs:-/250@22bd910b, auth:1@740ab5ad/-", " 429 ret obj_cmp -> Ok(0)": "cpu:74446616", - " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@df062d8f", + " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@69a0652", " 431 ret get_ledger_network_id -> Ok(Bytes(obj#501))": "cpu:74449771, mem:47608878, objs:-/251@d6b7a9b4", " 432 ret create_contract -> Ok(Address(obj#503))": "cpu:74535650, mem:47616894, objs:-/252@d5487903, store:-/37@fc568a97, foot:37@409c33df, auth:-/1@d536b686", " 433 call bytes_new_from_slice(1723)": "cpu:74535905, auth:-/-", @@ -441,7 +441,7 @@ " 439 call create_contract(Address(obj#509), Bytes(obj#507), Bytes(obj#511))": "", " 440 call obj_cmp(Address(obj#513), Address(obj#509))": "cpu:76536193, mem:48934698, objs:-/257@2c83362e, auth:1@3a400b33/-", " 441 ret obj_cmp -> Ok(0)": "cpu:76536879", - " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@7fd0cf57", + " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@4a2d81a0", " 443 ret get_ledger_network_id -> Ok(Bytes(obj#515))": "cpu:76540034, mem:48934810, objs:-/258@ac579d6d", " 444 ret create_contract -> Ok(Address(obj#517))": "cpu:76628757, mem:48943012, objs:-/259@73d4502, store:-/38@2603f041, foot:38@4169d237, auth:-/1@39e1337c", " 445 call bytes_new_from_slice(1723)": "cpu:76629012, auth:-/-", @@ -453,7 +453,7 @@ " 451 call create_contract(Address(obj#523), Bytes(obj#521), Bytes(obj#525))": "", " 452 call obj_cmp(Address(obj#527), Address(obj#523))": "cpu:78629300, mem:50260816, objs:-/264@e1d329e1, auth:1@26e06ff6/-", " 453 ret obj_cmp -> Ok(0)": "cpu:78629986", - " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@17ee9ef3", + " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@b06070a3", " 455 ret get_ledger_network_id -> Ok(Bytes(obj#529))": "cpu:78633141, mem:50260928, objs:-/265@bafd1a98", " 456 ret create_contract -> Ok(Address(obj#531))": "cpu:78725718, mem:50269316, objs:-/266@1b9213fc, store:-/39@b90d28c3, foot:39@d7e7d033, auth:-/1@b133ac19", " 457 call bytes_new_from_slice(1723)": "cpu:78725973, auth:-/-", @@ -465,7 +465,7 @@ " 463 call create_contract(Address(obj#537), Bytes(obj#535), Bytes(obj#539))": "", " 464 call obj_cmp(Address(obj#541), Address(obj#537))": "cpu:80726261, mem:51587120, objs:-/271@24ad366e, auth:1@b368d5a8/-", " 465 ret obj_cmp -> Ok(0)": "cpu:80726947", - " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@7a22d694", + " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@abb50537", " 467 ret get_ledger_network_id -> Ok(Bytes(obj#543))": "cpu:80730102, mem:51587232, objs:-/272@879628e2", " 468 ret create_contract -> Ok(Address(obj#545))": "cpu:80820955, mem:51595806, objs:-/273@d183d07c, store:-/40@8c6440e7, foot:40@4583666c, auth:-/1@7e5706f4", " 469 call bytes_new_from_slice(1723)": "cpu:80821210, auth:-/-", @@ -477,7 +477,7 @@ " 475 call create_contract(Address(obj#551), Bytes(obj#549), Bytes(obj#553))": "", " 476 call obj_cmp(Address(obj#555), Address(obj#551))": "cpu:82821498, mem:52913610, objs:-/278@7e43461c, auth:1@5ff13591/-", " 477 ret obj_cmp -> Ok(0)": "cpu:82822184", - " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@bb660b30", + " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@ef99d99e", " 479 ret get_ledger_network_id -> Ok(Bytes(obj#557))": "cpu:82825339, mem:52913722, objs:-/279@7d5b5e82", " 480 ret create_contract -> Ok(Address(obj#559))": "cpu:82917254, mem:52922482, objs:-/280@a2539e9f, store:-/41@f828b437, foot:41@fe76eb0e, auth:-/1@c3116c2e", " 481 call bytes_new_from_slice(1723)": "cpu:82917509, auth:-/-", @@ -489,7 +489,7 @@ " 487 call create_contract(Address(obj#565), Bytes(obj#563), Bytes(obj#567))": "", " 488 call obj_cmp(Address(obj#569), Address(obj#565))": "cpu:84917797, mem:54240286, objs:-/285@27a76f48, auth:1@6bc42dbe/-", " 489 ret obj_cmp -> Ok(0)": "cpu:84918483", - " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@8487d51b", + " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@350fe930", " 491 ret get_ledger_network_id -> Ok(Bytes(obj#571))": "cpu:84921638, mem:54240398, objs:-/286@604a8064", " 492 ret create_contract -> Ok(Address(obj#573))": "cpu:85014619, mem:54249344, objs:-/287@5335059f, store:-/42@29905e2d, foot:42@331e35d, auth:-/1@fcc81056", " 493 call bytes_new_from_slice(1723)": "cpu:85014874, auth:-/-", @@ -501,7 +501,7 @@ " 499 call create_contract(Address(obj#579), Bytes(obj#577), Bytes(obj#581))": "", " 500 call obj_cmp(Address(obj#583), Address(obj#579))": "cpu:87015162, mem:55567148, objs:-/292@cae8baf1, auth:1@192a37a7/-", " 501 ret obj_cmp -> Ok(0)": "cpu:87015848", - " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@d0cf342a", + " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@92f90a5c", " 503 ret get_ledger_network_id -> Ok(Bytes(obj#585))": "cpu:87019003, mem:55567260, objs:-/293@e43c78b4", " 504 ret create_contract -> Ok(Address(obj#587))": "cpu:87113044, mem:55576392, objs:-/294@bb1ddf18, store:-/43@914b7ccb, foot:43@41d98300, auth:-/1@9dd1b742", " 505 call bytes_new_from_slice(1723)": "cpu:87113299, auth:-/-", @@ -513,7 +513,7 @@ " 511 call create_contract(Address(obj#593), Bytes(obj#591), Bytes(obj#595))": "", " 512 call obj_cmp(Address(obj#597), Address(obj#593))": "cpu:89113587, mem:56894196, objs:-/299@cff36272, auth:1@bac1ba08/-", " 513 ret obj_cmp -> Ok(0)": "cpu:89114273", - " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@ab3f6665", + " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@520c643c", " 515 ret get_ledger_network_id -> Ok(Bytes(obj#599))": "cpu:89117428, mem:56894308, objs:-/300@dd09814f", " 516 ret create_contract -> Ok(Address(obj#601))": "cpu:89212535, mem:56903626, objs:-/301@244f82de, store:-/44@49506f31, foot:44@6bc1feec, auth:-/1@3ecbcd12", " 517 call bytes_new_from_slice(1723)": "cpu:89212790, auth:-/-", @@ -525,7 +525,7 @@ " 523 call create_contract(Address(obj#607), Bytes(obj#605), Bytes(obj#609))": "", " 524 call obj_cmp(Address(obj#611), Address(obj#607))": "cpu:91213078, mem:58221430, objs:-/306@51507416, auth:1@f4a38780/-", " 525 ret obj_cmp -> Ok(0)": "cpu:91213764", - " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@60fa77e0", + " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@fc522799", " 527 ret get_ledger_network_id -> Ok(Bytes(obj#613))": "cpu:91216919, mem:58221542, objs:-/307@eba2c5b2", " 528 ret create_contract -> Ok(Address(obj#615))": "cpu:91313086, mem:58231046, objs:-/308@367c7d43, store:-/45@c8a84a2, foot:45@358c3f92, auth:-/1@d6eec3a9", " 529 call bytes_new_from_slice(1723)": "cpu:91313341, auth:-/-", @@ -537,7 +537,7 @@ " 535 call create_contract(Address(obj#621), Bytes(obj#619), Bytes(obj#623))": "", " 536 call obj_cmp(Address(obj#625), Address(obj#621))": "cpu:93313629, mem:59548850, objs:-/313@f39fd860, auth:1@5cc394d/-", " 537 ret obj_cmp -> Ok(0)": "cpu:93314315", - " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@aff33b6b", + " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@73031a22", " 539 ret get_ledger_network_id -> Ok(Bytes(obj#627))": "cpu:93317470, mem:59548962, objs:-/314@e817a34d", " 540 ret create_contract -> Ok(Address(obj#629))": "cpu:93417497, mem:59558652, objs:-/315@3c670094, store:-/46@d1e3723, foot:46@8fe6169d, auth:-/1@a662faf6", " 541 call bytes_new_from_slice(1723)": "cpu:93417752, auth:-/-", @@ -549,7 +549,7 @@ " 547 call create_contract(Address(obj#635), Bytes(obj#633), Bytes(obj#637))": "", " 548 call obj_cmp(Address(obj#639), Address(obj#635))": "cpu:95418040, mem:60876456, objs:-/320@8e0c4b9b, auth:1@406c1dae/-", " 549 ret obj_cmp -> Ok(0)": "cpu:95418726", - " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@6600dac1", + " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@62235096", " 551 ret get_ledger_network_id -> Ok(Bytes(obj#641))": "cpu:95421881, mem:60876568, objs:-/321@3ae1b4", " 552 ret create_contract -> Ok(Address(obj#643))": "cpu:95514842, mem:60886444, objs:-/322@56ee1b71, store:-/47@df16bbd0, foot:47@3fc83862, auth:-/1@fc69475c", " 553 call bytes_new_from_slice(1723)": "cpu:95515097, auth:-/-", @@ -561,7 +561,7 @@ " 559 call create_contract(Address(obj#649), Bytes(obj#647), Bytes(obj#651))": "", " 560 call obj_cmp(Address(obj#653), Address(obj#649))": "cpu:97515385, mem:62204248, objs:-/327@c9706ded, auth:1@8c26c31b/-", " 561 ret obj_cmp -> Ok(0)": "cpu:97516071", - " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@529ff575", + " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@205f6fb4", " 563 ret get_ledger_network_id -> Ok(Bytes(obj#655))": "cpu:97519226, mem:62204360, objs:-/328@bf53726d", " 564 ret create_contract -> Ok(Address(obj#657))": "cpu:97621385, mem:62214422, objs:-/329@db413350, store:-/48@51de1218, foot:48@556cb318, auth:-/1@25a9c327", " 565 call bytes_new_from_slice(1723)": "cpu:97621640, auth:-/-", @@ -573,7 +573,7 @@ " 571 call create_contract(Address(obj#663), Bytes(obj#661), Bytes(obj#665))": "", " 572 call obj_cmp(Address(obj#667), Address(obj#663))": "cpu:99621928, mem:63532226, objs:-/334@f4f8f41b, auth:1@1fa181ba/-", " 573 ret obj_cmp -> Ok(0)": "cpu:99622614", - " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@cbc29ba9", + " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@9d22f9ed", " 575 ret get_ledger_network_id -> Ok(Bytes(obj#669))": "cpu:99625769, mem:63532338, objs:-/335@237761d2", " 576 ret create_contract -> Ok(Address(obj#671))": "cpu:99726196, mem:63542586, objs:-/336@fa034a59, store:-/49@ea935b52, foot:49@de5dfae4, auth:-/1@ab48dad3", " 577 call bytes_new_from_slice(1723)": "cpu:99726451, auth:-/-", @@ -585,7 +585,7 @@ " 583 call create_contract(Address(obj#677), Bytes(obj#675), Bytes(obj#679))": "", " 584 call obj_cmp(Address(obj#681), Address(obj#677))": "cpu:101726739, mem:64860390, objs:-/341@f9a83a38, auth:1@efefa99b/-", " 585 ret obj_cmp -> Ok(0)": "cpu:101727425", - " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2b02f498", + " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2329e92b", " 587 ret get_ledger_network_id -> Ok(Bytes(obj#683))": "cpu:101730580, mem:64860502, objs:-/342@d1ff7972", " 588 ret create_contract -> Ok(Address(obj#685))": "cpu:101833087, mem:64870936, objs:-/343@b5f757ec, store:-/50@4c522570, foot:50@a0637ff7, auth:-/1@33815c1a", " 589 call bytes_new_from_slice(1723)": "cpu:101833342, auth:-/-", @@ -597,7 +597,7 @@ " 595 call create_contract(Address(obj#691), Bytes(obj#689), Bytes(obj#693))": "", " 596 call obj_cmp(Address(obj#695), Address(obj#691))": "cpu:103833630, mem:66188740, objs:-/348@4f3b30b2, auth:1@a8fcf1a2/-", " 597 ret obj_cmp -> Ok(0)": "cpu:103834316", - " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@2b55c9b5", + " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@286b32d9", " 599 ret get_ledger_network_id -> Ok(Bytes(obj#697))": "cpu:103837471, mem:66188852, objs:-/349@d5de81fd", " 600 ret create_contract -> Ok(Address(obj#699))": "cpu:103942818, mem:66199472, objs:-/350@51dc4097, store:-/51@2ecebe32, foot:51@992b52e0, auth:-/1@62240125", " 601 call bytes_new_from_slice(1723)": "cpu:103943073, auth:-/-", @@ -609,7 +609,7 @@ " 607 call create_contract(Address(obj#705), Bytes(obj#703), Bytes(obj#707))": "", " 608 call obj_cmp(Address(obj#709), Address(obj#705))": "cpu:105943361, mem:67517276, objs:-/355@9a456a58, auth:1@df2dbab3/-", " 609 ret obj_cmp -> Ok(0)": "cpu:105944047", - " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@53ebc47d", + " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@9717cba0", " 611 ret get_ledger_network_id -> Ok(Bytes(obj#711))": "cpu:105947202, mem:67517388, objs:-/356@f6faf10c", " 612 ret create_contract -> Ok(Address(obj#713))": "cpu:106053615, mem:67528194, objs:-/357@8f3dfa45, store:-/52@3bc2289d, foot:52@a8174a77, auth:-/1@1ae2d9b9", " 613 call bytes_new_from_slice(1723)": "cpu:106053870, auth:-/-", @@ -621,7 +621,7 @@ " 619 call create_contract(Address(obj#719), Bytes(obj#717), Bytes(obj#721))": "", " 620 call obj_cmp(Address(obj#723), Address(obj#719))": "cpu:108054158, mem:68845998, objs:-/362@2c2a938, auth:1@e4e43523/-", " 621 ret obj_cmp -> Ok(0)": "cpu:108054844", - " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@633ca118", + " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@43fdac45", " 623 ret get_ledger_network_id -> Ok(Bytes(obj#725))": "cpu:108057999, mem:68846110, objs:-/363@a163628d", " 624 ret create_contract -> Ok(Address(obj#727))": "cpu:108162680, mem:68857102, objs:-/364@25c619f3, store:-/53@85418455, foot:53@755ca472, auth:-/1@7132248c", " 625 call bytes_new_from_slice(1723)": "cpu:108162935, auth:-/-", @@ -633,7 +633,7 @@ " 631 call create_contract(Address(obj#733), Bytes(obj#731), Bytes(obj#735))": "", " 632 call obj_cmp(Address(obj#737), Address(obj#733))": "cpu:110163223, mem:70174906, objs:-/369@346fee22, auth:1@a8468a5b/-", " 633 ret obj_cmp -> Ok(0)": "cpu:110163909", - " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@5f38f4b4", + " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@ac9afa98", " 635 ret get_ledger_network_id -> Ok(Bytes(obj#739))": "cpu:110167064, mem:70175018, objs:-/370@5f283fed", " 636 ret create_contract -> Ok(Address(obj#741))": "cpu:110273825, mem:70186196, objs:-/371@756dc3dc, store:-/54@d6df1dee, foot:54@6c9db746, auth:-/1@add7894e", " 637 call bytes_new_from_slice(1723)": "cpu:110274080, auth:-/-", @@ -645,7 +645,7 @@ " 643 call create_contract(Address(obj#747), Bytes(obj#745), Bytes(obj#749))": "", " 644 call obj_cmp(Address(obj#751), Address(obj#747))": "cpu:112274368, mem:71504000, objs:-/376@aebe83c3, auth:1@a1dfbdc2/-", " 645 ret obj_cmp -> Ok(0)": "cpu:112275054", - " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@20efa1bf", + " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@a0d06fb2", " 647 ret get_ledger_network_id -> Ok(Bytes(obj#753))": "cpu:112278209, mem:71504112, objs:-/377@a5f27cc1", " 648 ret create_contract -> Ok(Address(obj#755))": "cpu:112383238, mem:71515476, objs:-/378@4a2dc9d5, store:-/55@d68f6f6e, foot:55@98d0e060, auth:-/1@6f8d4df0", " 649 call bytes_new_from_slice(1723)": "cpu:112383493, auth:-/-", @@ -657,7 +657,7 @@ " 655 call create_contract(Address(obj#761), Bytes(obj#759), Bytes(obj#763))": "", " 656 call obj_cmp(Address(obj#765), Address(obj#761))": "cpu:114383781, mem:72833280, objs:-/383@ba9bc303, auth:1@7cf8180f/-", " 657 ret obj_cmp -> Ok(0)": "cpu:114384467", - " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@a8a009f0", + " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@9ffc2d1c", " 659 ret get_ledger_network_id -> Ok(Bytes(obj#767))": "cpu:114387622, mem:72833392, objs:-/384@cef90ff5", " 660 ret create_contract -> Ok(Address(obj#769))": "cpu:114498291, mem:72844942, objs:-/385@949e2fa0, store:-/56@bd5ddb43, foot:56@dc185736, auth:-/1@dbeb877e", " 661 call bytes_new_from_slice(1723)": "cpu:114498546, auth:-/-", @@ -669,7 +669,7 @@ " 667 call create_contract(Address(obj#775), Bytes(obj#773), Bytes(obj#777))": "", " 668 call obj_cmp(Address(obj#779), Address(obj#775))": "cpu:116498834, mem:74162746, objs:-/390@ee85fa0, auth:1@5e9c3221/-", " 669 ret obj_cmp -> Ok(0)": "cpu:116499520", - " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@1d9c05cc", + " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@42a87577", " 671 ret get_ledger_network_id -> Ok(Bytes(obj#781))": "cpu:116502675, mem:74162858, objs:-/391@c09aca31", " 672 ret create_contract -> Ok(Address(obj#783))": "cpu:116614408, mem:74174594, objs:-/392@a5b995b8, store:-/57@d10d961, foot:57@962f7174, auth:-/1@b76a8061", " 673 call bytes_new_from_slice(1723)": "cpu:116614663, auth:-/-", @@ -681,7 +681,7 @@ " 679 call create_contract(Address(obj#789), Bytes(obj#787), Bytes(obj#791))": "", " 680 call obj_cmp(Address(obj#793), Address(obj#789))": "cpu:118614951, mem:75492398, objs:-/397@8e52f175, auth:1@ba59cfca/-", " 681 ret obj_cmp -> Ok(0)": "cpu:118615637", - " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@5496e8ba", + " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@fb340186", " 683 ret get_ledger_network_id -> Ok(Bytes(obj#795))": "cpu:118618792, mem:75492510, objs:-/398@12799e50", " 684 ret create_contract -> Ok(Address(obj#797))": "cpu:118728033, mem:75504432, objs:-/399@3db9e662, store:-/58@8b1f0e88, foot:58@5c2834ff, auth:-/1@1693c723", " 685 call bytes_new_from_slice(1723)": "cpu:118728288, auth:-/-", @@ -693,7 +693,7 @@ " 691 call create_contract(Address(obj#803), Bytes(obj#801), Bytes(obj#805))": "", " 692 call obj_cmp(Address(obj#807), Address(obj#803))": "cpu:120728576, mem:76822236, objs:-/404@80b4325, auth:1@3d58dc89/-", " 693 ret obj_cmp -> Ok(0)": "cpu:120729262", - " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@98c21e82", + " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@6f5874f2", " 695 ret get_ledger_network_id -> Ok(Bytes(obj#809))": "cpu:120732417, mem:76822348, objs:-/405@3b999f4b", " 696 ret create_contract -> Ok(Address(obj#811))": "cpu:120838148, mem:76834456, objs:-/406@7fb07dfd, store:-/59@beb21ab6, foot:59@b156a440, auth:-/1@f485e251", " 697 call bytes_new_from_slice(1723)": "cpu:120838403, auth:-/-", @@ -705,7 +705,7 @@ " 703 call create_contract(Address(obj#817), Bytes(obj#815), Bytes(obj#819))": "", " 704 call obj_cmp(Address(obj#821), Address(obj#817))": "cpu:122838691, mem:78152260, objs:-/411@120f1132, auth:1@9615c0a4/-", " 705 ret obj_cmp -> Ok(0)": "cpu:122839377", - " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@2923ec4b", + " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@a21c8e0e", " 707 ret get_ledger_network_id -> Ok(Bytes(obj#823))": "cpu:122842532, mem:78152372, objs:-/412@7e1fcf83", " 708 ret create_contract -> Ok(Address(obj#825))": "cpu:122952121, mem:78164666, objs:-/413@d817a428, store:-/60@48bc1338, foot:60@a33f325d, auth:-/1@90f9a145", " 709 call bytes_new_from_slice(1723)": "cpu:122952376, auth:-/-", @@ -717,7 +717,7 @@ " 715 call create_contract(Address(obj#831), Bytes(obj#829), Bytes(obj#833))": "", " 716 call obj_cmp(Address(obj#835), Address(obj#831))": "cpu:124952664, mem:79482470, objs:-/418@fb16c9f, auth:1@ed66b718/-", " 717 ret obj_cmp -> Ok(0)": "cpu:124953350", - " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@3845c83e", + " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@915f7f35", " 719 ret get_ledger_network_id -> Ok(Bytes(obj#837))": "cpu:124956505, mem:79482582, objs:-/419@6c3991f8", " 720 ret create_contract -> Ok(Address(obj#839))": "cpu:125070712, mem:79495062, objs:-/420@7e22a47, store:-/61@39cb0da1, foot:61@9492821c, auth:-/1@1b6774bf", " 721 call bytes_new_from_slice(1723)": "cpu:125070967, auth:-/-", @@ -729,7 +729,7 @@ " 727 call create_contract(Address(obj#845), Bytes(obj#843), Bytes(obj#847))": "", " 728 call obj_cmp(Address(obj#849), Address(obj#845))": "cpu:127071255, mem:80812866, objs:-/425@34c426ec, auth:1@8d4c648/-", " 729 ret obj_cmp -> Ok(0)": "cpu:127071941", - " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@b8fd81b7", + " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@34a8de00", " 731 ret get_ledger_network_id -> Ok(Bytes(obj#851))": "cpu:127075096, mem:80812978, objs:-/426@6669f65a", " 732 ret create_contract -> Ok(Address(obj#853))": "cpu:127192147, mem:80825644, objs:-/427@3c471c07, store:-/62@73159901, foot:62@a247f604, auth:-/1@fa10c746", " 733 call bytes_new_from_slice(1723)": "cpu:127192402, auth:-/-", @@ -741,7 +741,7 @@ " 739 call create_contract(Address(obj#859), Bytes(obj#857), Bytes(obj#861))": "", " 740 call obj_cmp(Address(obj#863), Address(obj#859))": "cpu:129192690, mem:82143448, objs:-/432@a056c54, auth:1@dab38220/-", " 741 ret obj_cmp -> Ok(0)": "cpu:129193376", - " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@2a1916d6", + " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@f239515f", " 743 ret get_ledger_network_id -> Ok(Bytes(obj#865))": "cpu:129196531, mem:82143560, objs:-/433@b3ad8ff", " 744 ret create_contract -> Ok(Address(obj#867))": "cpu:129314644, mem:82156412, objs:-/434@e4eb33a, store:-/63@1b326826, foot:63@9801e88b, auth:-/1@a03e84e", " 745 call bytes_new_from_slice(1723)": "cpu:129314899, auth:-/-", @@ -753,7 +753,7 @@ " 751 call create_contract(Address(obj#873), Bytes(obj#871), Bytes(obj#875))": "", " 752 call obj_cmp(Address(obj#877), Address(obj#873))": "cpu:131315187, mem:83474216, objs:-/439@1aa2c5f6, auth:1@99c0fb6c/-", " 753 ret obj_cmp -> Ok(0)": "cpu:131315873", - " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@c35bd167", + " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@7ea4443e", " 755 ret get_ledger_network_id -> Ok(Bytes(obj#879))": "cpu:131319028, mem:83474328, objs:-/440@799c85ba", " 756 ret create_contract -> Ok(Address(obj#881))": "cpu:131438281, mem:83487366, objs:-/441@ca7fc40a, store:-/64@e7079371, foot:64@cc9b651b, auth:-/1@337ead98", " 757 call bytes_new_from_slice(1723)": "cpu:131438536, auth:-/-", @@ -765,7 +765,7 @@ " 763 call create_contract(Address(obj#887), Bytes(obj#885), Bytes(obj#889))": "", " 764 call obj_cmp(Address(obj#891), Address(obj#887))": "cpu:133438846, mem:84805170, objs:-/446@10069c6f, auth:1@15a8a357/-", " 765 ret obj_cmp -> Ok(0)": "cpu:133439532", - " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@a355308d", + " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@3a0544d3", " 767 ret get_ledger_network_id -> Ok(Bytes(obj#893))": "cpu:133442687, mem:84805282, objs:-/447@c3c2a480", " 768 ret create_contract -> Ok(Address(obj#895))": "cpu:133563026, mem:84818506, objs:-/448@75aa9a70, store:-/65@14bef7e4, foot:65@d9000a8e, auth:-/1@f4cff7fe", " 769 call bytes_new_from_slice(1723)": "cpu:133563281, auth:-/-", @@ -777,7 +777,7 @@ " 775 call create_contract(Address(obj#901), Bytes(obj#899), Bytes(obj#903))": "", " 776 call obj_cmp(Address(obj#905), Address(obj#901))": "cpu:135563591, mem:86136310, objs:-/453@9e1d13db, auth:1@740cbc46/-", " 777 ret obj_cmp -> Ok(0)": "cpu:135564277", - " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@d0e5f2d9", + " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@3bfe883", " 779 ret get_ledger_network_id -> Ok(Bytes(obj#907))": "cpu:135567432, mem:86136422, objs:-/454@2140adea", " 780 ret create_contract -> Ok(Address(obj#909))": "cpu:135687059, mem:86149832, objs:-/455@cc45d327, store:-/66@cd903d3e, foot:66@bfdb0e98, auth:-/1@bd7b355c", " 781 call bytes_new_from_slice(1723)": "cpu:135687314, auth:-/-", @@ -789,7 +789,7 @@ " 787 call create_contract(Address(obj#915), Bytes(obj#913), Bytes(obj#917))": "", " 788 call obj_cmp(Address(obj#919), Address(obj#915))": "cpu:137687624, mem:87467636, objs:-/460@b03c0f83, auth:1@2da9c65/-", " 789 ret obj_cmp -> Ok(0)": "cpu:137688310", - " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@b0c0571b", + " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@c4c1070f", " 791 ret get_ledger_network_id -> Ok(Bytes(obj#921))": "cpu:137691465, mem:87467748, objs:-/461@def87377", " 792 ret create_contract -> Ok(Address(obj#923))": "cpu:137813932, mem:87481344, objs:-/462@45120f6c, store:-/67@6584c2ff, foot:67@4ca4b4cb, auth:-/1@43d4f17b", " 793 call bytes_new_from_slice(1723)": "cpu:137814187, auth:-/-", @@ -801,7 +801,7 @@ " 799 call create_contract(Address(obj#929), Bytes(obj#927), Bytes(obj#931))": "", " 800 call obj_cmp(Address(obj#933), Address(obj#929))": "cpu:139814497, mem:88799148, objs:-/467@93a33041, auth:1@29f88d0f/-", " 801 ret obj_cmp -> Ok(0)": "cpu:139815183", - " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@979f25ad", + " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@fd3ae29e", " 803 ret get_ledger_network_id -> Ok(Bytes(obj#935))": "cpu:139818338, mem:88799260, objs:-/468@a5e532e9", " 804 ret create_contract -> Ok(Address(obj#937))": "cpu:139940093, mem:88813042, objs:-/469@f1730e5f, store:-/68@a95aaa61, foot:68@7b107c0e, auth:-/1@c7687a6f", " 805 call bytes_new_from_slice(1723)": "cpu:139940348, auth:-/-", @@ -813,7 +813,7 @@ " 811 call create_contract(Address(obj#943), Bytes(obj#941), Bytes(obj#945))": "", " 812 call obj_cmp(Address(obj#947), Address(obj#943))": "cpu:141940658, mem:90130846, objs:-/474@443ed4bb, auth:1@6d00ea2a/-", " 813 ret obj_cmp -> Ok(0)": "cpu:141941344", - " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@280957fb", + " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@bda0a2b", " 815 ret get_ledger_network_id -> Ok(Bytes(obj#949))": "cpu:141944499, mem:90130958, objs:-/475@cf814756", " 816 ret create_contract -> Ok(Address(obj#951))": "cpu:142067314, mem:90144926, objs:-/476@de85786d, store:-/69@2950663e, foot:69@6894b0a2, auth:-/1@12151c8e", " 817 call bytes_new_from_slice(1723)": "cpu:142067569, auth:-/-", @@ -825,7 +825,7 @@ " 823 call create_contract(Address(obj#957), Bytes(obj#955), Bytes(obj#959))": "", " 824 call obj_cmp(Address(obj#961), Address(obj#957))": "cpu:144067879, mem:91462730, objs:-/481@b0c8321a, auth:1@c0c7e5a8/-", " 825 ret obj_cmp -> Ok(0)": "cpu:144068565", - " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@4841adf2", + " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@9608c96e", " 827 ret get_ledger_network_id -> Ok(Bytes(obj#963))": "cpu:144071720, mem:91462842, objs:-/482@846aa98e", " 828 ret create_contract -> Ok(Address(obj#965))": "cpu:144189505, mem:91476996, objs:-/483@4fbf53ac, store:-/70@adf2fc99, foot:70@821ad073, auth:-/1@44e6f004", " 829 call bytes_new_from_slice(1723)": "cpu:144189760, auth:-/-", @@ -837,7 +837,7 @@ " 835 call create_contract(Address(obj#971), Bytes(obj#969), Bytes(obj#973))": "", " 836 call obj_cmp(Address(obj#975), Address(obj#971))": "cpu:146190070, mem:92794800, objs:-/488@b085e7d1, auth:1@e5ccf8c7/-", " 837 ret obj_cmp -> Ok(0)": "cpu:146190756", - " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@793dfb0a", + " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@dcd47906", " 839 ret get_ledger_network_id -> Ok(Bytes(obj#977))": "cpu:146193911, mem:92794912, objs:-/489@6913398b", " 840 ret create_contract -> Ok(Address(obj#979))": "cpu:146320630, mem:92809252, objs:-/490@1c8cace9, store:-/71@79757366, foot:71@92e5e652, auth:-/1@d1d73ad0", " 841 call bytes_new_from_slice(1723)": "cpu:146320885, auth:-/-", @@ -849,7 +849,7 @@ " 847 call create_contract(Address(obj#985), Bytes(obj#983), Bytes(obj#987))": "", " 848 call obj_cmp(Address(obj#989), Address(obj#985))": "cpu:148321195, mem:94127056, objs:-/495@a9b31ca, auth:1@8b9c1d75/-", " 849 ret obj_cmp -> Ok(0)": "cpu:148321881", - " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@a045f7fb", + " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@590c504f", " 851 ret get_ledger_network_id -> Ok(Bytes(obj#991))": "cpu:148325036, mem:94127168, objs:-/496@485ec8a7", " 852 ret create_contract -> Ok(Address(obj#993))": "cpu:148452827, mem:94141694, objs:-/497@2be4913d, store:-/72@f8a2e954, foot:72@131e5b52, auth:-/1@869a312d", " 853 call bytes_new_from_slice(1723)": "cpu:148453082, auth:-/-", @@ -861,7 +861,7 @@ " 859 call create_contract(Address(obj#999), Bytes(obj#997), Bytes(obj#1001))": "", " 860 call obj_cmp(Address(obj#1003), Address(obj#999))": "cpu:150453392, mem:95459498, objs:-/502@ef352cdd, auth:1@324ce1b0/-", " 861 ret obj_cmp -> Ok(0)": "cpu:150454078", - " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@1840bfcb", + " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@a5100b10", " 863 ret get_ledger_network_id -> Ok(Bytes(obj#1005))": "cpu:150457233, mem:95459610, objs:-/503@944ab8d9", " 864 ret create_contract -> Ok(Address(obj#1007))": "cpu:150582528, mem:95474322, objs:-/504@92c7111e, store:-/73@65800019, foot:73@74126ae0, auth:-/1@7b064a9e", " 865 call bytes_new_from_slice(1723)": "cpu:150582783, auth:-/-", @@ -873,7 +873,7 @@ " 871 call create_contract(Address(obj#1013), Bytes(obj#1011), Bytes(obj#1015))": "", " 872 call obj_cmp(Address(obj#1017), Address(obj#1013))": "cpu:152583093, mem:96792126, objs:-/509@c07bd221, auth:1@7da7fbb6/-", " 873 ret obj_cmp -> Ok(0)": "cpu:152583779", - " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@9bc13e6a", + " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@1e202147", " 875 ret get_ledger_network_id -> Ok(Bytes(obj#1019))": "cpu:152586934, mem:96792238, objs:-/510@6b7222e6", " 876 ret create_contract -> Ok(Address(obj#1021))": "cpu:152719645, mem:96807136, objs:-/511@2d880cb3, store:-/74@6da01545, foot:74@98a244b2, auth:-/1@7fbd7918", " 877 call bytes_new_from_slice(1723)": "cpu:152719900, auth:-/-", @@ -885,7 +885,7 @@ " 883 call create_contract(Address(obj#1027), Bytes(obj#1025), Bytes(obj#1029))": "", " 884 call obj_cmp(Address(obj#1031), Address(obj#1027))": "cpu:154720210, mem:98124940, objs:-/516@f5623ffa, auth:1@f873a88c/-", " 885 ret obj_cmp -> Ok(0)": "cpu:154720896", - " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@450e1f0b", + " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@742ef726", " 887 ret get_ledger_network_id -> Ok(Bytes(obj#1033))": "cpu:154724051, mem:98125052, objs:-/517@c1e547af", " 888 ret create_contract -> Ok(Address(obj#1035))": "cpu:154855028, mem:98140136, objs:-/518@ed0b6fa3, store:-/75@2640d275, foot:75@e1edfb8, auth:-/1@7bd1b1ac", " 889 call bytes_new_from_slice(1723)": "cpu:154855283, auth:-/-", @@ -897,7 +897,7 @@ " 895 call create_contract(Address(obj#1041), Bytes(obj#1039), Bytes(obj#1043))": "", " 896 call obj_cmp(Address(obj#1045), Address(obj#1041))": "cpu:156855593, mem:99457940, objs:-/523@afbfaeca, auth:1@a98e3a0c/-", " 897 ret obj_cmp -> Ok(0)": "cpu:156856279", - " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@97ab07bc", + " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@3314c4f4", " 899 ret get_ledger_network_id -> Ok(Bytes(obj#1047))": "cpu:156859434, mem:99458052, objs:-/524@ae0a83cb", " 900 ret create_contract -> Ok(Address(obj#1049))": "cpu:156994271, mem:99473322, objs:-/525@90f0b7e, store:-/76@b3fee76, foot:76@17ea103, auth:-/1@cd0c113", " 901 call bytes_new_from_slice(1723)": "cpu:156994526, auth:-/-", @@ -909,7 +909,7 @@ " 907 call create_contract(Address(obj#1055), Bytes(obj#1053), Bytes(obj#1057))": "", " 908 call obj_cmp(Address(obj#1059), Address(obj#1055))": "cpu:158994836, mem:100791126, objs:-/530@79ae528, auth:1@2722a0e9/-", " 909 ret obj_cmp -> Ok(0)": "cpu:158995522", - " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@b37297e1", + " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@2fc267a0", " 911 ret get_ledger_network_id -> Ok(Bytes(obj#1061))": "cpu:158998677, mem:100791238, objs:-/531@c299807e", " 912 ret create_contract -> Ok(Address(obj#1063))": "cpu:159130004, mem:100806694, objs:-/532@cd9f8aed, store:-/77@657b3ea7, foot:77@e7ae520f, auth:-/1@cd4623d1", " 913 call bytes_new_from_slice(1723)": "cpu:159130259, auth:-/-", @@ -921,7 +921,7 @@ " 919 call create_contract(Address(obj#1069), Bytes(obj#1067), Bytes(obj#1071))": "", " 920 call obj_cmp(Address(obj#1073), Address(obj#1069))": "cpu:161130569, mem:102124498, objs:-/537@e5fd859b, auth:1@d3342891/-", " 921 ret obj_cmp -> Ok(0)": "cpu:161131255", - " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@ac15408a", + " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@572a7bcf", " 923 ret get_ledger_network_id -> Ok(Bytes(obj#1075))": "cpu:161134410, mem:102124610, objs:-/538@373a6e1f", " 924 ret create_contract -> Ok(Address(obj#1077))": "cpu:161269597, mem:102140252, objs:-/539@a2bba411, store:-/78@be444a78, foot:78@92931e2e, auth:-/1@ffdde4e3", " 925 call bytes_new_from_slice(1723)": "cpu:161269852, auth:-/-", @@ -933,7 +933,7 @@ " 931 call create_contract(Address(obj#1083), Bytes(obj#1081), Bytes(obj#1085))": "", " 932 call obj_cmp(Address(obj#1087), Address(obj#1083))": "cpu:163270162, mem:103458056, objs:-/544@9b41b8e0, auth:1@dd609a88/-", " 933 ret obj_cmp -> Ok(0)": "cpu:163270848", - " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@8b52e45b", + " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@d4dbf130", " 935 ret get_ledger_network_id -> Ok(Bytes(obj#1089))": "cpu:163274003, mem:103458168, objs:-/545@1c155cdd", " 936 ret create_contract -> Ok(Address(obj#1091))": "cpu:163407456, mem:103473996, objs:-/546@6b1fddc7, store:-/79@1ff42e32, foot:79@b2da7f6f, auth:-/1@36361e6e", " 937 call bytes_new_from_slice(1723)": "cpu:163407711, auth:-/-", @@ -945,7 +945,7 @@ " 943 call create_contract(Address(obj#1097), Bytes(obj#1095), Bytes(obj#1099))": "", " 944 call obj_cmp(Address(obj#1101), Address(obj#1097))": "cpu:165408021, mem:104791800, objs:-/551@d1f85514, auth:1@2b6dc135/-", " 945 ret obj_cmp -> Ok(0)": "cpu:165408707", - " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@7c3fc9da", + " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@41e7877", " 947 ret get_ledger_network_id -> Ok(Bytes(obj#1103))": "cpu:165411862, mem:104791912, objs:-/552@904f5f5", " 948 ret create_contract -> Ok(Address(obj#1105))": "cpu:165543845, mem:104807926, objs:-/553@2b94afe6, store:-/80@5e14adc2, foot:80@f059281b, auth:-/1@1f118c6c", " 949 call bytes_new_from_slice(1723)": "cpu:165544100, auth:-/-", @@ -957,7 +957,7 @@ " 955 call create_contract(Address(obj#1111), Bytes(obj#1109), Bytes(obj#1113))": "", " 956 call obj_cmp(Address(obj#1115), Address(obj#1111))": "cpu:167544410, mem:106125730, objs:-/558@b9bcce70, auth:1@70e49983/-", " 957 ret obj_cmp -> Ok(0)": "cpu:167545096", - " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@d48ad31d", + " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@8b829207", " 959 ret get_ledger_network_id -> Ok(Bytes(obj#1117))": "cpu:167548251, mem:106125842, objs:-/559@db2ec1f1", " 960 ret create_contract -> Ok(Address(obj#1119))": "cpu:167688408, mem:106142042, objs:-/560@41ccfcc2, store:-/81@f81ad7da, foot:81@15685e3b, auth:-/1@6a69f567", " 961 call bytes_new_from_slice(1723)": "cpu:167688663, auth:-/-", @@ -969,7 +969,7 @@ " 967 call create_contract(Address(obj#1125), Bytes(obj#1123), Bytes(obj#1127))": "", " 968 call obj_cmp(Address(obj#1129), Address(obj#1125))": "cpu:169688973, mem:107459846, objs:-/565@1cad2db4, auth:1@2123cf2b/-", " 969 ret obj_cmp -> Ok(0)": "cpu:169689659", - " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@94e13f1", + " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@83e05267", " 971 ret get_ledger_network_id -> Ok(Bytes(obj#1131))": "cpu:169692814, mem:107459958, objs:-/566@56ce3a87", " 972 ret create_contract -> Ok(Address(obj#1133))": "cpu:169829465, mem:107476344, objs:-/567@3c1a2bca, store:-/82@768815a, foot:82@1f4b7a36, auth:-/1@27facc4a", " 973 call bytes_new_from_slice(1723)": "cpu:169829720, auth:-/-", @@ -981,7 +981,7 @@ " 979 call create_contract(Address(obj#1139), Bytes(obj#1137), Bytes(obj#1141))": "", " 980 call obj_cmp(Address(obj#1143), Address(obj#1139))": "cpu:171830030, mem:108794148, objs:-/572@1665aa07, auth:1@97298f20/-", " 981 ret obj_cmp -> Ok(0)": "cpu:171830716", - " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@e23f270a", + " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@4021cf1a", " 983 ret get_ledger_network_id -> Ok(Bytes(obj#1145))": "cpu:171833871, mem:108794260, objs:-/573@6e3f538d", " 984 ret create_contract -> Ok(Address(obj#1147))": "cpu:171974378, mem:108810832, objs:-/574@3ab5a9ff, store:-/83@92fc960e, foot:83@99dcf372, auth:-/1@3dfa80d3", " 985 call bytes_new_from_slice(1723)": "cpu:171974633, auth:-/-", @@ -993,7 +993,7 @@ " 991 call create_contract(Address(obj#1153), Bytes(obj#1151), Bytes(obj#1155))": "", " 992 call obj_cmp(Address(obj#1157), Address(obj#1153))": "cpu:173974943, mem:110128636, objs:-/579@cce4f991, auth:1@48cd29c5/-", " 993 ret obj_cmp -> Ok(0)": "cpu:173975629", - " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@89073d7b", + " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@b8360dff", " 995 ret get_ledger_network_id -> Ok(Bytes(obj#1159))": "cpu:173978784, mem:110128748, objs:-/580@bc994841", " 996 ret create_contract -> Ok(Address(obj#1161))": "cpu:174119339, mem:110145506, objs:-/581@35af42cf, store:-/84@9f307726, foot:84@c027a220, auth:-/1@9c275ce6", " 997 call bytes_new_from_slice(1723)": "cpu:174119594, auth:-/-", @@ -1065,7 +1065,7 @@ "10057 ret obj_cmp -> Ok(1)": "cpu:313955223", "10058 call obj_cmp(Address(obj#2557), Address(obj#2297))": "", "10059 ret obj_cmp -> Ok(1)": "cpu:313955909", - "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@15a30448", + "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@f1502f98", "10060 call obj_cmp(Address(obj#2569), Address(obj#2297))": "", "10061 ret obj_cmp -> Ok(1)": "cpu:313956595", "10062 call obj_cmp(Address(obj#2581), Address(obj#2297))": "", @@ -1197,7 +1197,7 @@ "10177 ret obj_cmp -> Ok(-1)": "cpu:316204542", "10178 call obj_cmp(Address(obj#2341), Address(obj#2309))": "", "10179 ret obj_cmp -> Ok(-1)": "cpu:316205228", - "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@99e0911a", + "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@ddecb92e", "10180 call obj_cmp(Address(obj#2353), Address(obj#2309))": "", "10181 ret obj_cmp -> Ok(-1)": "cpu:316205914", "10182 call obj_cmp(Address(obj#2365), Address(obj#2309))": "", @@ -1329,7 +1329,7 @@ "10297 ret bytes_new_from_slice -> Ok(Bytes(obj#3773))": "cpu:316271389, mem:191629850, objs:6@cdc11597/1887@4c6547d6", "10298 call vec_new()": "", "10299 ret vec_new -> Ok(Vec(obj#3775))": "cpu:316272638, mem:191629914, objs:6@cdc11597/1888@1d606812", - "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@d900f2b9", + "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@ef460cff", "10300 call vec_new_from_slice(0)": "", "10301 ret vec_new_from_slice -> Ok(Vec(obj#3777))": "cpu:316275423, mem:191629994, objs:6@cdc11597/1889@42e7874f", "10302 call map_new_from_slices(3)": "", @@ -1461,7 +1461,7 @@ "10417 ret obj_cmp -> Ok(1)": "cpu:318488682", "10418 call obj_cmp(Address(obj#2857), Address(obj#2321))": "", "10419 ret obj_cmp -> Ok(-1)": "cpu:318489368", - "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@8cf28d27", + "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@7a1f2db2", "10420 call obj_cmp(Address(obj#2869), Address(obj#2321))": "", "10421 ret obj_cmp -> Ok(-1)": "cpu:318490054", "10422 call obj_cmp(Address(obj#2881), Address(obj#2321))": "", @@ -1593,7 +1593,7 @@ "10537 ret obj_cmp -> Ok(1)": "cpu:320729895", "10538 call obj_cmp(Address(obj#2665), Address(obj#2333))": "", "10539 ret obj_cmp -> Ok(1)": "cpu:320730581", - "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@adb776b7", + "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@914bc040", "10540 call obj_cmp(Address(obj#2677), Address(obj#2333))": "", "10541 ret obj_cmp -> Ok(1)": "cpu:320731267", "10542 call obj_cmp(Address(obj#2689), Address(obj#2333))": "", @@ -1725,7 +1725,7 @@ "10657 ret obj_cmp -> Ok(1)": "cpu:322964769", "10658 call obj_cmp(Address(obj#2485), Address(obj#2345))": "", "10659 ret obj_cmp -> Ok(-1)": "cpu:322965455", - "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@3b733ec9", + "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@daca6b74", "10660 call obj_cmp(Address(obj#2497), Address(obj#2345))": "", "10661 ret obj_cmp -> Ok(1)": "cpu:322966141", "10662 call obj_cmp(Address(obj#2509), Address(obj#2345))": "", @@ -1857,7 +1857,7 @@ "10777 call symbol_index_in_linear_memory(Symbol(obj#2355), U32(1048664), U32(3))": "cpu:325190567, mem:196957236, objs:4@b28fd7b5/1921@fec08120, stk:47@a9b97586", "10778 ret symbol_index_in_linear_memory -> Ok(U32(0))": "cpu:325192298", "10779 call vec_get(Vec(obj#2359), U32(1))": "", - "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@f3b99202", + "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@4e66162c", "10780 ret vec_get -> Ok(Address(obj#2357))": "cpu:325193520", "10781 call vec_new()": "cpu:325194769, mem:196957260, objs:5@f5c6519a/1921@fec08120, stk:47@1221d7fa", "10782 ret vec_new -> Ok(Vec(obj#3843))": "cpu:325196203, mem:196957324, objs:5@f5c6519a/1922@44d38dc0", @@ -1989,7 +1989,7 @@ "10897 ret obj_cmp -> Ok(0)": "cpu:325239036", "10898 call obj_cmp(Symbol(obj#2375), Symbol(obj#3839))": "", "10899 ret obj_cmp -> Ok(0)": "cpu:325239719", - "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@c40502a7", + "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@95eeba1e", "10900 call bytes_new_from_slice(32)": "cpu:325263306, mem:196957958", "10901 ret bytes_new_from_slice -> Ok(Bytes(obj#3845))": "cpu:325266095, mem:196958070, objs:6@6e5d799e/1923@7b7b31a8", "10902 call vec_new()": "", @@ -2121,7 +2121,7 @@ "11017 ret obj_cmp -> Ok(1)": "cpu:327471900", "11018 call obj_cmp(Address(obj#2881), Address(obj#2369))": "", "11019 ret obj_cmp -> Ok(1)": "cpu:327472586", - "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@69ae4ce3", + "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@7b807866", "11020 call obj_cmp(Address(obj#2893), Address(obj#2369))": "", "11021 ret obj_cmp -> Ok(1)": "cpu:327473272", "11022 call obj_cmp(Address(obj#2905), Address(obj#2369))": "", @@ -2253,7 +2253,7 @@ "11137 ret obj_cmp -> Ok(1)": "cpu:329695377", "11138 call obj_cmp(Address(obj#2737), Address(obj#2381))": "", "11139 ret obj_cmp -> Ok(1)": "cpu:329696063", - "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@c6d564e3", + "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@6ffec27e", "11140 call obj_cmp(Address(obj#2749), Address(obj#2381))": "", "11141 ret obj_cmp -> Ok(1)": "cpu:329696749", "11142 call obj_cmp(Address(obj#2761), Address(obj#2381))": "", @@ -2385,7 +2385,7 @@ "11257 ret obj_cmp -> Ok(1)": "cpu:331920135", "11258 call obj_cmp(Address(obj#2605), Address(obj#2393))": "", "11259 ret obj_cmp -> Ok(-1)": "cpu:331920821", - "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@19000368", + "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@eba6b1af", "11260 call obj_cmp(Address(obj#2617), Address(obj#2393))": "", "11261 ret obj_cmp -> Ok(1)": "cpu:331921507", "11262 call obj_cmp(Address(obj#2629), Address(obj#2393))": "", @@ -2517,7 +2517,7 @@ "11377 ret obj_cmp -> Ok(1)": "cpu:334143126", "11378 call obj_cmp(Address(obj#2485), Address(obj#2405))": "", "11379 ret obj_cmp -> Ok(-1)": "cpu:334143812", - "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@165a018e", + "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@97aba755", "11380 call obj_cmp(Address(obj#2497), Address(obj#2405))": "", "11381 ret obj_cmp -> Ok(1)": "cpu:334144498", "11382 call obj_cmp(Address(obj#2509), Address(obj#2405))": "", @@ -2649,7 +2649,7 @@ "11497 call symbol_index_in_linear_memory(Symbol(obj#2415), U32(1048664), U32(3))": "cpu:336355517, mem:203616611, objs:4@5fe6603d/1966@1ba1f419, stk:52@5630566f", "11498 ret symbol_index_in_linear_memory -> Ok(U32(0))": "cpu:336357248", "11499 call vec_get(Vec(obj#2419), U32(1))": "", - "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@598eacaa", + "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@bed7d447", "11500 ret vec_get -> Ok(Address(obj#2417))": "cpu:336358470", "11501 call vec_new()": "cpu:336359719, mem:203616635, objs:5@60d9374c/1966@1ba1f419, stk:52@7b72b9b0", "11502 ret vec_new -> Ok(Vec(obj#3933))": "cpu:336361153, mem:203616699, objs:5@60d9374c/1967@351fa1e8", @@ -2781,7 +2781,7 @@ "11617 ret map_new_from_slices -> Ok(Map(obj#3941))": "cpu:336435026, mem:203617741, objs:6@630784af/1971@3986f92", "11618 call vec_new_from_slice(2)": "", "11619 ret vec_new_from_slice -> Ok(Vec(obj#3943))": "cpu:336437921, mem:203617837, objs:6@630784af/1972@b3bf22b2", - "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@a93552d0", + "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@978a819", "11620 call vec_push_back(Vec(obj#3937), Vec(obj#3943))": "", "11621 ret vec_push_back -> Ok(Vec(obj#3945))": "cpu:336441139, mem:203617925, objs:6@630784af/1973@2d785689", "11622 call symbol_new_from_slice(12)": "", @@ -2913,7 +2913,7 @@ "11737 ret obj_cmp -> Ok(-1)": "cpu:338618871", "11738 call obj_cmp(Address(obj#3001), Address(obj#2429))": "", "11739 ret obj_cmp -> Ok(-1)": "cpu:338619557", - "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@5f366658", + "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@af6ca8a", "11740 call obj_cmp(Address(obj#2437), Address(obj#2429))": " auth:53@5f55ae2a/47@dca7ff91", "11741 ret obj_cmp -> Ok(0)": "cpu:338620243", "11742 call obj_cmp(Address(obj#2445), Address(obj#3949))": "", @@ -3045,7 +3045,7 @@ "11857 ret obj_cmp -> Ok(-1)": "cpu:340828941", "11858 call obj_cmp(Address(obj#2917), Address(obj#2441))": "", "11859 ret obj_cmp -> Ok(1)": "cpu:340829627", - "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@68507614", + "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@c5cbfcbf", "11860 call obj_cmp(Address(obj#2929), Address(obj#2441))": "", "11861 ret obj_cmp -> Ok(-1)": "cpu:340830313", "11862 call obj_cmp(Address(obj#2941), Address(obj#2441))": "", @@ -3177,7 +3177,7 @@ "11977 ret obj_cmp -> Ok(-1)": "cpu:343037244", "11978 call obj_cmp(Address(obj#2845), Address(obj#2453))": "", "11979 ret obj_cmp -> Ok(1)": "cpu:343037930", - "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@73687fbb", + "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@c8d5c457", "11980 call obj_cmp(Address(obj#2857), Address(obj#2453))": "", "11981 ret obj_cmp -> Ok(1)": "cpu:343038616", "11982 call obj_cmp(Address(obj#2869), Address(obj#2453))": "", @@ -3309,7 +3309,7 @@ "12097 ret obj_cmp -> Ok(-1)": "cpu:345239208", "12098 call obj_cmp(Address(obj#2785), Address(obj#2465))": "", "12099 ret obj_cmp -> Ok(-1)": "cpu:345239894", - "1210 call get_ledger_network_id()": "cpu:212742367, auth:1@925600ba/1@d10a428a", + "1210 call get_ledger_network_id()": "cpu:212742367, auth:1@925600ba/1@65abba14", "12100 call obj_cmp(Address(obj#2797), Address(obj#2465))": "", "12101 ret obj_cmp -> Ok(-1)": "cpu:345240580", "12102 call obj_cmp(Address(obj#2809), Address(obj#2465))": "", @@ -7485,225 +7485,225 @@ "15893 ret vec_push_back -> Ok(Vec(obj#4809))": "cpu:438514699, mem:267497045, objs:6@c98da5a1/2405@94d11c37", "15894 call symbol_new_from_slice(12)": "", "15895 ret symbol_new_from_slice -> Ok(Symbol(obj#4811))": "cpu:438517736, mem:267497137, objs:6@c98da5a1/2406@23c56090", - "15896 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": "cpu:440465597, mem:268812984, auth:100@5e73c218/1@81f6c28c", + "15896 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": "cpu:440465597, mem:268812984, auth:100@5e73c218/1@a9c9b5c9", "15897 pop VM:88663680:sym#4793 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15898 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dc165925/2406@23c56090, vm:-/-, stk:99@1a6cf838, auth:99@27e26676/2@ef768ae3", + "15898 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dc165925/2406@23c56090, vm:-/-, stk:99@1a6cf838, auth:99@27e26676/2@bfd9eae8", "15899 pop VM:88663680:sym#4775 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1590 ret symbol_new_from_slice -> Ok(Symbol(obj#1791))": "cpu:213909934, mem:134235943, objs:-/896@edfab69a", - "15900 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6c07653/2406@23c56090, vm:-/-, stk:98@1be98a36, auth:98@29d61cc7/3@2f7944e3", + "15900 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6c07653/2406@23c56090, vm:-/-, stk:98@1be98a36, auth:98@29d61cc7/3@413bdc6a", "15901 pop VM:88663680:sym#4757 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15902 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5c63cbbf/2406@23c56090, vm:-/-, stk:97@a567a6, auth:97@3c6f2925/4@75b5b0df", + "15902 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5c63cbbf/2406@23c56090, vm:-/-, stk:97@a567a6, auth:97@3c6f2925/4@38cba8a5", "15903 pop VM:88663680:sym#4739 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15904 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cbe118e2/2406@23c56090, vm:-/-, stk:96@8b17adc0, auth:96@144743e5/5@70a9505", + "15904 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cbe118e2/2406@23c56090, vm:-/-, stk:96@8b17adc0, auth:96@144743e5/5@1131e9d6", "15905 pop VM:88663680:sym#4721 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15906 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6ddde67/2406@23c56090, vm:-/-, stk:95@ff0b150e, auth:95@8832c203/6@a932a908", + "15906 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6ddde67/2406@23c56090, vm:-/-, stk:95@ff0b150e, auth:95@8832c203/6@fc19ac9a", "15907 pop VM:88663680:sym#4703 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15908 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d89dcaee/2406@23c56090, vm:-/-, stk:94@664e82a9, auth:94@762b0db/7@17a8e898", + "15908 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d89dcaee/2406@23c56090, vm:-/-, stk:94@664e82a9, auth:94@762b0db/7@4e2e129e", "15909 pop VM:88663680:sym#4685 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1591 call vec_new_from_slice(2)": "", - "15910 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c512b407/2406@23c56090, vm:-/-, stk:93@c8b61feb, auth:93@9157a10f/8@24d2fc6", + "15910 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c512b407/2406@23c56090, vm:-/-, stk:93@c8b61feb, auth:93@9157a10f/8@d336b920", "15911 pop VM:88663680:sym#4667 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15912 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@aa148ad/2406@23c56090, vm:-/-, stk:92@8a32f13c, auth:92@2cfe5767/9@19352bdf", + "15912 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@aa148ad/2406@23c56090, vm:-/-, stk:92@8a32f13c, auth:92@2cfe5767/9@e2358a30", "15913 pop VM:88663680:sym#4649 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15914 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb15974c/2406@23c56090, vm:-/-, stk:91@19eaf891, auth:91@4645da4e/10@f4921c98", + "15914 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb15974c/2406@23c56090, vm:-/-, stk:91@19eaf891, auth:91@4645da4e/10@16400f37", "15915 pop VM:88663680:sym#4631 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15916 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@51ee3bf9/2406@23c56090, vm:-/-, stk:90@fac2cd8c, auth:90@a5745de4/11@1cea337e", + "15916 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@51ee3bf9/2406@23c56090, vm:-/-, stk:90@fac2cd8c, auth:90@a5745de4/11@867ea205", "15917 pop VM:88663680:sym#4613 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15918 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b87a5e78/2406@23c56090, vm:-/-, stk:89@14d85f3c, auth:89@5b9bc1ca/12@e33a8325", + "15918 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b87a5e78/2406@23c56090, vm:-/-, stk:89@14d85f3c, auth:89@5b9bc1ca/12@688f66f9", "15919 pop VM:88663680:sym#4595 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1592 ret vec_new_from_slice -> Ok(Vec(obj#1793))": "cpu:213912937, mem:134236039, objs:-/897@ba0af224", - "15920 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@19fd7c19/2406@23c56090, vm:-/-, stk:88@236aa96c, auth:88@9089abdb/13@f1133499", + "15920 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@19fd7c19/2406@23c56090, vm:-/-, stk:88@236aa96c, auth:88@9089abdb/13@72cd3407", "15921 pop VM:88663680:sym#4577 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15922 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce418a65/2406@23c56090, vm:-/-, stk:87@c558a222, auth:87@36dd97b3/14@1c7a4ee", + "15922 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce418a65/2406@23c56090, vm:-/-, stk:87@c558a222, auth:87@36dd97b3/14@b039f864", "15923 pop VM:88663680:sym#4559 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15924 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9dfd16a9/2406@23c56090, vm:-/-, stk:86@b3e137bd, auth:86@bc993ffb/15@ff38f00d", + "15924 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9dfd16a9/2406@23c56090, vm:-/-, stk:86@b3e137bd, auth:86@bc993ffb/15@1cfde512", "15925 pop VM:88663680:sym#4541 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15926 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9f706315/2406@23c56090, vm:-/-, stk:85@6119c8e6, auth:85@bcfea9b1/16@fa40b4ad", + "15926 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9f706315/2406@23c56090, vm:-/-, stk:85@6119c8e6, auth:85@bcfea9b1/16@bfe467a5", "15927 pop VM:88663680:sym#4523 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15928 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@87a6219e/2406@23c56090, vm:-/-, stk:84@139b1d0c, auth:84@e91d8bb5/17@39b9ce67", + "15928 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@87a6219e/2406@23c56090, vm:-/-, stk:84@139b1d0c, auth:84@e91d8bb5/17@b6f6ce3e", "15929 pop VM:88663680:sym#4505 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1593 call symbol_new_from_slice(15)": "cpu:213917545, mem:134236214", - "15930 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@df7aab49/2406@23c56090, vm:-/-, stk:83@50aede60, auth:83@3c5c33ac/18@866fe55", + "15930 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@df7aab49/2406@23c56090, vm:-/-, stk:83@50aede60, auth:83@3c5c33ac/18@c54ee045", "15931 pop VM:88663680:sym#4487 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15932 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@745aa3ba/2406@23c56090, vm:-/-, stk:82@b982b223, auth:82@4b7f5903/19@65338b58", + "15932 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@745aa3ba/2406@23c56090, vm:-/-, stk:82@b982b223, auth:82@4b7f5903/19@feada9fb", "15933 pop VM:88663680:sym#4469 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15934 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@45dfd5d9/2406@23c56090, vm:-/-, stk:81@df37311a, auth:81@de362af4/20@362fda08", + "15934 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@45dfd5d9/2406@23c56090, vm:-/-, stk:81@df37311a, auth:81@de362af4/20@30a90d89", "15935 pop VM:88663680:sym#4451 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15936 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a48ea546/2406@23c56090, vm:-/-, stk:80@44cbd31a, auth:80@9eb6d02e/21@200a09a6", + "15936 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a48ea546/2406@23c56090, vm:-/-, stk:80@44cbd31a, auth:80@9eb6d02e/21@90c5d46d", "15937 pop VM:88663680:sym#4433 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15938 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4c34854f/2406@23c56090, vm:-/-, stk:79@1097a189, auth:79@c58c722f/22@bba82686", + "15938 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4c34854f/2406@23c56090, vm:-/-, stk:79@1097a189, auth:79@c58c722f/22@7e279497", "15939 pop VM:88663680:sym#4415 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1594 ret symbol_new_from_slice -> Ok(Symbol(obj#1795))": "cpu:213920582, mem:134236309, objs:-/898@61dcf23", - "15940 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@61c2fb2b/2406@23c56090, vm:-/-, stk:78@26cd33ec, auth:78@1816aa4b/23@bcea0096", + "15940 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@61c2fb2b/2406@23c56090, vm:-/-, stk:78@26cd33ec, auth:78@1816aa4b/23@79f31b66", "15941 pop VM:88663680:sym#4397 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15942 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@aea26e78/2406@23c56090, vm:-/-, stk:77@e1db8fd8, auth:77@b4180830/24@dce599fe", + "15942 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@aea26e78/2406@23c56090, vm:-/-, stk:77@e1db8fd8, auth:77@b4180830/24@154be02d", "15943 pop VM:88663680:sym#4379 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15944 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dc2500dc/2406@23c56090, vm:-/-, stk:76@51e54731, auth:76@a9b1924f/25@d525ad98", + "15944 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dc2500dc/2406@23c56090, vm:-/-, stk:76@51e54731, auth:76@a9b1924f/25@74e5ab99", "15945 pop VM:88663680:sym#4361 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15946 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dc0c312a/2406@23c56090, vm:-/-, stk:75@41a25f07, auth:75@8228421e/26@7e0569ed", + "15946 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dc0c312a/2406@23c56090, vm:-/-, stk:75@41a25f07, auth:75@8228421e/26@642a4430", "15947 pop VM:88663680:sym#4343 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15948 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@47294d97/2406@23c56090, vm:-/-, stk:74@57088699, auth:74@c7c424a/27@a36cb4c1", + "15948 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@47294d97/2406@23c56090, vm:-/-, stk:74@57088699, auth:74@c7c424a/27@1cc3130c", "15949 pop VM:88663680:sym#4325 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1595 call vec_new_from_slice(2)": "", - "15950 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@33ed7dfc/2406@23c56090, vm:-/-, stk:73@78515e76, auth:73@9b523b00/28@2945a7c0", + "15950 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@33ed7dfc/2406@23c56090, vm:-/-, stk:73@78515e76, auth:73@9b523b00/28@52640f7b", "15951 pop VM:88663680:sym#4307 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15952 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e316e853/2406@23c56090, vm:-/-, stk:72@511fe3e9, auth:72@8e0319a3/29@cbb08ed3", + "15952 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e316e853/2406@23c56090, vm:-/-, stk:72@511fe3e9, auth:72@8e0319a3/29@77b766a", "15953 pop VM:88663680:sym#4289 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15954 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a0f541ec/2406@23c56090, vm:-/-, stk:71@8386fc7a, auth:71@b2e3e851/30@995d1f32", + "15954 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a0f541ec/2406@23c56090, vm:-/-, stk:71@8386fc7a, auth:71@b2e3e851/30@a7764e2e", "15955 pop VM:88663680:sym#4271 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15956 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d89a4154/2406@23c56090, vm:-/-, stk:70@fb117d65, auth:70@b3d33dc3/31@934c0dfb", + "15956 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d89a4154/2406@23c56090, vm:-/-, stk:70@fb117d65, auth:70@b3d33dc3/31@bedbe55f", "15957 pop VM:88663680:sym#4253 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15958 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8e1c9082/2406@23c56090, vm:-/-, stk:69@a2f42e31, auth:69@a7929ad/32@593a2687", + "15958 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8e1c9082/2406@23c56090, vm:-/-, stk:69@a2f42e31, auth:69@a7929ad/32@e9efeadb", "15959 pop VM:88663680:sym#4235 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1596 ret vec_new_from_slice -> Ok(Vec(obj#1797))": "cpu:213923585, mem:134236405, objs:-/899@32c69acf", - "15960 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fdca3395/2406@23c56090, vm:-/-, stk:68@7bcfddcb, auth:68@a77e1021/33@d805e50d", + "15960 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fdca3395/2406@23c56090, vm:-/-, stk:68@7bcfddcb, auth:68@a77e1021/33@b6e01629", "15961 pop VM:88663680:sym#4217 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15962 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8d30100/2406@23c56090, vm:-/-, stk:67@75961388, auth:67@5c078bea/34@a5495381", + "15962 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8d30100/2406@23c56090, vm:-/-, stk:67@75961388, auth:67@5c078bea/34@2b56a623", "15963 pop VM:88663680:sym#4199 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15964 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a5497abb/2406@23c56090, vm:-/-, stk:66@8cbf9ec2, auth:66@6fcd217d/35@a6b28377", + "15964 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a5497abb/2406@23c56090, vm:-/-, stk:66@8cbf9ec2, auth:66@6fcd217d/35@c7addd38", "15965 pop VM:88663680:sym#4181 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15966 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b65c071c/2406@23c56090, vm:-/-, stk:65@c4e81584, auth:65@46d062d3/36@38cfff73", + "15966 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b65c071c/2406@23c56090, vm:-/-, stk:65@c4e81584, auth:65@46d062d3/36@9b359914", "15967 pop VM:88663680:sym#4163 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15968 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5cfbc371/2406@23c56090, vm:-/-, stk:64@5f442ed9, auth:64@3046c94f/37@16210d5b", + "15968 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5cfbc371/2406@23c56090, vm:-/-, stk:64@5f442ed9, auth:64@3046c94f/37@7235bcc5", "15969 pop VM:88663680:sym#4145 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1597 call symbol_new_from_slice(15)": "cpu:213928193, mem:134236580", - "15970 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cf2ff7af/2406@23c56090, vm:-/-, stk:63@1258250, auth:63@b648f6c2/38@b571c32f", + "15970 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cf2ff7af/2406@23c56090, vm:-/-, stk:63@1258250, auth:63@b648f6c2/38@e73d19ce", "15971 pop VM:88663680:sym#4127 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15972 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ab62d9d/2406@23c56090, vm:-/-, stk:62@b416c094, auth:62@bce59e08/39@9d6d6d60", + "15972 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ab62d9d/2406@23c56090, vm:-/-, stk:62@b416c094, auth:62@bce59e08/39@1bc45ee5", "15973 pop VM:88663680:sym#4109 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15974 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@86da9411/2406@23c56090, vm:-/-, stk:61@71406e28, auth:61@fce82f61/40@4c0964f", + "15974 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@86da9411/2406@23c56090, vm:-/-, stk:61@71406e28, auth:61@fce82f61/40@51f2bb4f", "15975 pop VM:88663680:sym#4091 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15976 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3a208125/2406@23c56090, vm:-/-, stk:60@b15f3b9, auth:60@5a4489e9/41@d2a11f69", + "15976 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3a208125/2406@23c56090, vm:-/-, stk:60@b15f3b9, auth:60@5a4489e9/41@6face55e", "15977 pop VM:88663680:sym#4073 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15978 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4e13a345/2406@23c56090, vm:-/-, stk:59@41010ab6, auth:59@7fa4901/42@10637de7", + "15978 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4e13a345/2406@23c56090, vm:-/-, stk:59@41010ab6, auth:59@7fa4901/42@6249f96a", "15979 pop VM:88663680:sym#4055 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1598 ret symbol_new_from_slice -> Ok(Symbol(obj#1799))": "cpu:213931230, mem:134236675, objs:-/900@95e58baf", - "15980 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@22051790/2406@23c56090, vm:-/-, stk:58@30db4383, auth:58@5df18787/43@ca9ecc7e", + "15980 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@22051790/2406@23c56090, vm:-/-, stk:58@30db4383, auth:58@5df18787/43@4c212302", "15981 pop VM:88663680:sym#4037 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15982 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@82077156/2406@23c56090, vm:-/-, stk:57@d263f40a, auth:57@66c596e8/44@bf125dea", + "15982 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@82077156/2406@23c56090, vm:-/-, stk:57@d263f40a, auth:57@66c596e8/44@bc8e21b9", "15983 pop VM:88663680:sym#4019 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15984 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ac78f8a8/2406@23c56090, vm:-/-, stk:56@6e1c6154, auth:56@9a71c0c2/45@bdb4e66d", + "15984 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ac78f8a8/2406@23c56090, vm:-/-, stk:56@6e1c6154, auth:56@9a71c0c2/45@aba7c97a", "15985 pop VM:88663680:sym#4001 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15986 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@90d2818d/2406@23c56090, vm:-/-, stk:55@46503955, auth:55@7fd465f2/46@120f1b17", + "15986 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@90d2818d/2406@23c56090, vm:-/-, stk:55@46503955, auth:55@7fd465f2/46@7e34d2b4", "15987 pop VM:88663680:sym#3983 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15988 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb4528c9/2406@23c56090, vm:-/-, stk:54@75d12c0b, auth:54@b4dd65e/47@e8d4b039", + "15988 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb4528c9/2406@23c56090, vm:-/-, stk:54@75d12c0b, auth:54@b4dd65e/47@88132005", "15989 pop VM:88663680:sym#3965 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1599 call vec_new_from_slice(2)": "", - "15990 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c6296202/2406@23c56090, vm:-/-, stk:53@cf613dd8, auth:53@5f55ae2a/48@8bf87e26", + "15990 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c6296202/2406@23c56090, vm:-/-, stk:53@cf613dd8, auth:53@5f55ae2a/48@b73e15b5", "15991 pop VM:88663680:sym#3947 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15992 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@630784af/2406@23c56090, vm:-/-, stk:52@5886aca, auth:52@725ba749/49@e9ee758c", + "15992 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@630784af/2406@23c56090, vm:-/-, stk:52@5886aca, auth:52@725ba749/49@c62bd412", "15993 pop VM:88663680:sym#3929 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15994 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@27fd8258/2406@23c56090, vm:-/-, stk:51@79541878, auth:51@bccf2f07/50@8573b3a0", + "15994 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@27fd8258/2406@23c56090, vm:-/-, stk:51@79541878, auth:51@bccf2f07/50@8e5adfa0", "15995 pop VM:88663680:sym#3911 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15996 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4deda985/2406@23c56090, vm:-/-, stk:50@1a5036de, auth:50@a261ae22/51@c1b6d2bc", + "15996 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4deda985/2406@23c56090, vm:-/-, stk:50@1a5036de, auth:50@a261ae22/51@6b6dbb53", "15997 pop VM:88663680:sym#3893 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15998 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@237b12f5/2406@23c56090, vm:-/-, stk:49@b6bd09a9, auth:49@b5ea39f8/52@e30e771b", + "15998 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@237b12f5/2406@23c56090, vm:-/-, stk:49@b6bd09a9, auth:49@b5ea39f8/52@7f50b32d", "15999 pop VM:88663680:sym#3875 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1600 ret vec_new_from_slice -> Ok(Vec(obj#1801))": "cpu:213934233, mem:134236771, objs:-/901@10fa0459", - "16000 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7f4d17b5/2406@23c56090, vm:-/-, stk:48@5b0444c7, auth:48@2684fc62/53@9c7e5006", + "16000 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7f4d17b5/2406@23c56090, vm:-/-, stk:48@5b0444c7, auth:48@2684fc62/53@82a25ad4", "16001 pop VM:88663680:sym#3857 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16002 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6e5d799e/2406@23c56090, vm:-/-, stk:47@456fcda7, auth:47@cfa63095/54@73a5aaa1", + "16002 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6e5d799e/2406@23c56090, vm:-/-, stk:47@456fcda7, auth:47@cfa63095/54@3294ecea", "16003 pop VM:88663680:sym#3839 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16004 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f488caf/2406@23c56090, vm:-/-, stk:46@c9b280f, auth:46@4057c9f/55@b03b881d", + "16004 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f488caf/2406@23c56090, vm:-/-, stk:46@c9b280f, auth:46@4057c9f/55@7d6af1b4", "16005 pop VM:88663680:sym#3821 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16006 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@482c2c3d/2406@23c56090, vm:-/-, stk:45@df377b15, auth:45@eac28f6c/56@3b409f0d", + "16006 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@482c2c3d/2406@23c56090, vm:-/-, stk:45@df377b15, auth:45@eac28f6c/56@f69fa722", "16007 pop VM:88663680:sym#3803 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16008 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b95795d3/2406@23c56090, vm:-/-, stk:44@f407cb21, auth:44@667c7529/57@1d6f78c0", + "16008 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b95795d3/2406@23c56090, vm:-/-, stk:44@f407cb21, auth:44@667c7529/57@ea8400ff", "16009 pop VM:88663680:sym#3785 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1601 call symbol_new_from_slice(15)": "cpu:213938841, mem:134236946", - "16010 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cdc11597/2406@23c56090, vm:-/-, stk:43@bfdeb287, auth:43@cdd01d6a/58@637cdc77", + "16010 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cdc11597/2406@23c56090, vm:-/-, stk:43@bfdeb287, auth:43@cdd01d6a/58@14a3d2cb", "16011 pop VM:88663680:sym#3767 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16012 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@161f5ec1/2406@23c56090, vm:-/-, stk:42@97336fc3, auth:42@ff5b07a9/59@555fc21d", + "16012 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@161f5ec1/2406@23c56090, vm:-/-, stk:42@97336fc3, auth:42@ff5b07a9/59@4dada67d", "16013 pop VM:88663680:sym#3749 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16014 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@668230b6/2406@23c56090, vm:-/-, stk:41@89cc9eb, auth:41@39d67838/60@38d7bebe", + "16014 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@668230b6/2406@23c56090, vm:-/-, stk:41@89cc9eb, auth:41@39d67838/60@8fd6d1f3", "16015 pop VM:88663680:sym#3731 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16016 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb2a282b/2406@23c56090, vm:-/-, stk:40@74b58cc0, auth:40@97cec8c3/61@14e9715c", + "16016 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb2a282b/2406@23c56090, vm:-/-, stk:40@74b58cc0, auth:40@97cec8c3/61@7cbc8579", "16017 pop VM:88663680:sym#3713 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16018 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@354bf390/2406@23c56090, vm:-/-, stk:39@8e4e6c58, auth:39@47eb9042/62@58ab3589", + "16018 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@354bf390/2406@23c56090, vm:-/-, stk:39@8e4e6c58, auth:39@47eb9042/62@c1a8bf5c", "16019 pop VM:88663680:sym#3695 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1602 ret symbol_new_from_slice -> Ok(Symbol(obj#1803))": "cpu:213941878, mem:134237041, objs:-/902@30ee5f8a", - "16020 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9be902c9/2406@23c56090, vm:-/-, stk:38@6536a9f0, auth:38@d6a3c4c/63@d69fedff", + "16020 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9be902c9/2406@23c56090, vm:-/-, stk:38@6536a9f0, auth:38@d6a3c4c/63@325b53a3", "16021 pop VM:88663680:sym#3677 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16022 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ea82d2c/2406@23c56090, vm:-/-, stk:37@b5311ac1, auth:37@b9c8b3e7/64@3b0f6ba5", + "16022 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ea82d2c/2406@23c56090, vm:-/-, stk:37@b5311ac1, auth:37@b9c8b3e7/64@2f1106f1", "16023 pop VM:88663680:sym#3659 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16024 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b13ccc51/2406@23c56090, vm:-/-, stk:36@dff62235, auth:36@1e0f656a/65@88d32fa4", + "16024 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b13ccc51/2406@23c56090, vm:-/-, stk:36@dff62235, auth:36@1e0f656a/65@c9daffad", "16025 pop VM:88663680:sym#3641 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16026 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e254a76/2406@23c56090, vm:-/-, stk:35@1c7d7ce8, auth:35@6f0e3065/66@4853ea7e", + "16026 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e254a76/2406@23c56090, vm:-/-, stk:35@1c7d7ce8, auth:35@6f0e3065/66@d3b7528e", "16027 pop VM:88663680:sym#3623 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16028 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@28992cfd/2406@23c56090, vm:-/-, stk:34@a7b1cc2a, auth:34@598d9431/67@a0459639", + "16028 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@28992cfd/2406@23c56090, vm:-/-, stk:34@a7b1cc2a, auth:34@598d9431/67@231a3b82", "16029 pop VM:88663680:sym#3605 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1603 call vec_new_from_slice(2)": "", - "16030 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7f371f5/2406@23c56090, vm:-/-, stk:33@59947c1d, auth:33@a5356541/68@9942834e", + "16030 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7f371f5/2406@23c56090, vm:-/-, stk:33@59947c1d, auth:33@a5356541/68@947ba864", "16031 pop VM:88663680:sym#3587 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16032 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cc6c0d1c/2406@23c56090, vm:-/-, stk:32@9ffe17e2, auth:32@f88acce4/69@7250de78", + "16032 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@cc6c0d1c/2406@23c56090, vm:-/-, stk:32@9ffe17e2, auth:32@f88acce4/69@3453b21c", "16033 pop VM:88663680:sym#3569 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16034 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6b0e0431/2406@23c56090, vm:-/-, stk:31@9eb098da, auth:31@2600d9c8/70@66db80c5", + "16034 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6b0e0431/2406@23c56090, vm:-/-, stk:31@9eb098da, auth:31@2600d9c8/70@d35a3534", "16035 pop VM:88663680:sym#3551 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16036 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780e4ee/2406@23c56090, vm:-/-, stk:30@8cccbc83, auth:30@9702a407/71@d501c8eb", + "16036 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780e4ee/2406@23c56090, vm:-/-, stk:30@8cccbc83, auth:30@9702a407/71@7687e5eb", "16037 pop VM:88663680:sym#3533 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16038 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@679a454c/2406@23c56090, vm:-/-, stk:29@bc21c84f, auth:29@e519c33a/72@a98c5c60", + "16038 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@679a454c/2406@23c56090, vm:-/-, stk:29@bc21c84f, auth:29@e519c33a/72@667f04a2", "16039 pop VM:88663680:sym#3515 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1604 ret vec_new_from_slice -> Ok(Vec(obj#1805))": "cpu:213944881, mem:134237137, objs:-/903@c30ea38b", - "16040 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b91a2534/2406@23c56090, vm:-/-, stk:28@f6563ba3, auth:28@fda33ba1/73@9e244184", + "16040 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b91a2534/2406@23c56090, vm:-/-, stk:28@f6563ba3, auth:28@fda33ba1/73@6dccd934", "16041 pop VM:88663680:sym#3497 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16042 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b8ba2271/2406@23c56090, vm:-/-, stk:27@213f333f, auth:27@2d98b376/74@dc4f085", + "16042 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b8ba2271/2406@23c56090, vm:-/-, stk:27@213f333f, auth:27@2d98b376/74@2aa4ac4e", "16043 pop VM:88663680:sym#3479 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16044 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@33d04a2c/2406@23c56090, vm:-/-, stk:26@88153c2f, auth:26@66421fbc/75@bbcfbfc", + "16044 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@33d04a2c/2406@23c56090, vm:-/-, stk:26@88153c2f, auth:26@66421fbc/75@612edaf2", "16045 pop VM:88663680:sym#3461 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16046 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@eb2541c1/2406@23c56090, vm:-/-, stk:25@5be2c289, auth:25@c6b01bf1/76@f92f0261", + "16046 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@eb2541c1/2406@23c56090, vm:-/-, stk:25@5be2c289, auth:25@c6b01bf1/76@7eb1bd7e", "16047 pop VM:88663680:sym#3443 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16048 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b399a87d/2406@23c56090, vm:-/-, stk:24@1e0f47c3, auth:24@1759bba6/77@b2cf23ae", + "16048 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b399a87d/2406@23c56090, vm:-/-, stk:24@1e0f47c3, auth:24@1759bba6/77@2a826096", "16049 pop VM:88663680:sym#3425 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1605 call symbol_new_from_slice(15)": "cpu:213949489, mem:134237312", - "16050 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@95ac8ed1/2406@23c56090, vm:-/-, stk:23@bf1d3ef6, auth:23@73fa7b81/78@64135d01", + "16050 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@95ac8ed1/2406@23c56090, vm:-/-, stk:23@bf1d3ef6, auth:23@73fa7b81/78@9f15484f", "16051 pop VM:88663680:sym#3407 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16052 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c99baaff/2406@23c56090, vm:-/-, stk:22@5c9d9862, auth:22@df68a796/79@40c7d215", + "16052 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c99baaff/2406@23c56090, vm:-/-, stk:22@5c9d9862, auth:22@df68a796/79@3264806c", "16053 pop VM:88663680:sym#3389 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16054 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ee9b581f/2406@23c56090, vm:-/-, stk:21@fca80d21, auth:21@43a09126/80@4b456c5e", + "16054 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ee9b581f/2406@23c56090, vm:-/-, stk:21@fca80d21, auth:21@43a09126/80@7face688", "16055 pop VM:88663680:sym#3371 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16056 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2f21c476/2406@23c56090, vm:-/-, stk:20@18730c65, auth:20@b6b5ce2f/81@3d9cef76", + "16056 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2f21c476/2406@23c56090, vm:-/-, stk:20@18730c65, auth:20@b6b5ce2f/81@d3b4cbb1", "16057 pop VM:88663680:sym#3353 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16058 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce5f3614/2406@23c56090, vm:-/-, stk:19@1813b344, auth:19@46698a10/82@d7a697e2", + "16058 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce5f3614/2406@23c56090, vm:-/-, stk:19@1813b344, auth:19@46698a10/82@9b9f99ba", "16059 pop VM:88663680:sym#3335 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1606 ret symbol_new_from_slice -> Ok(Symbol(obj#1807))": "cpu:213952526, mem:134237407, objs:-/904@46c8dccf", - "16060 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@56b4ef2a/2406@23c56090, vm:-/-, stk:18@6daa1d77, auth:18@37c19f32/83@a68e8107", + "16060 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@56b4ef2a/2406@23c56090, vm:-/-, stk:18@6daa1d77, auth:18@37c19f32/83@8e6d1922", "16061 pop VM:88663680:sym#3317 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16062 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2f7d1b23/2406@23c56090, vm:-/-, stk:17@602168e0, auth:17@78dedc4d/84@dea76ca8", + "16062 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2f7d1b23/2406@23c56090, vm:-/-, stk:17@602168e0, auth:17@78dedc4d/84@9ee4f46f", "16063 pop VM:88663680:sym#3299 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16064 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fa8cc5d3/2406@23c56090, vm:-/-, stk:16@a05bd6cc, auth:16@2cdf0756/85@f2462a2", + "16064 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fa8cc5d3/2406@23c56090, vm:-/-, stk:16@a05bd6cc, auth:16@2cdf0756/85@f8e154f2", "16065 pop VM:88663680:sym#3281 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16066 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@43af460f/2406@23c56090, vm:-/-, stk:15@7131544c, auth:15@f143817c/86@dae36f4f", + "16066 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@43af460f/2406@23c56090, vm:-/-, stk:15@7131544c, auth:15@f143817c/86@4d75a76", "16067 pop VM:88663680:sym#3263 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16068 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3d6ecba2/2406@23c56090, vm:-/-, stk:14@a8ae1e9a, auth:14@b8278c55/87@683b309c", + "16068 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3d6ecba2/2406@23c56090, vm:-/-, stk:14@a8ae1e9a, auth:14@b8278c55/87@22d71d51", "16069 pop VM:88663680:sym#3245 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1607 call vec_new_from_slice(2)": "", - "16070 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@615e9aec/2406@23c56090, vm:-/-, stk:13@c32db8aa, auth:13@58b4965d/88@ece7f641", + "16070 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@615e9aec/2406@23c56090, vm:-/-, stk:13@c32db8aa, auth:13@58b4965d/88@b58b8a7", "16071 pop VM:88663680:sym#3227 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16072 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@838b05ee/2406@23c56090, vm:-/-, stk:12@35d25a9, auth:12@be3012b7/89@1720fdcf", + "16072 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@838b05ee/2406@23c56090, vm:-/-, stk:12@35d25a9, auth:12@be3012b7/89@8fab74eb", "16073 pop VM:88663680:sym#3209 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16074 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bab51d99/2406@23c56090, vm:-/-, stk:11@a38ef540, auth:11@47994e91/90@6213993", + "16074 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bab51d99/2406@23c56090, vm:-/-, stk:11@a38ef540, auth:11@47994e91/90@70729d7a", "16075 pop VM:88663680:sym#3191 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16076 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ba54b78/2406@23c56090, vm:-/-, stk:10@f07b610c, auth:10@6408f6a5/91@50b4aaca", + "16076 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ba54b78/2406@23c56090, vm:-/-, stk:10@f07b610c, auth:10@6408f6a5/91@ed6320ba", "16077 pop VM:88663680:sym#3173 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16078 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2dd9da67/2406@23c56090, vm:-/-, stk:9@d7fbca9c, auth:9@55d12285/92@c342c58a", + "16078 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2dd9da67/2406@23c56090, vm:-/-, stk:9@d7fbca9c, auth:9@55d12285/92@eac316bb", "16079 pop VM:88663680:sym#3155 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1608 ret vec_new_from_slice -> Ok(Vec(obj#1809))": "cpu:213955529, mem:134237503, objs:-/905@d42855cf", - "16080 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5e3addb5/2406@23c56090, vm:-/-, stk:8@66f53c2d, auth:8@348272d3/93@b3a9c099", + "16080 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5e3addb5/2406@23c56090, vm:-/-, stk:8@66f53c2d, auth:8@348272d3/93@71725672", "16081 pop VM:88663680:sym#3137 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16082 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbd9af79/2406@23c56090, vm:-/-, stk:7@55b2a3a8, auth:7@2a32dca9/94@fd3a19b3", + "16082 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbd9af79/2406@23c56090, vm:-/-, stk:7@55b2a3a8, auth:7@2a32dca9/94@a5113457", "16083 pop VM:88663680:sym#3119 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16084 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2f21cbd9/2406@23c56090, vm:-/-, stk:6@b35a6566, auth:6@d88e8fbb/95@26acde25", + "16084 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2f21cbd9/2406@23c56090, vm:-/-, stk:6@b35a6566, auth:6@d88e8fbb/95@ae915f35", "16085 pop VM:88663680:sym#3101 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16086 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6ce4bcf/2406@23c56090, vm:-/-, stk:5@1bbfffbe, auth:5@6ead37c0/96@dd89fd26", + "16086 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6ce4bcf/2406@23c56090, vm:-/-, stk:5@1bbfffbe, auth:5@6ead37c0/96@745a841d", "16087 pop VM:88663680:sym#3083 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16088 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a245b422/2406@23c56090, vm:-/-, stk:4@67951471, auth:4@ed1f5aab/97@a253144a", + "16088 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a245b422/2406@23c56090, vm:-/-, stk:4@67951471, auth:4@ed1f5aab/97@fdfb757d", "16089 pop VM:88663680:sym#3065 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1609 call symbol_new_from_slice(14)": "cpu:213960137, mem:134237678", - "16090 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3aef1d2e/2406@23c56090, vm:-/-, stk:3@71ab7936, auth:3@dcf290c3/98@4238eb30", + "16090 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3aef1d2e/2406@23c56090, vm:-/-, stk:3@71ab7936, auth:3@dcf290c3/98@9ad8a9a3", "16091 pop VM:88663680:sym#3047 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16092 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e19ce980/2406@23c56090, vm:-/-, stk:2@feddf3e5, auth:2@5e055d6/99@26bbfe1f", + "16092 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e19ce980/2406@23c56090, vm:-/-, stk:2@feddf3e5, auth:2@5e055d6/99@176936ce", "16093 pop VM:88663680:sym#3029 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "16094 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@6f4ce447/2406@23c56090, vm:-/-, stk:1@1218fb88, auth:1@df5c796e/100@c37cdca0", + "16094 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@6f4ce447/2406@23c56090, vm:-/-, stk:1@1218fb88, auth:1@df5c796e/100@b81d37e6", "16095 pop VM:88663680:call -> Err(Error(Auth, InvalidAction))": " vm:1114112@a6f378b8/7@ae192e85", "16096 ret call -> Err(Error(Auth, InvalidAction))": " objs:-/2406@23c56090, vm:-/-, stk:-, auth:-/-", "16097 end": "cpu:440465597, mem:268812984, prngs:-/9b4a753, objs:-/2406@23c56090, vm:-/-, evt:-, store:-/102@aab421, foot:102@bb68e8c7, stk:-, auth:-/-", diff --git a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_serialization_depth_exceeded.json b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_serialization_depth_exceeded.json index 89ef9e2cb..bad6ac0ac 100644 --- a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_serialization_depth_exceeded.json +++ b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_when_serialization_depth_exceeded.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2011761, mem:1318326, objs:-/5@a60269d1, auth:1@6c2ade56/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2012447", - " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@525240f7", + " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@72b99d18", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2015602, mem:1318438, objs:-/6@a06c2cba", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2053467, mem:1319944, objs:-/7@77a0a1db, store:-/2@ca7bd8a8, foot:2@c7956e9e, auth:-/1@c716b1ea", " 13 call bytes_new_from_slice(1723)": "cpu:2053722, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4053930, mem:2637748, objs:-/12@546c0606, auth:1@a7879343/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4054616", - " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@c690470a", + " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@a19a51b4", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4057771, mem:2637860, objs:-/13@8641253d", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4099512, mem:2639552, objs:-/14@20711f65, store:-/3@cd31c995, foot:3@fb973c1e, auth:-/1@f39d17e5", " 25 call symbol_new_from_slice(14)": " auth:-/-", @@ -285,7 +285,7 @@ " 283 call serialize_to_bytes(Vec(obj#267))": "cpu:10630608, mem:6605029, objs:105@5f8527e8/134@82c4e4ba, stk:2@a52674e7", " 284 ret serialize_to_bytes -> Err(Error(Value, UnexpectedType))": "cpu:10807009, mem:6613029", " 285 pop VM:88663680:sym#63 -> Err(Error(Value, UnexpectedType))": " vm:1114112@24decc95/7@ae192e85", - " 286 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@82a2e941/134@82c4e4ba, vm:-/-, store:-/3@e79346ad, stk:1@877e03bb, auth:1@c6a8e2e4/1@25ac8cd6", + " 286 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@82a2e941/134@82c4e4ba, vm:-/-, store:-/3@e79346ad, stk:1@877e03bb, auth:1@c6a8e2e4/1@7c4ee7fb", " 287 pop VM:88663680:call -> Err(Error(Auth, InvalidAction))": " vm:1114112@a6f378b8/7@ae192e85", " 288 ret call -> Err(Error(Auth, InvalidAction))": " objs:-/134@82c4e4ba, vm:-/-, stk:-, auth:-/-", " 289 end": "cpu:10807009, mem:6613029, prngs:-/9b4a753, objs:-/134@82c4e4ba, vm:-/-, evt:-, store:-/3@e79346ad, foot:3@fb973c1e, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_deep_xdr_deserialization.json b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_deep_xdr_deserialization.json index 89ebf4c3d..191053373 100644 --- a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_deep_xdr_deserialization.json +++ b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_deep_xdr_deserialization.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2011761, mem:1318326, objs:-/5@a60269d1, auth:1@6c2ade56/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2012447", - " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@525240f7", + " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@72b99d18", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2015602, mem:1318438, objs:-/6@a06c2cba", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2053467, mem:1319944, objs:-/7@77a0a1db, store:-/2@ca7bd8a8, foot:2@c7956e9e, auth:-/1@c716b1ea", " 13 call bytes_new_from_slice(1723)": "cpu:2053722, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4053930, mem:2637748, objs:-/12@546c0606, auth:1@a7879343/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4054616", - " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@c690470a", + " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@a19a51b4", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4057771, mem:2637860, objs:-/13@8641253d", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4099512, mem:2639552, objs:-/14@20711f65, store:-/3@cd31c995, foot:3@fb973c1e, auth:-/1@f39d17e5", " 25 call bytes_new_from_slice(1723)": "cpu:4099767, auth:-/-", @@ -33,7 +33,7 @@ " 31 call create_contract(Address(obj#33), Bytes(obj#31), Bytes(obj#35))": "", " 32 call obj_cmp(Address(obj#37), Address(obj#33))": "cpu:6099975, mem:3957356, objs:-/19@51e48355, auth:1@cbbd7837/-", " 33 ret obj_cmp -> Ok(0)": "cpu:6100661", - " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@a4cf6e03", + " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@47f29939", " 35 ret get_ledger_network_id -> Ok(Bytes(obj#39))": "cpu:6103816, mem:3957468, objs:-/20@81732572", " 36 ret create_contract -> Ok(Address(obj#41))": "cpu:6144911, mem:3959346, objs:-/21@69ad5c25, store:-/4@b3a15027, foot:4@fa0f6bfc, auth:-/1@f7095008", " 37 call bytes_new_from_slice(1723)": "cpu:6145166, auth:-/-", @@ -45,7 +45,7 @@ " 43 call create_contract(Address(obj#47), Bytes(obj#45), Bytes(obj#49))": "", " 44 call obj_cmp(Address(obj#51), Address(obj#47))": "cpu:8145395, mem:5277150, objs:-/26@a092b5f, auth:1@67261b2f/-", " 45 ret obj_cmp -> Ok(0)": "cpu:8146081", - " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@11a86388", + " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@24809fc3", " 47 ret get_ledger_network_id -> Ok(Bytes(obj#53))": "cpu:8149236, mem:5277262, objs:-/27@a7bff74e", " 48 ret create_contract -> Ok(Address(obj#55))": "cpu:8197003, mem:5279326, objs:-/28@9670d0cc, store:-/5@58e9c9eb, foot:5@81d1a3bf, auth:-/1@83ee389", " 49 call bytes_new_from_slice(1723)": "cpu:8197258, auth:-/-", @@ -57,7 +57,7 @@ " 55 call create_contract(Address(obj#61), Bytes(obj#59), Bytes(obj#63))": "", " 56 call obj_cmp(Address(obj#65), Address(obj#61))": "cpu:10197487, mem:6597130, objs:-/33@9dddfe41, auth:1@2aa08219/-", " 57 ret obj_cmp -> Ok(0)": "cpu:10198173", - " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@c0063591", + " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@63a8e160", " 59 ret get_ledger_network_id -> Ok(Bytes(obj#67))": "cpu:10201328, mem:6597242, objs:-/34@6254c4ce", " 60 ret create_contract -> Ok(Address(obj#69))": "cpu:10249147, mem:6599492, objs:-/35@be977224, store:-/6@889e1830, foot:6@364e4b9c, auth:-/1@47f4d18a", " 61 call bytes_new_from_slice(1723)": "cpu:10249402, auth:-/-", @@ -69,7 +69,7 @@ " 67 call create_contract(Address(obj#75), Bytes(obj#73), Bytes(obj#77))": "", " 68 call obj_cmp(Address(obj#79), Address(obj#75))": "cpu:12249631, mem:7917296, objs:-/40@2f55f569, auth:1@e8341f65/-", " 69 ret obj_cmp -> Ok(0)": "cpu:12250317", - " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@ebc115d9", + " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@9c248d", " 71 ret get_ledger_network_id -> Ok(Bytes(obj#81))": "cpu:12253472, mem:7917408, objs:-/41@b3ed0b57", " 72 ret create_contract -> Ok(Address(obj#83))": "cpu:12303367, mem:7919844, objs:-/42@cd5ce2c6, store:-/7@b061db62, foot:7@9320c72c, auth:-/1@1b3d937c", " 73 call bytes_new_from_slice(1723)": "cpu:12303622, auth:-/-", @@ -81,7 +81,7 @@ " 79 call create_contract(Address(obj#89), Bytes(obj#87), Bytes(obj#91))": "", " 80 call obj_cmp(Address(obj#93), Address(obj#89))": "cpu:14303851, mem:9237648, objs:-/47@92c2cfa5, auth:1@b20998ae/-", " 81 ret obj_cmp -> Ok(0)": "cpu:14304537", - " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@59dea197", + " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@f80b6a67", " 83 ret get_ledger_network_id -> Ok(Bytes(obj#95))": "cpu:14307692, mem:9237760, objs:-/48@149b423f", " 84 ret create_contract -> Ok(Address(obj#97))": "cpu:14358717, mem:9240382, objs:-/49@3bf0a33b, store:-/8@786ebbf2, foot:8@ee264d76, auth:-/1@221f74c6", " 85 call bytes_new_from_slice(1723)": "cpu:14358972, auth:-/-", @@ -93,7 +93,7 @@ " 91 call create_contract(Address(obj#103), Bytes(obj#101), Bytes(obj#105))": "", " 92 call obj_cmp(Address(obj#107), Address(obj#103))": "cpu:16359220, mem:10558186, objs:-/54@da02b960, auth:1@48d6a5b6/-", " 93 ret obj_cmp -> Ok(0)": "cpu:16359906", - " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@219d787c", + " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@81156bb8", " 95 ret get_ledger_network_id -> Ok(Bytes(obj#109))": "cpu:16363061, mem:10558298, objs:-/55@bb3ae225", " 96 ret create_contract -> Ok(Address(obj#111))": "cpu:16412374, mem:10561106, objs:-/56@51ce6ca1, store:-/9@f38d0f95, foot:9@5c828c77, auth:-/1@a42343f5", " 97 call bytes_new_from_slice(1723)": "cpu:16412629, auth:-/-", @@ -105,7 +105,7 @@ " 103 call create_contract(Address(obj#117), Bytes(obj#115), Bytes(obj#119))": "", " 104 call obj_cmp(Address(obj#121), Address(obj#117))": "cpu:18412877, mem:11878910, objs:-/61@61c34d4e, auth:1@f96e0eaf/-", " 105 ret obj_cmp -> Ok(0)": "cpu:18413563", - " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@cc6b59fa", + " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@8cefe257", " 107 ret get_ledger_network_id -> Ok(Bytes(obj#123))": "cpu:18416718, mem:11879022, objs:-/62@99cabf3b", " 108 ret create_contract -> Ok(Address(obj#125))": "cpu:18472685, mem:11882016, objs:-/63@7f4b322d, store:-/10@ef434c8d, foot:10@317c61e3, auth:-/1@d0418fbc", " 109 call bytes_new_from_slice(1723)": "cpu:18472940, auth:-/-", @@ -117,7 +117,7 @@ " 115 call create_contract(Address(obj#131), Bytes(obj#129), Bytes(obj#133))": "", " 116 call obj_cmp(Address(obj#135), Address(obj#131))": "cpu:20473188, mem:13199820, objs:-/68@7f9f7f94, auth:1@5cc0479e/-", " 117 ret obj_cmp -> Ok(0)": "cpu:20473874", - " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@b017d899", + " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@d336881f", " 119 ret get_ledger_network_id -> Ok(Bytes(obj#137))": "cpu:20477029, mem:13199932, objs:-/69@80e69e15", " 120 ret create_contract -> Ok(Address(obj#139))": "cpu:20534058, mem:13203112, objs:-/70@1ab41456, store:-/11@e6b97191, foot:11@bd373101, auth:-/1@6fd7cdbe", " 121 call bytes_new_from_slice(1723)": "cpu:20534313, auth:-/-", @@ -129,7 +129,7 @@ " 127 call create_contract(Address(obj#145), Bytes(obj#143), Bytes(obj#147))": "", " 128 call obj_cmp(Address(obj#149), Address(obj#145))": "cpu:22534561, mem:14520916, objs:-/75@942af2dd, auth:1@4d46cea6/-", " 129 ret obj_cmp -> Ok(0)": "cpu:22535247", - " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@c791f0c8", + " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@7324855f", " 131 ret get_ledger_network_id -> Ok(Bytes(obj#151))": "cpu:22538402, mem:14521028, objs:-/76@f11550b8", " 132 ret create_contract -> Ok(Address(obj#153))": "cpu:22596497, mem:14524394, objs:-/77@9f3fd10e, store:-/12@7c2f9ba3, foot:12@35d2fc7a, auth:-/1@3eabf35c", " 133 call bytes_new_from_slice(1723)": "cpu:22596752, auth:-/-", @@ -141,7 +141,7 @@ " 139 call create_contract(Address(obj#159), Bytes(obj#157), Bytes(obj#161))": "", " 140 call obj_cmp(Address(obj#163), Address(obj#159))": "cpu:24597000, mem:15842198, objs:-/82@21bbc84c, auth:1@9e1b78d/-", " 141 ret obj_cmp -> Ok(0)": "cpu:24597686", - " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@6f759f1a", + " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@44fbf6bc", " 143 ret get_ledger_network_id -> Ok(Bytes(obj#165))": "cpu:24600841, mem:15842310, objs:-/83@e08739a8", " 144 ret create_contract -> Ok(Address(obj#167))": "cpu:24659996, mem:15845862, objs:-/84@ae4d6e4e, store:-/13@2b941c36, foot:13@62a1620d, auth:-/1@aee68f92", " 145 call bytes_new_from_slice(1723)": "cpu:24660251, auth:-/-", @@ -153,7 +153,7 @@ " 151 call create_contract(Address(obj#173), Bytes(obj#171), Bytes(obj#175))": "", " 152 call obj_cmp(Address(obj#177), Address(obj#173))": "cpu:26660499, mem:17163666, objs:-/89@5858b5f0, auth:1@445de93b/-", " 153 ret obj_cmp -> Ok(0)": "cpu:26661185", - " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@3ba9ffd2", + " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@ca57c8bc", " 155 ret get_ledger_network_id -> Ok(Bytes(obj#179))": "cpu:26664340, mem:17163778, objs:-/90@5826fb63", " 156 ret create_contract -> Ok(Address(obj#181))": "cpu:26722783, mem:17167516, objs:-/91@cd1cc65f, store:-/14@c33862ef, foot:14@4ba8b225, auth:-/1@617a1eda", " 157 call bytes_new_from_slice(1723)": "cpu:26723038, auth:-/-", @@ -165,7 +165,7 @@ " 163 call create_contract(Address(obj#187), Bytes(obj#185), Bytes(obj#189))": "", " 164 call obj_cmp(Address(obj#191), Address(obj#187))": "cpu:28723286, mem:18485320, objs:-/96@d11f253b, auth:1@225cfc41/-", " 165 ret obj_cmp -> Ok(0)": "cpu:28723972", - " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@2cc903b5", + " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@a1637ff7", " 167 ret get_ledger_network_id -> Ok(Bytes(obj#193))": "cpu:28727127, mem:18485432, objs:-/97@dd3834b9", " 168 ret create_contract -> Ok(Address(obj#195))": "cpu:28788408, mem:18489356, objs:-/98@ddc288ce, store:-/15@8f2e00df, foot:15@85a5128f, auth:-/1@84c703c7", " 169 call bytes_new_from_slice(1723)": "cpu:28788663, auth:-/-", @@ -177,7 +177,7 @@ " 175 call create_contract(Address(obj#201), Bytes(obj#199), Bytes(obj#203))": "", " 176 call obj_cmp(Address(obj#205), Address(obj#201))": "cpu:30788911, mem:19807160, objs:-/103@6ee6745e, auth:1@f8067266/-", " 177 ret obj_cmp -> Ok(0)": "cpu:30789597", - " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@1c1b5ee3", + " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@e817f19c", " 179 ret get_ledger_network_id -> Ok(Bytes(obj#207))": "cpu:30792752, mem:19807272, objs:-/104@da675632", " 180 ret create_contract -> Ok(Address(obj#209))": "cpu:30855171, mem:19811382, objs:-/105@3c250e80, store:-/16@56a18dab, foot:16@3031c757, auth:-/1@6c77c0c9", " 181 call bytes_new_from_slice(1723)": "cpu:30855426, auth:-/-", @@ -189,7 +189,7 @@ " 187 call create_contract(Address(obj#215), Bytes(obj#213), Bytes(obj#217))": "", " 188 call obj_cmp(Address(obj#219), Address(obj#215))": "cpu:32855695, mem:21129186, objs:-/110@3460445f, auth:1@6f395edd/-", " 189 ret obj_cmp -> Ok(0)": "cpu:32856381", - " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@d3530f4c", + " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@1357ae2d", " 191 ret get_ledger_network_id -> Ok(Bytes(obj#221))": "cpu:32859536, mem:21129298, objs:-/111@88602a33", " 192 ret create_contract -> Ok(Address(obj#223))": "cpu:32925835, mem:21133594, objs:-/112@1a30dd19, store:-/17@a1cdad8, foot:17@e114d7d6, auth:-/1@37251ff7", " 193 call bytes_new_from_slice(1723)": "cpu:32926090, auth:-/-", @@ -201,7 +201,7 @@ " 199 call create_contract(Address(obj#229), Bytes(obj#227), Bytes(obj#231))": "", " 200 call obj_cmp(Address(obj#233), Address(obj#229))": "cpu:34926359, mem:22451398, objs:-/117@f769caeb, auth:1@93079846/-", " 201 ret obj_cmp -> Ok(0)": "cpu:34927045", - " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@80a698b9", + " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@507bf132", " 203 ret get_ledger_network_id -> Ok(Bytes(obj#235))": "cpu:34930200, mem:22451510, objs:-/118@a79d010f", " 204 ret create_contract -> Ok(Address(obj#237))": "cpu:34991975, mem:22455992, objs:-/119@faf87716, store:-/18@284aadf3, foot:18@4481d0f6, auth:-/1@79adba34", " 205 call bytes_new_from_slice(1723)": "cpu:34992230, auth:-/-", @@ -213,7 +213,7 @@ " 211 call create_contract(Address(obj#243), Bytes(obj#241), Bytes(obj#245))": "", " 212 call obj_cmp(Address(obj#247), Address(obj#243))": "cpu:36992499, mem:23773796, objs:-/124@ddd780c4, auth:1@3e29297a/-", " 213 ret obj_cmp -> Ok(0)": "cpu:36993185", - " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@e22dec68", + " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@9a48546", " 215 ret get_ledger_network_id -> Ok(Bytes(obj#249))": "cpu:36996340, mem:23773908, objs:-/125@510120e0", " 216 ret create_contract -> Ok(Address(obj#251))": "cpu:37060193, mem:23778576, objs:-/126@c484c412, store:-/19@5d26a578, foot:19@fbbb733f, auth:-/1@43f44fbb", " 217 call bytes_new_from_slice(1723)": "cpu:37060448, auth:-/-", @@ -225,7 +225,7 @@ " 223 call create_contract(Address(obj#257), Bytes(obj#255), Bytes(obj#259))": "", " 224 call obj_cmp(Address(obj#261), Address(obj#257))": "cpu:39060717, mem:25096380, objs:-/131@e4c001b6, auth:1@399056d1/-", " 225 ret obj_cmp -> Ok(0)": "cpu:39061403", - " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@fc1a6912", + " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@20d8425c", " 227 ret get_ledger_network_id -> Ok(Bytes(obj#263))": "cpu:39064558, mem:25096492, objs:-/132@18805d31", " 228 ret create_contract -> Ok(Address(obj#265))": "cpu:39131253, mem:25101346, objs:-/133@daaee86c, store:-/20@6d147ad1, foot:20@f939d50c, auth:-/1@a9273ecb", " 229 call bytes_new_from_slice(1723)": "cpu:39131508, auth:-/-", @@ -237,7 +237,7 @@ " 235 call create_contract(Address(obj#271), Bytes(obj#269), Bytes(obj#273))": "", " 236 call obj_cmp(Address(obj#275), Address(obj#271))": "cpu:41131777, mem:26419150, objs:-/138@8a39b9a5, auth:1@aea0b0c0/-", " 237 ret obj_cmp -> Ok(0)": "cpu:41132463", - " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@f1da0dd5", + " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@e3b3557c", " 239 ret get_ledger_network_id -> Ok(Bytes(obj#277))": "cpu:41135618, mem:26419262, objs:-/139@ce76e6fb", " 240 ret create_contract -> Ok(Address(obj#279))": "cpu:41205155, mem:26424302, objs:-/140@737416ce, store:-/21@cac04bf9, foot:21@435f9792, auth:-/1@48a20b51", " 241 call bytes_new_from_slice(1723)": "cpu:41205410, auth:-/-", @@ -249,7 +249,7 @@ " 247 call create_contract(Address(obj#285), Bytes(obj#283), Bytes(obj#287))": "", " 248 call obj_cmp(Address(obj#289), Address(obj#285))": "cpu:43205679, mem:27742106, objs:-/145@74331567, auth:1@330b1c67/-", " 249 ret obj_cmp -> Ok(0)": "cpu:43206365", - " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@9a165117", + " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@c480bd80", " 251 ret get_ledger_network_id -> Ok(Bytes(obj#291))": "cpu:43209520, mem:27742218, objs:-/146@d168c7a7", " 252 ret create_contract -> Ok(Address(obj#293))": "cpu:43278343, mem:27747444, objs:-/147@16f6005c, store:-/22@33195a82, foot:22@b33a0417, auth:-/1@b7d59a15", " 253 call bytes_new_from_slice(1723)": "cpu:43278598, auth:-/-", @@ -261,7 +261,7 @@ " 259 call create_contract(Address(obj#299), Bytes(obj#297), Bytes(obj#301))": "", " 260 call obj_cmp(Address(obj#303), Address(obj#299))": "cpu:45278867, mem:29065248, objs:-/152@e53b83e3, auth:1@785996a7/-", " 261 ret obj_cmp -> Ok(0)": "cpu:45279553", - " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@fe7b423e", + " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@7f8bbf70", " 263 ret get_ledger_network_id -> Ok(Bytes(obj#305))": "cpu:45282708, mem:29065360, objs:-/153@9f17ddc6", " 264 ret create_contract -> Ok(Address(obj#307))": "cpu:45355387, mem:29070772, objs:-/154@cf228652, store:-/23@300f245c, foot:23@27540f12, auth:-/1@cefa2a75", " 265 call bytes_new_from_slice(1723)": "cpu:45355642, auth:-/-", @@ -273,7 +273,7 @@ " 271 call create_contract(Address(obj#313), Bytes(obj#311), Bytes(obj#315))": "", " 272 call obj_cmp(Address(obj#317), Address(obj#313))": "cpu:47355911, mem:30388576, objs:-/159@63a78bd4, auth:1@da0afee7/-", " 273 ret obj_cmp -> Ok(0)": "cpu:47356597", - " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@9dbef6d4", + " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@6aa8b510", " 275 ret get_ledger_network_id -> Ok(Bytes(obj#319))": "cpu:47359752, mem:30388688, objs:-/160@4af09aee", " 276 ret create_contract -> Ok(Address(obj#321))": "cpu:47430705, mem:30394286, objs:-/161@92ee88ed, store:-/24@101e4564, foot:24@c9aaea41, auth:-/1@84386fec", " 277 call bytes_new_from_slice(1723)": "cpu:47430960, auth:-/-", @@ -285,7 +285,7 @@ " 283 call create_contract(Address(obj#327), Bytes(obj#325), Bytes(obj#329))": "", " 284 call obj_cmp(Address(obj#331), Address(obj#327))": "cpu:49431229, mem:31712090, objs:-/166@7fccca03, auth:1@aa9fae3a/-", " 285 ret obj_cmp -> Ok(0)": "cpu:49431915", - " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@f33a894d", + " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@d871ba2c", " 287 ret get_ledger_network_id -> Ok(Bytes(obj#333))": "cpu:49435070, mem:31712202, objs:-/167@a32ae8a9", " 288 ret create_contract -> Ok(Address(obj#335))": "cpu:49509879, mem:31717986, objs:-/168@2aafa42f, store:-/25@8e92a30e, foot:25@3b46cff6, auth:-/1@96704b35", " 289 call bytes_new_from_slice(1723)": "cpu:49510134, auth:-/-", @@ -297,7 +297,7 @@ " 295 call create_contract(Address(obj#341), Bytes(obj#339), Bytes(obj#343))": "", " 296 call obj_cmp(Address(obj#345), Address(obj#341))": "cpu:51510403, mem:33035790, objs:-/173@81268679, auth:1@3dec2490/-", " 297 ret obj_cmp -> Ok(0)": "cpu:51511089", - " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@71ebc84a", + " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@121df96c", " 299 ret get_ledger_network_id -> Ok(Bytes(obj#347))": "cpu:51514244, mem:33035902, objs:-/174@86b62e4b", " 300 ret create_contract -> Ok(Address(obj#349))": "cpu:51590119, mem:33041872, objs:-/175@1dabe68a, store:-/26@f151c33b, foot:26@1cf63df0, auth:-/1@302de960", " 301 call bytes_new_from_slice(1723)": "cpu:51590374, auth:-/-", @@ -309,7 +309,7 @@ " 307 call create_contract(Address(obj#355), Bytes(obj#353), Bytes(obj#357))": "", " 308 call obj_cmp(Address(obj#359), Address(obj#355))": "cpu:53590643, mem:34359676, objs:-/180@8b3d9cc8, auth:1@6b4de48e/-", " 309 ret obj_cmp -> Ok(0)": "cpu:53591329", - " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@e71ff6d6", + " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@3202ab93", " 311 ret get_ledger_network_id -> Ok(Bytes(obj#361))": "cpu:53594484, mem:34359788, objs:-/181@7d2def3b", " 312 ret create_contract -> Ok(Address(obj#363))": "cpu:53671421, mem:34365944, objs:-/182@4ac4bd9e, store:-/27@8340ee6d, foot:27@fba9c4de, auth:-/1@95751d48", " 313 call bytes_new_from_slice(1723)": "cpu:53671676, auth:-/-", @@ -321,7 +321,7 @@ " 319 call create_contract(Address(obj#369), Bytes(obj#367), Bytes(obj#371))": "", " 320 call obj_cmp(Address(obj#373), Address(obj#369))": "cpu:55671945, mem:35683748, objs:-/187@41f59b8a, auth:1@6b4c8d3e/-", " 321 ret obj_cmp -> Ok(0)": "cpu:55672631", - " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@1287fb5c", + " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@a8b01321", " 323 ret get_ledger_network_id -> Ok(Bytes(obj#375))": "cpu:55675786, mem:35683860, objs:-/188@acf77cba", " 324 ret create_contract -> Ok(Address(obj#377))": "cpu:55753787, mem:35690202, objs:-/189@4ae78034, store:-/28@fb432119, foot:28@dbaee220, auth:-/1@ebc38f0b", " 325 call bytes_new_from_slice(1723)": "cpu:55754042, auth:-/-", @@ -333,7 +333,7 @@ " 331 call create_contract(Address(obj#383), Bytes(obj#381), Bytes(obj#385))": "", " 332 call obj_cmp(Address(obj#387), Address(obj#383))": "cpu:57754311, mem:37008006, objs:-/194@41937dac, auth:1@6a2c4396/-", " 333 ret obj_cmp -> Ok(0)": "cpu:57754997", - " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@6e63ce88", + " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@d85d3c27", " 335 ret get_ledger_network_id -> Ok(Bytes(obj#389))": "cpu:57758152, mem:37008118, objs:-/195@c7b31bd4", " 336 ret create_contract -> Ok(Address(obj#391))": "cpu:57833659, mem:37014646, objs:-/196@630be1a, store:-/29@f2b2ba33, foot:29@86207dba, auth:-/1@8030be25", " 337 call bytes_new_from_slice(1723)": "cpu:57833914, auth:-/-", @@ -345,7 +345,7 @@ " 343 call create_contract(Address(obj#397), Bytes(obj#395), Bytes(obj#399))": "", " 344 call obj_cmp(Address(obj#401), Address(obj#397))": "cpu:59834183, mem:38332450, objs:-/201@e7013f13, auth:1@efff116e/-", " 345 ret obj_cmp -> Ok(0)": "cpu:59834869", - " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@717266a3", + " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@6b349df9", " 347 ret get_ledger_network_id -> Ok(Bytes(obj#403))": "cpu:59838024, mem:38332562, objs:-/202@b6091744", " 348 ret create_contract -> Ok(Address(obj#405))": "cpu:59918151, mem:38339276, objs:-/203@fcd408de, store:-/30@7b349abd, foot:30@39863402, auth:-/1@eed4bb1e", " 349 call bytes_new_from_slice(1723)": "cpu:59918406, auth:-/-", @@ -357,7 +357,7 @@ " 355 call create_contract(Address(obj#411), Bytes(obj#409), Bytes(obj#413))": "", " 356 call obj_cmp(Address(obj#415), Address(obj#411))": "cpu:61918675, mem:39657080, objs:-/208@bef8f250, auth:1@4d2b336a/-", " 357 ret obj_cmp -> Ok(0)": "cpu:61919361", - " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@c6b91a0a", + " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@74393111", " 359 ret get_ledger_network_id -> Ok(Bytes(obj#417))": "cpu:61922516, mem:39657192, objs:-/209@5a6a7d5d", " 360 ret create_contract -> Ok(Address(obj#419))": "cpu:62001929, mem:39664092, objs:-/210@1ac1704e, store:-/31@4fa3e91b, foot:31@305062e7, auth:-/1@7a19b357", " 361 call bytes_new_from_slice(1723)": "cpu:62002184, auth:-/-", @@ -369,7 +369,7 @@ " 367 call create_contract(Address(obj#425), Bytes(obj#423), Bytes(obj#427))": "", " 368 call obj_cmp(Address(obj#429), Address(obj#425))": "cpu:64002453, mem:40981896, objs:-/215@a1746993, auth:1@f7013137/-", " 369 ret obj_cmp -> Ok(0)": "cpu:64003139", - " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@1c77542", + " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@53b8d019", " 371 ret get_ledger_network_id -> Ok(Bytes(obj#431))": "cpu:64006294, mem:40982008, objs:-/216@cf95d889", " 372 ret create_contract -> Ok(Address(obj#433))": "cpu:64088615, mem:40989094, objs:-/217@99f04015, store:-/32@3ddbcca8, foot:32@e907b904, auth:-/1@ef6b177", " 373 call bytes_new_from_slice(1723)": "cpu:64088870, auth:-/-", @@ -381,7 +381,7 @@ " 379 call create_contract(Address(obj#439), Bytes(obj#437), Bytes(obj#441))": "", " 380 call obj_cmp(Address(obj#443), Address(obj#439))": "cpu:66089158, mem:42306898, objs:-/222@9918a39f, auth:1@da3c47d1/-", " 381 ret obj_cmp -> Ok(0)": "cpu:66089844", - " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@2b4da665", + " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@738bcb6e", " 383 ret get_ledger_network_id -> Ok(Bytes(obj#445))": "cpu:66092999, mem:42307010, objs:-/223@f5510b1", " 384 ret create_contract -> Ok(Address(obj#447))": "cpu:66176402, mem:42314282, objs:-/224@29135409, store:-/33@3da44f4f, foot:33@76d72a8d, auth:-/1@d0c5ccbe", " 385 call bytes_new_from_slice(1723)": "cpu:66176657, auth:-/-", @@ -393,7 +393,7 @@ " 391 call create_contract(Address(obj#453), Bytes(obj#451), Bytes(obj#455))": "", " 392 call obj_cmp(Address(obj#457), Address(obj#453))": "cpu:68176945, mem:43632086, objs:-/229@843f1f78, auth:1@fe39debc/-", " 393 ret obj_cmp -> Ok(0)": "cpu:68177631", - " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@7ae07493", + " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@cf888e58", " 395 ret get_ledger_network_id -> Ok(Bytes(obj#459))": "cpu:68180786, mem:43632198, objs:-/230@87253b5a", " 396 ret create_contract -> Ok(Address(obj#461))": "cpu:68263477, mem:43639656, objs:-/231@dfe2f621, store:-/34@26269e2a, foot:34@db6f722c, auth:-/1@c5425e98", " 397 call bytes_new_from_slice(1723)": "cpu:68263732, auth:-/-", @@ -405,7 +405,7 @@ " 403 call create_contract(Address(obj#467), Bytes(obj#465), Bytes(obj#469))": "", " 404 call obj_cmp(Address(obj#471), Address(obj#467))": "cpu:70264020, mem:44957460, objs:-/236@8e491acb, auth:1@8758e2be/-", " 405 ret obj_cmp -> Ok(0)": "cpu:70264706", - " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@402732e1", + " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@653e6cb8", " 407 ret get_ledger_network_id -> Ok(Bytes(obj#473))": "cpu:70267861, mem:44957572, objs:-/237@e891750f", " 408 ret create_contract -> Ok(Address(obj#475))": "cpu:70354406, mem:44965216, objs:-/238@3c9f9d08, store:-/35@be282ec7, foot:35@ad713040, auth:-/1@c2518348", " 409 call bytes_new_from_slice(1723)": "cpu:70354661, auth:-/-", @@ -417,7 +417,7 @@ " 415 call create_contract(Address(obj#481), Bytes(obj#479), Bytes(obj#483))": "", " 416 call obj_cmp(Address(obj#485), Address(obj#481))": "cpu:72354949, mem:46283020, objs:-/243@f3039fd5, auth:1@7b318976/-", " 417 ret obj_cmp -> Ok(0)": "cpu:72355635", - " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@1e553952", + " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@c257e53", " 419 ret get_ledger_network_id -> Ok(Bytes(obj#487))": "cpu:72358790, mem:46283132, objs:-/244@cdf88cce", " 420 ret create_contract -> Ok(Address(obj#489))": "cpu:72445387, mem:46290962, objs:-/245@cd6fd0a6, store:-/36@e78fd4ec, foot:36@8d6c62c1, auth:-/1@9be18b7d", " 421 call bytes_new_from_slice(1723)": "cpu:72445642, auth:-/-", @@ -429,7 +429,7 @@ " 427 call create_contract(Address(obj#495), Bytes(obj#493), Bytes(obj#497))": "", " 428 call obj_cmp(Address(obj#499), Address(obj#495))": "cpu:74445930, mem:47608766, objs:-/250@22bd910b, auth:1@740ab5ad/-", " 429 ret obj_cmp -> Ok(0)": "cpu:74446616", - " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@df062d8f", + " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@69a0652", " 431 ret get_ledger_network_id -> Ok(Bytes(obj#501))": "cpu:74449771, mem:47608878, objs:-/251@d6b7a9b4", " 432 ret create_contract -> Ok(Address(obj#503))": "cpu:74535650, mem:47616894, objs:-/252@d5487903, store:-/37@fc568a97, foot:37@409c33df, auth:-/1@d536b686", " 433 call bytes_new_from_slice(1723)": "cpu:74535905, auth:-/-", @@ -441,7 +441,7 @@ " 439 call create_contract(Address(obj#509), Bytes(obj#507), Bytes(obj#511))": "", " 440 call obj_cmp(Address(obj#513), Address(obj#509))": "cpu:76536193, mem:48934698, objs:-/257@2c83362e, auth:1@3a400b33/-", " 441 ret obj_cmp -> Ok(0)": "cpu:76536879", - " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@7fd0cf57", + " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@4a2d81a0", " 443 ret get_ledger_network_id -> Ok(Bytes(obj#515))": "cpu:76540034, mem:48934810, objs:-/258@ac579d6d", " 444 ret create_contract -> Ok(Address(obj#517))": "cpu:76628757, mem:48943012, objs:-/259@73d4502, store:-/38@2603f041, foot:38@4169d237, auth:-/1@39e1337c", " 445 call bytes_new_from_slice(1723)": "cpu:76629012, auth:-/-", @@ -453,7 +453,7 @@ " 451 call create_contract(Address(obj#523), Bytes(obj#521), Bytes(obj#525))": "", " 452 call obj_cmp(Address(obj#527), Address(obj#523))": "cpu:78629300, mem:50260816, objs:-/264@e1d329e1, auth:1@26e06ff6/-", " 453 ret obj_cmp -> Ok(0)": "cpu:78629986", - " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@17ee9ef3", + " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@b06070a3", " 455 ret get_ledger_network_id -> Ok(Bytes(obj#529))": "cpu:78633141, mem:50260928, objs:-/265@bafd1a98", " 456 ret create_contract -> Ok(Address(obj#531))": "cpu:78725718, mem:50269316, objs:-/266@1b9213fc, store:-/39@b90d28c3, foot:39@d7e7d033, auth:-/1@b133ac19", " 457 call bytes_new_from_slice(1723)": "cpu:78725973, auth:-/-", @@ -465,7 +465,7 @@ " 463 call create_contract(Address(obj#537), Bytes(obj#535), Bytes(obj#539))": "", " 464 call obj_cmp(Address(obj#541), Address(obj#537))": "cpu:80726261, mem:51587120, objs:-/271@24ad366e, auth:1@b368d5a8/-", " 465 ret obj_cmp -> Ok(0)": "cpu:80726947", - " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@7a22d694", + " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@abb50537", " 467 ret get_ledger_network_id -> Ok(Bytes(obj#543))": "cpu:80730102, mem:51587232, objs:-/272@879628e2", " 468 ret create_contract -> Ok(Address(obj#545))": "cpu:80820955, mem:51595806, objs:-/273@d183d07c, store:-/40@8c6440e7, foot:40@4583666c, auth:-/1@7e5706f4", " 469 call bytes_new_from_slice(1723)": "cpu:80821210, auth:-/-", @@ -477,7 +477,7 @@ " 475 call create_contract(Address(obj#551), Bytes(obj#549), Bytes(obj#553))": "", " 476 call obj_cmp(Address(obj#555), Address(obj#551))": "cpu:82821498, mem:52913610, objs:-/278@7e43461c, auth:1@5ff13591/-", " 477 ret obj_cmp -> Ok(0)": "cpu:82822184", - " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@bb660b30", + " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@ef99d99e", " 479 ret get_ledger_network_id -> Ok(Bytes(obj#557))": "cpu:82825339, mem:52913722, objs:-/279@7d5b5e82", " 480 ret create_contract -> Ok(Address(obj#559))": "cpu:82917254, mem:52922482, objs:-/280@a2539e9f, store:-/41@f828b437, foot:41@fe76eb0e, auth:-/1@c3116c2e", " 481 call bytes_new_from_slice(1723)": "cpu:82917509, auth:-/-", @@ -489,7 +489,7 @@ " 487 call create_contract(Address(obj#565), Bytes(obj#563), Bytes(obj#567))": "", " 488 call obj_cmp(Address(obj#569), Address(obj#565))": "cpu:84917797, mem:54240286, objs:-/285@27a76f48, auth:1@6bc42dbe/-", " 489 ret obj_cmp -> Ok(0)": "cpu:84918483", - " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@8487d51b", + " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@350fe930", " 491 ret get_ledger_network_id -> Ok(Bytes(obj#571))": "cpu:84921638, mem:54240398, objs:-/286@604a8064", " 492 ret create_contract -> Ok(Address(obj#573))": "cpu:85014619, mem:54249344, objs:-/287@5335059f, store:-/42@29905e2d, foot:42@331e35d, auth:-/1@fcc81056", " 493 call bytes_new_from_slice(1723)": "cpu:85014874, auth:-/-", @@ -501,7 +501,7 @@ " 499 call create_contract(Address(obj#579), Bytes(obj#577), Bytes(obj#581))": "", " 500 call obj_cmp(Address(obj#583), Address(obj#579))": "cpu:87015162, mem:55567148, objs:-/292@cae8baf1, auth:1@192a37a7/-", " 501 ret obj_cmp -> Ok(0)": "cpu:87015848", - " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@d0cf342a", + " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@92f90a5c", " 503 ret get_ledger_network_id -> Ok(Bytes(obj#585))": "cpu:87019003, mem:55567260, objs:-/293@e43c78b4", " 504 ret create_contract -> Ok(Address(obj#587))": "cpu:87113044, mem:55576392, objs:-/294@bb1ddf18, store:-/43@914b7ccb, foot:43@41d98300, auth:-/1@9dd1b742", " 505 call bytes_new_from_slice(1723)": "cpu:87113299, auth:-/-", @@ -513,7 +513,7 @@ " 511 call create_contract(Address(obj#593), Bytes(obj#591), Bytes(obj#595))": "", " 512 call obj_cmp(Address(obj#597), Address(obj#593))": "cpu:89113587, mem:56894196, objs:-/299@cff36272, auth:1@bac1ba08/-", " 513 ret obj_cmp -> Ok(0)": "cpu:89114273", - " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@ab3f6665", + " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@520c643c", " 515 ret get_ledger_network_id -> Ok(Bytes(obj#599))": "cpu:89117428, mem:56894308, objs:-/300@dd09814f", " 516 ret create_contract -> Ok(Address(obj#601))": "cpu:89212535, mem:56903626, objs:-/301@244f82de, store:-/44@49506f31, foot:44@6bc1feec, auth:-/1@3ecbcd12", " 517 call bytes_new_from_slice(1723)": "cpu:89212790, auth:-/-", @@ -525,7 +525,7 @@ " 523 call create_contract(Address(obj#607), Bytes(obj#605), Bytes(obj#609))": "", " 524 call obj_cmp(Address(obj#611), Address(obj#607))": "cpu:91213078, mem:58221430, objs:-/306@51507416, auth:1@f4a38780/-", " 525 ret obj_cmp -> Ok(0)": "cpu:91213764", - " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@60fa77e0", + " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@fc522799", " 527 ret get_ledger_network_id -> Ok(Bytes(obj#613))": "cpu:91216919, mem:58221542, objs:-/307@eba2c5b2", " 528 ret create_contract -> Ok(Address(obj#615))": "cpu:91313086, mem:58231046, objs:-/308@367c7d43, store:-/45@c8a84a2, foot:45@358c3f92, auth:-/1@d6eec3a9", " 529 call bytes_new_from_slice(1723)": "cpu:91313341, auth:-/-", @@ -537,7 +537,7 @@ " 535 call create_contract(Address(obj#621), Bytes(obj#619), Bytes(obj#623))": "", " 536 call obj_cmp(Address(obj#625), Address(obj#621))": "cpu:93313629, mem:59548850, objs:-/313@f39fd860, auth:1@5cc394d/-", " 537 ret obj_cmp -> Ok(0)": "cpu:93314315", - " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@aff33b6b", + " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@73031a22", " 539 ret get_ledger_network_id -> Ok(Bytes(obj#627))": "cpu:93317470, mem:59548962, objs:-/314@e817a34d", " 540 ret create_contract -> Ok(Address(obj#629))": "cpu:93417497, mem:59558652, objs:-/315@3c670094, store:-/46@d1e3723, foot:46@8fe6169d, auth:-/1@a662faf6", " 541 call bytes_new_from_slice(1723)": "cpu:93417752, auth:-/-", @@ -549,7 +549,7 @@ " 547 call create_contract(Address(obj#635), Bytes(obj#633), Bytes(obj#637))": "", " 548 call obj_cmp(Address(obj#639), Address(obj#635))": "cpu:95418040, mem:60876456, objs:-/320@8e0c4b9b, auth:1@406c1dae/-", " 549 ret obj_cmp -> Ok(0)": "cpu:95418726", - " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@6600dac1", + " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@62235096", " 551 ret get_ledger_network_id -> Ok(Bytes(obj#641))": "cpu:95421881, mem:60876568, objs:-/321@3ae1b4", " 552 ret create_contract -> Ok(Address(obj#643))": "cpu:95514842, mem:60886444, objs:-/322@56ee1b71, store:-/47@df16bbd0, foot:47@3fc83862, auth:-/1@fc69475c", " 553 call bytes_new_from_slice(1723)": "cpu:95515097, auth:-/-", @@ -561,7 +561,7 @@ " 559 call create_contract(Address(obj#649), Bytes(obj#647), Bytes(obj#651))": "", " 560 call obj_cmp(Address(obj#653), Address(obj#649))": "cpu:97515385, mem:62204248, objs:-/327@c9706ded, auth:1@8c26c31b/-", " 561 ret obj_cmp -> Ok(0)": "cpu:97516071", - " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@529ff575", + " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@205f6fb4", " 563 ret get_ledger_network_id -> Ok(Bytes(obj#655))": "cpu:97519226, mem:62204360, objs:-/328@bf53726d", " 564 ret create_contract -> Ok(Address(obj#657))": "cpu:97621385, mem:62214422, objs:-/329@db413350, store:-/48@51de1218, foot:48@556cb318, auth:-/1@25a9c327", " 565 call bytes_new_from_slice(1723)": "cpu:97621640, auth:-/-", @@ -573,7 +573,7 @@ " 571 call create_contract(Address(obj#663), Bytes(obj#661), Bytes(obj#665))": "", " 572 call obj_cmp(Address(obj#667), Address(obj#663))": "cpu:99621928, mem:63532226, objs:-/334@f4f8f41b, auth:1@1fa181ba/-", " 573 ret obj_cmp -> Ok(0)": "cpu:99622614", - " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@cbc29ba9", + " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@9d22f9ed", " 575 ret get_ledger_network_id -> Ok(Bytes(obj#669))": "cpu:99625769, mem:63532338, objs:-/335@237761d2", " 576 ret create_contract -> Ok(Address(obj#671))": "cpu:99726196, mem:63542586, objs:-/336@fa034a59, store:-/49@ea935b52, foot:49@de5dfae4, auth:-/1@ab48dad3", " 577 call bytes_new_from_slice(1723)": "cpu:99726451, auth:-/-", @@ -585,7 +585,7 @@ " 583 call create_contract(Address(obj#677), Bytes(obj#675), Bytes(obj#679))": "", " 584 call obj_cmp(Address(obj#681), Address(obj#677))": "cpu:101726739, mem:64860390, objs:-/341@f9a83a38, auth:1@efefa99b/-", " 585 ret obj_cmp -> Ok(0)": "cpu:101727425", - " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2b02f498", + " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2329e92b", " 587 ret get_ledger_network_id -> Ok(Bytes(obj#683))": "cpu:101730580, mem:64860502, objs:-/342@d1ff7972", " 588 ret create_contract -> Ok(Address(obj#685))": "cpu:101833087, mem:64870936, objs:-/343@b5f757ec, store:-/50@4c522570, foot:50@a0637ff7, auth:-/1@33815c1a", " 589 call bytes_new_from_slice(1723)": "cpu:101833342, auth:-/-", @@ -597,7 +597,7 @@ " 595 call create_contract(Address(obj#691), Bytes(obj#689), Bytes(obj#693))": "", " 596 call obj_cmp(Address(obj#695), Address(obj#691))": "cpu:103833630, mem:66188740, objs:-/348@4f3b30b2, auth:1@a8fcf1a2/-", " 597 ret obj_cmp -> Ok(0)": "cpu:103834316", - " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@2b55c9b5", + " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@286b32d9", " 599 ret get_ledger_network_id -> Ok(Bytes(obj#697))": "cpu:103837471, mem:66188852, objs:-/349@d5de81fd", " 600 ret create_contract -> Ok(Address(obj#699))": "cpu:103942818, mem:66199472, objs:-/350@51dc4097, store:-/51@2ecebe32, foot:51@992b52e0, auth:-/1@62240125", " 601 call bytes_new_from_slice(1723)": "cpu:103943073, auth:-/-", @@ -609,7 +609,7 @@ " 607 call create_contract(Address(obj#705), Bytes(obj#703), Bytes(obj#707))": "", " 608 call obj_cmp(Address(obj#709), Address(obj#705))": "cpu:105943361, mem:67517276, objs:-/355@9a456a58, auth:1@df2dbab3/-", " 609 ret obj_cmp -> Ok(0)": "cpu:105944047", - " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@53ebc47d", + " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@9717cba0", " 611 ret get_ledger_network_id -> Ok(Bytes(obj#711))": "cpu:105947202, mem:67517388, objs:-/356@f6faf10c", " 612 ret create_contract -> Ok(Address(obj#713))": "cpu:106053615, mem:67528194, objs:-/357@8f3dfa45, store:-/52@3bc2289d, foot:52@a8174a77, auth:-/1@1ae2d9b9", " 613 call bytes_new_from_slice(1723)": "cpu:106053870, auth:-/-", @@ -621,7 +621,7 @@ " 619 call create_contract(Address(obj#719), Bytes(obj#717), Bytes(obj#721))": "", " 620 call obj_cmp(Address(obj#723), Address(obj#719))": "cpu:108054158, mem:68845998, objs:-/362@2c2a938, auth:1@e4e43523/-", " 621 ret obj_cmp -> Ok(0)": "cpu:108054844", - " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@633ca118", + " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@43fdac45", " 623 ret get_ledger_network_id -> Ok(Bytes(obj#725))": "cpu:108057999, mem:68846110, objs:-/363@a163628d", " 624 ret create_contract -> Ok(Address(obj#727))": "cpu:108162680, mem:68857102, objs:-/364@25c619f3, store:-/53@85418455, foot:53@755ca472, auth:-/1@7132248c", " 625 call bytes_new_from_slice(1723)": "cpu:108162935, auth:-/-", @@ -633,7 +633,7 @@ " 631 call create_contract(Address(obj#733), Bytes(obj#731), Bytes(obj#735))": "", " 632 call obj_cmp(Address(obj#737), Address(obj#733))": "cpu:110163223, mem:70174906, objs:-/369@346fee22, auth:1@a8468a5b/-", " 633 ret obj_cmp -> Ok(0)": "cpu:110163909", - " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@5f38f4b4", + " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@ac9afa98", " 635 ret get_ledger_network_id -> Ok(Bytes(obj#739))": "cpu:110167064, mem:70175018, objs:-/370@5f283fed", " 636 ret create_contract -> Ok(Address(obj#741))": "cpu:110273825, mem:70186196, objs:-/371@756dc3dc, store:-/54@d6df1dee, foot:54@6c9db746, auth:-/1@add7894e", " 637 call bytes_new_from_slice(1723)": "cpu:110274080, auth:-/-", @@ -645,7 +645,7 @@ " 643 call create_contract(Address(obj#747), Bytes(obj#745), Bytes(obj#749))": "", " 644 call obj_cmp(Address(obj#751), Address(obj#747))": "cpu:112274368, mem:71504000, objs:-/376@aebe83c3, auth:1@a1dfbdc2/-", " 645 ret obj_cmp -> Ok(0)": "cpu:112275054", - " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@20efa1bf", + " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@a0d06fb2", " 647 ret get_ledger_network_id -> Ok(Bytes(obj#753))": "cpu:112278209, mem:71504112, objs:-/377@a5f27cc1", " 648 ret create_contract -> Ok(Address(obj#755))": "cpu:112383238, mem:71515476, objs:-/378@4a2dc9d5, store:-/55@d68f6f6e, foot:55@98d0e060, auth:-/1@6f8d4df0", " 649 call bytes_new_from_slice(1723)": "cpu:112383493, auth:-/-", @@ -657,7 +657,7 @@ " 655 call create_contract(Address(obj#761), Bytes(obj#759), Bytes(obj#763))": "", " 656 call obj_cmp(Address(obj#765), Address(obj#761))": "cpu:114383781, mem:72833280, objs:-/383@ba9bc303, auth:1@7cf8180f/-", " 657 ret obj_cmp -> Ok(0)": "cpu:114384467", - " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@a8a009f0", + " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@9ffc2d1c", " 659 ret get_ledger_network_id -> Ok(Bytes(obj#767))": "cpu:114387622, mem:72833392, objs:-/384@cef90ff5", " 660 ret create_contract -> Ok(Address(obj#769))": "cpu:114498291, mem:72844942, objs:-/385@949e2fa0, store:-/56@bd5ddb43, foot:56@dc185736, auth:-/1@dbeb877e", " 661 call bytes_new_from_slice(1723)": "cpu:114498546, auth:-/-", @@ -669,7 +669,7 @@ " 667 call create_contract(Address(obj#775), Bytes(obj#773), Bytes(obj#777))": "", " 668 call obj_cmp(Address(obj#779), Address(obj#775))": "cpu:116498834, mem:74162746, objs:-/390@ee85fa0, auth:1@5e9c3221/-", " 669 ret obj_cmp -> Ok(0)": "cpu:116499520", - " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@1d9c05cc", + " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@42a87577", " 671 ret get_ledger_network_id -> Ok(Bytes(obj#781))": "cpu:116502675, mem:74162858, objs:-/391@c09aca31", " 672 ret create_contract -> Ok(Address(obj#783))": "cpu:116614408, mem:74174594, objs:-/392@a5b995b8, store:-/57@d10d961, foot:57@962f7174, auth:-/1@b76a8061", " 673 call bytes_new_from_slice(1723)": "cpu:116614663, auth:-/-", @@ -681,7 +681,7 @@ " 679 call create_contract(Address(obj#789), Bytes(obj#787), Bytes(obj#791))": "", " 680 call obj_cmp(Address(obj#793), Address(obj#789))": "cpu:118614951, mem:75492398, objs:-/397@8e52f175, auth:1@ba59cfca/-", " 681 ret obj_cmp -> Ok(0)": "cpu:118615637", - " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@5496e8ba", + " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@fb340186", " 683 ret get_ledger_network_id -> Ok(Bytes(obj#795))": "cpu:118618792, mem:75492510, objs:-/398@12799e50", " 684 ret create_contract -> Ok(Address(obj#797))": "cpu:118728033, mem:75504432, objs:-/399@3db9e662, store:-/58@8b1f0e88, foot:58@5c2834ff, auth:-/1@1693c723", " 685 call bytes_new_from_slice(1723)": "cpu:118728288, auth:-/-", @@ -693,7 +693,7 @@ " 691 call create_contract(Address(obj#803), Bytes(obj#801), Bytes(obj#805))": "", " 692 call obj_cmp(Address(obj#807), Address(obj#803))": "cpu:120728576, mem:76822236, objs:-/404@80b4325, auth:1@3d58dc89/-", " 693 ret obj_cmp -> Ok(0)": "cpu:120729262", - " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@98c21e82", + " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@6f5874f2", " 695 ret get_ledger_network_id -> Ok(Bytes(obj#809))": "cpu:120732417, mem:76822348, objs:-/405@3b999f4b", " 696 ret create_contract -> Ok(Address(obj#811))": "cpu:120838148, mem:76834456, objs:-/406@7fb07dfd, store:-/59@beb21ab6, foot:59@b156a440, auth:-/1@f485e251", " 697 call bytes_new_from_slice(1723)": "cpu:120838403, auth:-/-", @@ -705,7 +705,7 @@ " 703 call create_contract(Address(obj#817), Bytes(obj#815), Bytes(obj#819))": "", " 704 call obj_cmp(Address(obj#821), Address(obj#817))": "cpu:122838691, mem:78152260, objs:-/411@120f1132, auth:1@9615c0a4/-", " 705 ret obj_cmp -> Ok(0)": "cpu:122839377", - " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@2923ec4b", + " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@a21c8e0e", " 707 ret get_ledger_network_id -> Ok(Bytes(obj#823))": "cpu:122842532, mem:78152372, objs:-/412@7e1fcf83", " 708 ret create_contract -> Ok(Address(obj#825))": "cpu:122952121, mem:78164666, objs:-/413@d817a428, store:-/60@48bc1338, foot:60@a33f325d, auth:-/1@90f9a145", " 709 call bytes_new_from_slice(1723)": "cpu:122952376, auth:-/-", @@ -717,7 +717,7 @@ " 715 call create_contract(Address(obj#831), Bytes(obj#829), Bytes(obj#833))": "", " 716 call obj_cmp(Address(obj#835), Address(obj#831))": "cpu:124952664, mem:79482470, objs:-/418@fb16c9f, auth:1@ed66b718/-", " 717 ret obj_cmp -> Ok(0)": "cpu:124953350", - " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@3845c83e", + " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@915f7f35", " 719 ret get_ledger_network_id -> Ok(Bytes(obj#837))": "cpu:124956505, mem:79482582, objs:-/419@6c3991f8", " 720 ret create_contract -> Ok(Address(obj#839))": "cpu:125070712, mem:79495062, objs:-/420@7e22a47, store:-/61@39cb0da1, foot:61@9492821c, auth:-/1@1b6774bf", " 721 call bytes_new_from_slice(1723)": "cpu:125070967, auth:-/-", @@ -729,7 +729,7 @@ " 727 call create_contract(Address(obj#845), Bytes(obj#843), Bytes(obj#847))": "", " 728 call obj_cmp(Address(obj#849), Address(obj#845))": "cpu:127071255, mem:80812866, objs:-/425@34c426ec, auth:1@8d4c648/-", " 729 ret obj_cmp -> Ok(0)": "cpu:127071941", - " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@b8fd81b7", + " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@34a8de00", " 731 ret get_ledger_network_id -> Ok(Bytes(obj#851))": "cpu:127075096, mem:80812978, objs:-/426@6669f65a", " 732 ret create_contract -> Ok(Address(obj#853))": "cpu:127192147, mem:80825644, objs:-/427@3c471c07, store:-/62@73159901, foot:62@a247f604, auth:-/1@fa10c746", " 733 call bytes_new_from_slice(1723)": "cpu:127192402, auth:-/-", @@ -741,7 +741,7 @@ " 739 call create_contract(Address(obj#859), Bytes(obj#857), Bytes(obj#861))": "", " 740 call obj_cmp(Address(obj#863), Address(obj#859))": "cpu:129192690, mem:82143448, objs:-/432@a056c54, auth:1@dab38220/-", " 741 ret obj_cmp -> Ok(0)": "cpu:129193376", - " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@2a1916d6", + " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@f239515f", " 743 ret get_ledger_network_id -> Ok(Bytes(obj#865))": "cpu:129196531, mem:82143560, objs:-/433@b3ad8ff", " 744 ret create_contract -> Ok(Address(obj#867))": "cpu:129314644, mem:82156412, objs:-/434@e4eb33a, store:-/63@1b326826, foot:63@9801e88b, auth:-/1@a03e84e", " 745 call bytes_new_from_slice(1723)": "cpu:129314899, auth:-/-", @@ -753,7 +753,7 @@ " 751 call create_contract(Address(obj#873), Bytes(obj#871), Bytes(obj#875))": "", " 752 call obj_cmp(Address(obj#877), Address(obj#873))": "cpu:131315187, mem:83474216, objs:-/439@1aa2c5f6, auth:1@99c0fb6c/-", " 753 ret obj_cmp -> Ok(0)": "cpu:131315873", - " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@c35bd167", + " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@7ea4443e", " 755 ret get_ledger_network_id -> Ok(Bytes(obj#879))": "cpu:131319028, mem:83474328, objs:-/440@799c85ba", " 756 ret create_contract -> Ok(Address(obj#881))": "cpu:131438281, mem:83487366, objs:-/441@ca7fc40a, store:-/64@e7079371, foot:64@cc9b651b, auth:-/1@337ead98", " 757 call bytes_new_from_slice(1723)": "cpu:131438536, auth:-/-", @@ -765,7 +765,7 @@ " 763 call create_contract(Address(obj#887), Bytes(obj#885), Bytes(obj#889))": "", " 764 call obj_cmp(Address(obj#891), Address(obj#887))": "cpu:133438846, mem:84805170, objs:-/446@10069c6f, auth:1@15a8a357/-", " 765 ret obj_cmp -> Ok(0)": "cpu:133439532", - " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@a355308d", + " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@3a0544d3", " 767 ret get_ledger_network_id -> Ok(Bytes(obj#893))": "cpu:133442687, mem:84805282, objs:-/447@c3c2a480", " 768 ret create_contract -> Ok(Address(obj#895))": "cpu:133563026, mem:84818506, objs:-/448@75aa9a70, store:-/65@14bef7e4, foot:65@d9000a8e, auth:-/1@f4cff7fe", " 769 call bytes_new_from_slice(1723)": "cpu:133563281, auth:-/-", @@ -777,7 +777,7 @@ " 775 call create_contract(Address(obj#901), Bytes(obj#899), Bytes(obj#903))": "", " 776 call obj_cmp(Address(obj#905), Address(obj#901))": "cpu:135563591, mem:86136310, objs:-/453@9e1d13db, auth:1@740cbc46/-", " 777 ret obj_cmp -> Ok(0)": "cpu:135564277", - " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@d0e5f2d9", + " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@3bfe883", " 779 ret get_ledger_network_id -> Ok(Bytes(obj#907))": "cpu:135567432, mem:86136422, objs:-/454@2140adea", " 780 ret create_contract -> Ok(Address(obj#909))": "cpu:135687059, mem:86149832, objs:-/455@cc45d327, store:-/66@cd903d3e, foot:66@bfdb0e98, auth:-/1@bd7b355c", " 781 call bytes_new_from_slice(1723)": "cpu:135687314, auth:-/-", @@ -789,7 +789,7 @@ " 787 call create_contract(Address(obj#915), Bytes(obj#913), Bytes(obj#917))": "", " 788 call obj_cmp(Address(obj#919), Address(obj#915))": "cpu:137687624, mem:87467636, objs:-/460@b03c0f83, auth:1@2da9c65/-", " 789 ret obj_cmp -> Ok(0)": "cpu:137688310", - " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@b0c0571b", + " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@c4c1070f", " 791 ret get_ledger_network_id -> Ok(Bytes(obj#921))": "cpu:137691465, mem:87467748, objs:-/461@def87377", " 792 ret create_contract -> Ok(Address(obj#923))": "cpu:137813932, mem:87481344, objs:-/462@45120f6c, store:-/67@6584c2ff, foot:67@4ca4b4cb, auth:-/1@43d4f17b", " 793 call bytes_new_from_slice(1723)": "cpu:137814187, auth:-/-", @@ -801,7 +801,7 @@ " 799 call create_contract(Address(obj#929), Bytes(obj#927), Bytes(obj#931))": "", " 800 call obj_cmp(Address(obj#933), Address(obj#929))": "cpu:139814497, mem:88799148, objs:-/467@93a33041, auth:1@29f88d0f/-", " 801 ret obj_cmp -> Ok(0)": "cpu:139815183", - " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@979f25ad", + " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@fd3ae29e", " 803 ret get_ledger_network_id -> Ok(Bytes(obj#935))": "cpu:139818338, mem:88799260, objs:-/468@a5e532e9", " 804 ret create_contract -> Ok(Address(obj#937))": "cpu:139940093, mem:88813042, objs:-/469@f1730e5f, store:-/68@a95aaa61, foot:68@7b107c0e, auth:-/1@c7687a6f", " 805 call bytes_new_from_slice(1723)": "cpu:139940348, auth:-/-", @@ -813,7 +813,7 @@ " 811 call create_contract(Address(obj#943), Bytes(obj#941), Bytes(obj#945))": "", " 812 call obj_cmp(Address(obj#947), Address(obj#943))": "cpu:141940658, mem:90130846, objs:-/474@443ed4bb, auth:1@6d00ea2a/-", " 813 ret obj_cmp -> Ok(0)": "cpu:141941344", - " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@280957fb", + " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@bda0a2b", " 815 ret get_ledger_network_id -> Ok(Bytes(obj#949))": "cpu:141944499, mem:90130958, objs:-/475@cf814756", " 816 ret create_contract -> Ok(Address(obj#951))": "cpu:142067314, mem:90144926, objs:-/476@de85786d, store:-/69@2950663e, foot:69@6894b0a2, auth:-/1@12151c8e", " 817 call bytes_new_from_slice(1723)": "cpu:142067569, auth:-/-", @@ -825,7 +825,7 @@ " 823 call create_contract(Address(obj#957), Bytes(obj#955), Bytes(obj#959))": "", " 824 call obj_cmp(Address(obj#961), Address(obj#957))": "cpu:144067879, mem:91462730, objs:-/481@b0c8321a, auth:1@c0c7e5a8/-", " 825 ret obj_cmp -> Ok(0)": "cpu:144068565", - " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@4841adf2", + " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@9608c96e", " 827 ret get_ledger_network_id -> Ok(Bytes(obj#963))": "cpu:144071720, mem:91462842, objs:-/482@846aa98e", " 828 ret create_contract -> Ok(Address(obj#965))": "cpu:144189505, mem:91476996, objs:-/483@4fbf53ac, store:-/70@adf2fc99, foot:70@821ad073, auth:-/1@44e6f004", " 829 call bytes_new_from_slice(1723)": "cpu:144189760, auth:-/-", @@ -837,7 +837,7 @@ " 835 call create_contract(Address(obj#971), Bytes(obj#969), Bytes(obj#973))": "", " 836 call obj_cmp(Address(obj#975), Address(obj#971))": "cpu:146190070, mem:92794800, objs:-/488@b085e7d1, auth:1@e5ccf8c7/-", " 837 ret obj_cmp -> Ok(0)": "cpu:146190756", - " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@793dfb0a", + " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@dcd47906", " 839 ret get_ledger_network_id -> Ok(Bytes(obj#977))": "cpu:146193911, mem:92794912, objs:-/489@6913398b", " 840 ret create_contract -> Ok(Address(obj#979))": "cpu:146320630, mem:92809252, objs:-/490@1c8cace9, store:-/71@79757366, foot:71@92e5e652, auth:-/1@d1d73ad0", " 841 call bytes_new_from_slice(1723)": "cpu:146320885, auth:-/-", @@ -849,7 +849,7 @@ " 847 call create_contract(Address(obj#985), Bytes(obj#983), Bytes(obj#987))": "", " 848 call obj_cmp(Address(obj#989), Address(obj#985))": "cpu:148321195, mem:94127056, objs:-/495@a9b31ca, auth:1@8b9c1d75/-", " 849 ret obj_cmp -> Ok(0)": "cpu:148321881", - " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@a045f7fb", + " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@590c504f", " 851 ret get_ledger_network_id -> Ok(Bytes(obj#991))": "cpu:148325036, mem:94127168, objs:-/496@485ec8a7", " 852 ret create_contract -> Ok(Address(obj#993))": "cpu:148452827, mem:94141694, objs:-/497@2be4913d, store:-/72@f8a2e954, foot:72@131e5b52, auth:-/1@869a312d", " 853 call bytes_new_from_slice(1723)": "cpu:148453082, auth:-/-", @@ -861,7 +861,7 @@ " 859 call create_contract(Address(obj#999), Bytes(obj#997), Bytes(obj#1001))": "", " 860 call obj_cmp(Address(obj#1003), Address(obj#999))": "cpu:150453392, mem:95459498, objs:-/502@ef352cdd, auth:1@324ce1b0/-", " 861 ret obj_cmp -> Ok(0)": "cpu:150454078", - " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@1840bfcb", + " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@a5100b10", " 863 ret get_ledger_network_id -> Ok(Bytes(obj#1005))": "cpu:150457233, mem:95459610, objs:-/503@944ab8d9", " 864 ret create_contract -> Ok(Address(obj#1007))": "cpu:150582528, mem:95474322, objs:-/504@92c7111e, store:-/73@65800019, foot:73@74126ae0, auth:-/1@7b064a9e", " 865 call bytes_new_from_slice(1723)": "cpu:150582783, auth:-/-", @@ -873,7 +873,7 @@ " 871 call create_contract(Address(obj#1013), Bytes(obj#1011), Bytes(obj#1015))": "", " 872 call obj_cmp(Address(obj#1017), Address(obj#1013))": "cpu:152583093, mem:96792126, objs:-/509@c07bd221, auth:1@7da7fbb6/-", " 873 ret obj_cmp -> Ok(0)": "cpu:152583779", - " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@9bc13e6a", + " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@1e202147", " 875 ret get_ledger_network_id -> Ok(Bytes(obj#1019))": "cpu:152586934, mem:96792238, objs:-/510@6b7222e6", " 876 ret create_contract -> Ok(Address(obj#1021))": "cpu:152719645, mem:96807136, objs:-/511@2d880cb3, store:-/74@6da01545, foot:74@98a244b2, auth:-/1@7fbd7918", " 877 call bytes_new_from_slice(1723)": "cpu:152719900, auth:-/-", @@ -885,7 +885,7 @@ " 883 call create_contract(Address(obj#1027), Bytes(obj#1025), Bytes(obj#1029))": "", " 884 call obj_cmp(Address(obj#1031), Address(obj#1027))": "cpu:154720210, mem:98124940, objs:-/516@f5623ffa, auth:1@f873a88c/-", " 885 ret obj_cmp -> Ok(0)": "cpu:154720896", - " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@450e1f0b", + " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@742ef726", " 887 ret get_ledger_network_id -> Ok(Bytes(obj#1033))": "cpu:154724051, mem:98125052, objs:-/517@c1e547af", " 888 ret create_contract -> Ok(Address(obj#1035))": "cpu:154855028, mem:98140136, objs:-/518@ed0b6fa3, store:-/75@2640d275, foot:75@e1edfb8, auth:-/1@7bd1b1ac", " 889 call bytes_new_from_slice(1723)": "cpu:154855283, auth:-/-", @@ -897,7 +897,7 @@ " 895 call create_contract(Address(obj#1041), Bytes(obj#1039), Bytes(obj#1043))": "", " 896 call obj_cmp(Address(obj#1045), Address(obj#1041))": "cpu:156855593, mem:99457940, objs:-/523@afbfaeca, auth:1@a98e3a0c/-", " 897 ret obj_cmp -> Ok(0)": "cpu:156856279", - " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@97ab07bc", + " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@3314c4f4", " 899 ret get_ledger_network_id -> Ok(Bytes(obj#1047))": "cpu:156859434, mem:99458052, objs:-/524@ae0a83cb", " 900 ret create_contract -> Ok(Address(obj#1049))": "cpu:156994271, mem:99473322, objs:-/525@90f0b7e, store:-/76@b3fee76, foot:76@17ea103, auth:-/1@cd0c113", " 901 call bytes_new_from_slice(1723)": "cpu:156994526, auth:-/-", @@ -909,7 +909,7 @@ " 907 call create_contract(Address(obj#1055), Bytes(obj#1053), Bytes(obj#1057))": "", " 908 call obj_cmp(Address(obj#1059), Address(obj#1055))": "cpu:158994836, mem:100791126, objs:-/530@79ae528, auth:1@2722a0e9/-", " 909 ret obj_cmp -> Ok(0)": "cpu:158995522", - " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@b37297e1", + " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@2fc267a0", " 911 ret get_ledger_network_id -> Ok(Bytes(obj#1061))": "cpu:158998677, mem:100791238, objs:-/531@c299807e", " 912 ret create_contract -> Ok(Address(obj#1063))": "cpu:159130004, mem:100806694, objs:-/532@cd9f8aed, store:-/77@657b3ea7, foot:77@e7ae520f, auth:-/1@cd4623d1", " 913 call bytes_new_from_slice(1723)": "cpu:159130259, auth:-/-", @@ -921,7 +921,7 @@ " 919 call create_contract(Address(obj#1069), Bytes(obj#1067), Bytes(obj#1071))": "", " 920 call obj_cmp(Address(obj#1073), Address(obj#1069))": "cpu:161130569, mem:102124498, objs:-/537@e5fd859b, auth:1@d3342891/-", " 921 ret obj_cmp -> Ok(0)": "cpu:161131255", - " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@ac15408a", + " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@572a7bcf", " 923 ret get_ledger_network_id -> Ok(Bytes(obj#1075))": "cpu:161134410, mem:102124610, objs:-/538@373a6e1f", " 924 ret create_contract -> Ok(Address(obj#1077))": "cpu:161269597, mem:102140252, objs:-/539@a2bba411, store:-/78@be444a78, foot:78@92931e2e, auth:-/1@ffdde4e3", " 925 call bytes_new_from_slice(1723)": "cpu:161269852, auth:-/-", @@ -933,7 +933,7 @@ " 931 call create_contract(Address(obj#1083), Bytes(obj#1081), Bytes(obj#1085))": "", " 932 call obj_cmp(Address(obj#1087), Address(obj#1083))": "cpu:163270162, mem:103458056, objs:-/544@9b41b8e0, auth:1@dd609a88/-", " 933 ret obj_cmp -> Ok(0)": "cpu:163270848", - " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@8b52e45b", + " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@d4dbf130", " 935 ret get_ledger_network_id -> Ok(Bytes(obj#1089))": "cpu:163274003, mem:103458168, objs:-/545@1c155cdd", " 936 ret create_contract -> Ok(Address(obj#1091))": "cpu:163407456, mem:103473996, objs:-/546@6b1fddc7, store:-/79@1ff42e32, foot:79@b2da7f6f, auth:-/1@36361e6e", " 937 call bytes_new_from_slice(1723)": "cpu:163407711, auth:-/-", @@ -945,7 +945,7 @@ " 943 call create_contract(Address(obj#1097), Bytes(obj#1095), Bytes(obj#1099))": "", " 944 call obj_cmp(Address(obj#1101), Address(obj#1097))": "cpu:165408021, mem:104791800, objs:-/551@d1f85514, auth:1@2b6dc135/-", " 945 ret obj_cmp -> Ok(0)": "cpu:165408707", - " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@7c3fc9da", + " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@41e7877", " 947 ret get_ledger_network_id -> Ok(Bytes(obj#1103))": "cpu:165411862, mem:104791912, objs:-/552@904f5f5", " 948 ret create_contract -> Ok(Address(obj#1105))": "cpu:165543845, mem:104807926, objs:-/553@2b94afe6, store:-/80@5e14adc2, foot:80@f059281b, auth:-/1@1f118c6c", " 949 call bytes_new_from_slice(1723)": "cpu:165544100, auth:-/-", @@ -957,7 +957,7 @@ " 955 call create_contract(Address(obj#1111), Bytes(obj#1109), Bytes(obj#1113))": "", " 956 call obj_cmp(Address(obj#1115), Address(obj#1111))": "cpu:167544410, mem:106125730, objs:-/558@b9bcce70, auth:1@70e49983/-", " 957 ret obj_cmp -> Ok(0)": "cpu:167545096", - " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@d48ad31d", + " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@8b829207", " 959 ret get_ledger_network_id -> Ok(Bytes(obj#1117))": "cpu:167548251, mem:106125842, objs:-/559@db2ec1f1", " 960 ret create_contract -> Ok(Address(obj#1119))": "cpu:167688408, mem:106142042, objs:-/560@41ccfcc2, store:-/81@f81ad7da, foot:81@15685e3b, auth:-/1@6a69f567", " 961 call bytes_new_from_slice(1723)": "cpu:167688663, auth:-/-", @@ -969,7 +969,7 @@ " 967 call create_contract(Address(obj#1125), Bytes(obj#1123), Bytes(obj#1127))": "", " 968 call obj_cmp(Address(obj#1129), Address(obj#1125))": "cpu:169688973, mem:107459846, objs:-/565@1cad2db4, auth:1@2123cf2b/-", " 969 ret obj_cmp -> Ok(0)": "cpu:169689659", - " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@94e13f1", + " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@83e05267", " 971 ret get_ledger_network_id -> Ok(Bytes(obj#1131))": "cpu:169692814, mem:107459958, objs:-/566@56ce3a87", " 972 ret create_contract -> Ok(Address(obj#1133))": "cpu:169829465, mem:107476344, objs:-/567@3c1a2bca, store:-/82@768815a, foot:82@1f4b7a36, auth:-/1@27facc4a", " 973 call bytes_new_from_slice(1723)": "cpu:169829720, auth:-/-", @@ -981,7 +981,7 @@ " 979 call create_contract(Address(obj#1139), Bytes(obj#1137), Bytes(obj#1141))": "", " 980 call obj_cmp(Address(obj#1143), Address(obj#1139))": "cpu:171830030, mem:108794148, objs:-/572@1665aa07, auth:1@97298f20/-", " 981 ret obj_cmp -> Ok(0)": "cpu:171830716", - " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@e23f270a", + " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@4021cf1a", " 983 ret get_ledger_network_id -> Ok(Bytes(obj#1145))": "cpu:171833871, mem:108794260, objs:-/573@6e3f538d", " 984 ret create_contract -> Ok(Address(obj#1147))": "cpu:171974378, mem:108810832, objs:-/574@3ab5a9ff, store:-/83@92fc960e, foot:83@99dcf372, auth:-/1@3dfa80d3", " 985 call bytes_new_from_slice(1723)": "cpu:171974633, auth:-/-", @@ -993,7 +993,7 @@ " 991 call create_contract(Address(obj#1153), Bytes(obj#1151), Bytes(obj#1155))": "", " 992 call obj_cmp(Address(obj#1157), Address(obj#1153))": "cpu:173974943, mem:110128636, objs:-/579@cce4f991, auth:1@48cd29c5/-", " 993 ret obj_cmp -> Ok(0)": "cpu:173975629", - " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@89073d7b", + " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@b8360dff", " 995 ret get_ledger_network_id -> Ok(Bytes(obj#1159))": "cpu:173978784, mem:110128748, objs:-/580@bc994841", " 996 ret create_contract -> Ok(Address(obj#1161))": "cpu:174119339, mem:110145506, objs:-/581@35af42cf, store:-/84@9f307726, foot:84@c027a220, auth:-/1@9c275ce6", " 997 call bytes_new_from_slice(1723)": "cpu:174119594, auth:-/-", @@ -1065,7 +1065,7 @@ "10057 call symbol_copy_to_slice(Symbol(obj#3741), U32(0), 12)": "", "10058 ret symbol_copy_to_slice -> Ok(())": "cpu:313839628", "10059 call bytes_len(Bytes(obj#3729))": " vm:-/-", - "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@15a30448", + "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@f1502f98", "10060 ret bytes_len -> Ok(U32(32))": "cpu:313845297", "10061 call vec_len(Vec(obj#2295))": "", "10062 ret vec_len -> Ok(U32(2))": "cpu:313845776", @@ -1197,7 +1197,7 @@ "10177 ret obj_cmp -> Ok(-1)": "cpu:313893906", "10178 call obj_cmp(Address(obj#2925), Address(obj#2293))": "", "10179 ret obj_cmp -> Ok(1)": "cpu:313894592", - "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@99e0911a", + "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@ddecb92e", "10180 call obj_cmp(Address(obj#2937), Address(obj#2293))": "", "10181 ret obj_cmp -> Ok(-1)": "cpu:313895278", "10182 call obj_cmp(Address(obj#2949), Address(obj#2293))": "", @@ -1329,7 +1329,7 @@ "10297 ret obj_cmp -> Ok(1)": "cpu:316133579", "10298 call obj_cmp(Address(obj#2733), Address(obj#2305))": "", "10299 ret obj_cmp -> Ok(1)": "cpu:316134265", - "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@d900f2b9", + "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@ef460cff", "10300 call obj_cmp(Address(obj#2745), Address(obj#2305))": "", "10301 ret obj_cmp -> Ok(-1)": "cpu:316134951", "10302 call obj_cmp(Address(obj#2757), Address(obj#2305))": "", @@ -1461,7 +1461,7 @@ "10417 ret obj_cmp -> Ok(1)": "cpu:318363865", "10418 call obj_cmp(Address(obj#2553), Address(obj#2317))": "", "10419 ret obj_cmp -> Ok(1)": "cpu:318364551", - "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@8cf28d27", + "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@7a1f2db2", "10420 call obj_cmp(Address(obj#2565), Address(obj#2317))": "", "10421 ret obj_cmp -> Ok(1)": "cpu:318365237", "10422 call obj_cmp(Address(obj#2577), Address(obj#2317))": "", @@ -1593,7 +1593,7 @@ "10537 ret obj_cmp -> Ok(1)": "cpu:320595432", "10538 call obj_cmp(Address(obj#2385), Address(obj#2329))": "", "10539 ret obj_cmp -> Ok(1)": "cpu:320596118", - "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@adb776b7", + "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@914bc040", "10540 call obj_cmp(Address(obj#2397), Address(obj#2329))": "", "10541 ret obj_cmp -> Ok(1)": "cpu:320596804", "10542 call obj_cmp(Address(obj#2409), Address(obj#2329))": "", @@ -1725,7 +1725,7 @@ "10657 ret symbol_new_from_slice -> Ok(Symbol(obj#3813))": "cpu:320674724, mem:194298654, objs:6@c55a0112/1907@6da16816", "10658 push VM:88663680:sym#3813(Bytes(obj#3801), Vec(obj#2343), Vec(obj#3811))": "cpu:322806713, mem:195628913, objs:-/1908@f3a98181, vm:1114112@a6f378b8/7@ae192e85, stk:47@612ae8f0, auth:47@b5bf038b/53@1b86918d", "10659 call symbol_len(Symbol(obj#3813))": "cpu:322812911, mem:195629063, objs:3@5ad62292/1908@f3a98181, stk:47@e7fe44c8", - "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@3b733ec9", + "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@daca6b74", "10660 ret symbol_len -> Ok(U32(12))": "cpu:322813127", "10661 call symbol_copy_to_slice(Symbol(obj#3813), U32(0), 12)": "", "10662 ret symbol_copy_to_slice -> Ok(())": "cpu:322813486", @@ -1857,7 +1857,7 @@ "10777 ret obj_cmp -> Ok(-1)": "cpu:322866392", "10778 call obj_cmp(Address(obj#2949), Address(obj#2341))": "", "10779 ret obj_cmp -> Ok(-1)": "cpu:322867078", - "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@f3b99202", + "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@4e66162c", "10780 call obj_cmp(Address(obj#2961), Address(obj#2341))": "", "10781 ret obj_cmp -> Ok(1)": "cpu:322867764", "10782 call obj_cmp(Address(obj#2973), Address(obj#2341))": "", @@ -1989,7 +1989,7 @@ "10897 ret obj_cmp -> Ok(1)": "cpu:325095949", "10898 call obj_cmp(Address(obj#2805), Address(obj#2353))": "", "10899 ret obj_cmp -> Ok(1)": "cpu:325096635", - "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@c40502a7", + "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@95eeba1e", "10900 call obj_cmp(Address(obj#2817), Address(obj#2353))": "", "10901 ret obj_cmp -> Ok(1)": "cpu:325097321", "10902 call obj_cmp(Address(obj#2829), Address(obj#2353))": "", @@ -2121,7 +2121,7 @@ "11017 ret obj_cmp -> Ok(1)": "cpu:327316119", "11018 call obj_cmp(Address(obj#2673), Address(obj#2365))": "", "11019 ret obj_cmp -> Ok(1)": "cpu:327316805", - "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@69ae4ce3", + "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@7b807866", "11020 call obj_cmp(Address(obj#2685), Address(obj#2365))": "", "11021 ret obj_cmp -> Ok(-1)": "cpu:327317491", "11022 call obj_cmp(Address(obj#2697), Address(obj#2365))": "", @@ -2253,7 +2253,7 @@ "11137 ret obj_cmp -> Ok(1)": "cpu:329537570", "11138 call obj_cmp(Address(obj#2553), Address(obj#2377))": "", "11139 ret obj_cmp -> Ok(1)": "cpu:329538256", - "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@c6d564e3", + "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@6ffec27e", "11140 call obj_cmp(Address(obj#2565), Address(obj#2377))": "", "11141 ret obj_cmp -> Ok(1)": "cpu:329538942", "11142 call obj_cmp(Address(obj#2577), Address(obj#2377))": "", @@ -2385,7 +2385,7 @@ "11257 ret obj_cmp -> Ok(1)": "cpu:331757254", "11258 call obj_cmp(Address(obj#2445), Address(obj#2389))": "", "11259 ret obj_cmp -> Ok(-1)": "cpu:331757940", - "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@19000368", + "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@eba6b1af", "11260 call obj_cmp(Address(obj#2457), Address(obj#2389))": "", "11261 ret obj_cmp -> Ok(1)": "cpu:331758626", "11262 call obj_cmp(Address(obj#2469), Address(obj#2389))": "", @@ -2517,7 +2517,7 @@ "11377 call vec_get(Vec(obj#2403), U32(0))": "", "11378 ret vec_get -> Ok(Symbol(obj#2399))": "cpu:333965775", "11379 call symbol_index_in_linear_memory(Symbol(obj#2399), U32(1048664), U32(3))": "cpu:333967024, mem:202287682, objs:4@d70cef75/1953@73d06b6c, stk:52@bf289828", - "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@165a018e", + "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@97aba755", "11380 ret symbol_index_in_linear_memory -> Ok(U32(0))": "cpu:333968755", "11381 call vec_get(Vec(obj#2403), U32(1))": "", "11382 ret vec_get -> Ok(Address(obj#2401))": "cpu:333969977", @@ -2649,7 +2649,7 @@ "11497 ret map_new_from_slices -> Ok(Map(obj#3915))": "cpu:334045847, mem:202288812, objs:6@5280520d/1958@b1ee0a55", "11498 call vec_new_from_slice(2)": "", "11499 ret vec_new_from_slice -> Ok(Vec(obj#3917))": "cpu:334048742, mem:202288908, objs:6@5280520d/1959@edeadfc8", - "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@598eacaa", + "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@bed7d447", "11500 call vec_push_back(Vec(obj#3911), Vec(obj#3917))": "", "11501 ret vec_push_back -> Ok(Vec(obj#3919))": "cpu:334051960, mem:202288996, objs:6@5280520d/1960@d9b591e6", "11502 call symbol_new_from_slice(12)": "", @@ -2781,7 +2781,7 @@ "11617 ret obj_cmp -> Ok(-1)": "cpu:336224861", "11618 call obj_cmp(Address(obj#2421), Address(obj#2413))": " auth:53@5f88b02f/46@f8ccf3e", "11619 ret obj_cmp -> Ok(0)": "cpu:336225547", - "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@a93552d0", + "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@978a819", "11620 call obj_cmp(Address(obj#2429), Address(obj#3923))": "", "11621 ret obj_cmp -> Ok(0)": "cpu:336226233", "11622 call obj_cmp(Symbol(obj#2431), Symbol(obj#3921))": "", @@ -2913,7 +2913,7 @@ "11737 ret obj_cmp -> Ok(1)": "cpu:338431624", "11738 call obj_cmp(Address(obj#2913), Address(obj#2425))": "", "11739 ret obj_cmp -> Ok(-1)": "cpu:338432310", - "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@5f366658", + "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@af6ca8a", "11740 call obj_cmp(Address(obj#2925), Address(obj#2425))": "", "11741 ret obj_cmp -> Ok(1)": "cpu:338432996", "11742 call obj_cmp(Address(obj#2937), Address(obj#2425))": "", @@ -3045,7 +3045,7 @@ "11857 ret obj_cmp -> Ok(1)": "cpu:340636620", "11858 call obj_cmp(Address(obj#2853), Address(obj#2437))": "", "11859 ret obj_cmp -> Ok(1)": "cpu:340637306", - "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@68507614", + "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@c5cbfcbf", "11860 call obj_cmp(Address(obj#2865), Address(obj#2437))": "", "11861 ret obj_cmp -> Ok(1)": "cpu:340637992", "11862 call obj_cmp(Address(obj#2877), Address(obj#2437))": "", @@ -3177,7 +3177,7 @@ "11977 ret obj_cmp -> Ok(-1)": "cpu:342835277", "11978 call obj_cmp(Address(obj#2805), Address(obj#2449))": "", "11979 ret obj_cmp -> Ok(-1)": "cpu:342835963", - "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@73687fbb", + "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@c8d5c457", "11980 call obj_cmp(Address(obj#2817), Address(obj#2449))": "", "11981 ret obj_cmp -> Ok(-1)": "cpu:342836649", "11982 call obj_cmp(Address(obj#2829), Address(obj#2449))": "", @@ -7223,223 +7223,223 @@ "15655 call deserialize_from_bytes(Bytes(obj#2977))": "cpu:435884527, mem:266159338, objs:5@688bccae/2385@c2866c4c, stk:100@abd69abe", "15656 ret deserialize_from_bytes -> Err(Error(Context, ExceededLimit))": "cpu:435886788, mem:266165370", "15657 pop VM:88663680:sym#4767 -> Err(Error(Context, ExceededLimit))": " vm:1114112@939ed128/7@ae192e85", - "15658 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e1a15142/2385@c2866c4c, vm:-/-, stk:99@b480e09, auth:99@f0706ecf/1@5e083ce", + "15658 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e1a15142/2385@c2866c4c, vm:-/-, stk:99@b480e09, auth:99@f0706ecf/1@6847e66e", "15659 pop VM:88663680:sym#4749 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1566 ret symbol_new_from_slice -> Ok(Symbol(obj#1765))": "cpu:211712863, mem:132896823, objs:-/883@d847983", - "15660 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@77c0c023/2385@c2866c4c, vm:-/-, stk:98@a3e1398e, auth:98@5cdcd89/2@f6ee610d", + "15660 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@77c0c023/2385@c2866c4c, vm:-/-, stk:98@a3e1398e, auth:98@5cdcd89/2@ee3cf4", "15661 pop VM:88663680:sym#4731 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15662 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a4ca3187/2385@c2866c4c, vm:-/-, stk:97@1ff6fc47, auth:97@d20ed928/3@f99995b6", + "15662 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a4ca3187/2385@c2866c4c, vm:-/-, stk:97@1ff6fc47, auth:97@d20ed928/3@f13054f0", "15663 pop VM:88663680:sym#4713 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15664 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@24495b22/2385@c2866c4c, vm:-/-, stk:96@7b8171f2, auth:96@5788d49c/4@7559b287", + "15664 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@24495b22/2385@c2866c4c, vm:-/-, stk:96@7b8171f2, auth:96@5788d49c/4@8a5d9c1c", "15665 pop VM:88663680:sym#4695 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15666 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce6f0c34/2385@c2866c4c, vm:-/-, stk:95@6fb5fe01, auth:95@1eee3b18/5@ef631271", + "15666 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce6f0c34/2385@c2866c4c, vm:-/-, stk:95@6fb5fe01, auth:95@1eee3b18/5@4cb99d76", "15667 pop VM:88663680:sym#4677 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15668 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1731f207/2385@c2866c4c, vm:-/-, stk:94@935ab213, auth:94@179ecd46/6@ee6ec70f", + "15668 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1731f207/2385@c2866c4c, vm:-/-, stk:94@935ab213, auth:94@179ecd46/6@420e9b23", "15669 pop VM:88663680:sym#4659 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1567 call vec_new_from_slice(2)": "", - "15670 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6b7af8f/2385@c2866c4c, vm:-/-, stk:93@f10822a3, auth:93@ce449c1c/7@4a958812", + "15670 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6b7af8f/2385@c2866c4c, vm:-/-, stk:93@f10822a3, auth:93@ce449c1c/7@b5858252", "15671 pop VM:88663680:sym#4641 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15672 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8812107/2385@c2866c4c, vm:-/-, stk:92@a451b1b9, auth:92@ffe001d4/8@33fa1fbd", + "15672 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8812107/2385@c2866c4c, vm:-/-, stk:92@a451b1b9, auth:92@ffe001d4/8@53a6d4bf", "15673 pop VM:88663680:sym#4623 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15674 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2ee70ce0/2385@c2866c4c, vm:-/-, stk:91@eb0afd0e, auth:91@7e4754d8/9@7de0e451", + "15674 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2ee70ce0/2385@c2866c4c, vm:-/-, stk:91@eb0afd0e, auth:91@7e4754d8/9@9474775b", "15675 pop VM:88663680:sym#4605 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15676 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8c948d82/2385@c2866c4c, vm:-/-, stk:90@e74e5995, auth:90@96513e7d/10@c5a5650d", + "15676 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8c948d82/2385@c2866c4c, vm:-/-, stk:90@e74e5995, auth:90@96513e7d/10@650cbef5", "15677 pop VM:88663680:sym#4587 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15678 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f12ff1b3/2385@c2866c4c, vm:-/-, stk:89@6604cd6, auth:89@d0812138/11@3c15692a", + "15678 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f12ff1b3/2385@c2866c4c, vm:-/-, stk:89@6604cd6, auth:89@d0812138/11@d1035bc4", "15679 pop VM:88663680:sym#4569 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1568 ret vec_new_from_slice -> Ok(Vec(obj#1767))": "cpu:211715866, mem:132896919, objs:-/884@34badc4a", - "15680 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@29a8936c/2385@c2866c4c, vm:-/-, stk:88@e1efb8d2, auth:88@cd5771bf/12@2857e56d", + "15680 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@29a8936c/2385@c2866c4c, vm:-/-, stk:88@e1efb8d2, auth:88@cd5771bf/12@ac6e6254", "15681 pop VM:88663680:sym#4551 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15682 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5896f443/2385@c2866c4c, vm:-/-, stk:87@2d21dbee, auth:87@2bf3ee8e/13@26bc6c5d", + "15682 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5896f443/2385@c2866c4c, vm:-/-, stk:87@2d21dbee, auth:87@2bf3ee8e/13@da248ea6", "15683 pop VM:88663680:sym#4533 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15684 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@85ea2de6/2385@c2866c4c, vm:-/-, stk:86@2d293bcb, auth:86@5a169b63/14@b545f5f7", + "15684 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@85ea2de6/2385@c2866c4c, vm:-/-, stk:86@2d293bcb, auth:86@5a169b63/14@d9883908", "15685 pop VM:88663680:sym#4515 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15686 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7be36f1/2385@c2866c4c, vm:-/-, stk:85@e7dad090, auth:85@fcc167f9/15@851ecfa1", + "15686 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7be36f1/2385@c2866c4c, vm:-/-, stk:85@e7dad090, auth:85@fcc167f9/15@38971f27", "15687 pop VM:88663680:sym#4497 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15688 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8bcbf724/2385@c2866c4c, vm:-/-, stk:84@f5fba549, auth:84@9c5abac/16@fc084e35", + "15688 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8bcbf724/2385@c2866c4c, vm:-/-, stk:84@f5fba549, auth:84@9c5abac/16@a343394", "15689 pop VM:88663680:sym#4479 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1569 call symbol_new_from_slice(15)": "cpu:211720474, mem:132897094", - "15690 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ecfef337/2385@c2866c4c, vm:-/-, stk:83@5ee120dc, auth:83@fc052fd7/17@d70db7d8", + "15690 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ecfef337/2385@c2866c4c, vm:-/-, stk:83@5ee120dc, auth:83@fc052fd7/17@b1b84d13", "15691 pop VM:88663680:sym#4461 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15692 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1db0bb89/2385@c2866c4c, vm:-/-, stk:82@6c813208, auth:82@4dbaaa39/18@677478ca", + "15692 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1db0bb89/2385@c2866c4c, vm:-/-, stk:82@6c813208, auth:82@4dbaaa39/18@ad43b7d6", "15693 pop VM:88663680:sym#4443 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15694 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a6eb85eb/2385@c2866c4c, vm:-/-, stk:81@ed15a83b, auth:81@6a63417a/19@263df921", + "15694 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a6eb85eb/2385@c2866c4c, vm:-/-, stk:81@ed15a83b, auth:81@6a63417a/19@3a7578e2", "15695 pop VM:88663680:sym#4425 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15696 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@42f9edc2/2385@c2866c4c, vm:-/-, stk:80@bf8cd5bf, auth:80@94ce8370/20@603489ba", + "15696 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@42f9edc2/2385@c2866c4c, vm:-/-, stk:80@bf8cd5bf, auth:80@94ce8370/20@be59ebd8", "15697 pop VM:88663680:sym#4407 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15698 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f69d8a9/2385@c2866c4c, vm:-/-, stk:79@bb4fffae, auth:79@dd79bf55/21@695198ec", + "15698 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f69d8a9/2385@c2866c4c, vm:-/-, stk:79@bb4fffae, auth:79@dd79bf55/21@f446046", "15699 pop VM:88663680:sym#4389 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1570 ret symbol_new_from_slice -> Ok(Symbol(obj#1769))": "cpu:211723511, mem:132897189, objs:-/885@30279af3", - "15700 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8ee9ebd6/2385@c2866c4c, vm:-/-, stk:78@907f5783, auth:78@2ba65d18/22@f0bb730b", + "15700 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8ee9ebd6/2385@c2866c4c, vm:-/-, stk:78@907f5783, auth:78@2ba65d18/22@97189aa7", "15701 pop VM:88663680:sym#4371 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15702 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@435c438a/2385@c2866c4c, vm:-/-, stk:77@f5261b78, auth:77@701162dd/23@dcd11aeb", + "15702 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@435c438a/2385@c2866c4c, vm:-/-, stk:77@f5261b78, auth:77@701162dd/23@d5c4bb2", "15703 pop VM:88663680:sym#4353 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15704 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@94432e06/2385@c2866c4c, vm:-/-, stk:76@13588ffa, auth:76@2d055e71/24@fb4f5dbe", + "15704 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@94432e06/2385@c2866c4c, vm:-/-, stk:76@13588ffa, auth:76@2d055e71/24@1fb513d8", "15705 pop VM:88663680:sym#4335 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15706 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@18ba39df/2385@c2866c4c, vm:-/-, stk:75@8672b992, auth:75@ed119b0d/25@8266d9d0", + "15706 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@18ba39df/2385@c2866c4c, vm:-/-, stk:75@8672b992, auth:75@ed119b0d/25@5227c07b", "15707 pop VM:88663680:sym#4317 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15708 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6046ef1/2385@c2866c4c, vm:-/-, stk:74@2233dd85, auth:74@1c34a7fa/26@f40c2637", + "15708 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6046ef1/2385@c2866c4c, vm:-/-, stk:74@2233dd85, auth:74@1c34a7fa/26@d7c9922a", "15709 pop VM:88663680:sym#4299 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1571 call vec_new_from_slice(2)": "", - "15710 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d92fcb83/2385@c2866c4c, vm:-/-, stk:73@4a3b13e0, auth:73@206df3d8/27@bc908aa4", + "15710 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d92fcb83/2385@c2866c4c, vm:-/-, stk:73@4a3b13e0, auth:73@206df3d8/27@1087aaa1", "15711 pop VM:88663680:sym#4281 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15712 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bc538c/2385@c2866c4c, vm:-/-, stk:72@4cc962d8, auth:72@645944bd/28@2c501f92", + "15712 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bc538c/2385@c2866c4c, vm:-/-, stk:72@4cc962d8, auth:72@645944bd/28@ece95b57", "15713 pop VM:88663680:sym#4263 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15714 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59156251/2385@c2866c4c, vm:-/-, stk:71@c88d863b, auth:71@8827defa/29@bad4f2bc", + "15714 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59156251/2385@c2866c4c, vm:-/-, stk:71@c88d863b, auth:71@8827defa/29@301e206d", "15715 pop VM:88663680:sym#4245 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15716 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@15016d65/2385@c2866c4c, vm:-/-, stk:70@18da574b, auth:70@a98bd75d/30@30cbdc06", + "15716 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@15016d65/2385@c2866c4c, vm:-/-, stk:70@18da574b, auth:70@a98bd75d/30@f1e11bf8", "15717 pop VM:88663680:sym#4227 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15718 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4b9c5dc3/2385@c2866c4c, vm:-/-, stk:69@bbc14103, auth:69@fa30289b/31@9bec7c1e", + "15718 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4b9c5dc3/2385@c2866c4c, vm:-/-, stk:69@bbc14103, auth:69@fa30289b/31@6596aea4", "15719 pop VM:88663680:sym#4209 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1572 ret vec_new_from_slice -> Ok(Vec(obj#1771))": "cpu:211726514, mem:132897285, objs:-/886@4126b0bc", - "15720 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64aa149b/2385@c2866c4c, vm:-/-, stk:68@331c3ee5, auth:68@8aace2b/32@850af6e", + "15720 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64aa149b/2385@c2866c4c, vm:-/-, stk:68@331c3ee5, auth:68@8aace2b/32@79493271", "15721 pop VM:88663680:sym#4191 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15722 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e028c957/2385@c2866c4c, vm:-/-, stk:67@911b1b40, auth:67@e1fa2e12/33@70da9360", + "15722 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e028c957/2385@c2866c4c, vm:-/-, stk:67@911b1b40, auth:67@e1fa2e12/33@76581f18", "15723 pop VM:88663680:sym#4173 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15724 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6814f707/2385@c2866c4c, vm:-/-, stk:66@70ff85dd, auth:66@9f383a8/34@e87120aa", + "15724 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6814f707/2385@c2866c4c, vm:-/-, stk:66@70ff85dd, auth:66@9f383a8/34@866e30b3", "15725 pop VM:88663680:sym#4155 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15726 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ea604735/2385@c2866c4c, vm:-/-, stk:65@e0301773, auth:65@b9a97767/35@a0ae36b2", + "15726 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ea604735/2385@c2866c4c, vm:-/-, stk:65@e0301773, auth:65@b9a97767/35@9aafbfc1", "15727 pop VM:88663680:sym#4137 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15728 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a39ceda3/2385@c2866c4c, vm:-/-, stk:64@2b4c7a4d, auth:64@84fed67e/36@7b01f651", + "15728 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a39ceda3/2385@c2866c4c, vm:-/-, stk:64@2b4c7a4d, auth:64@84fed67e/36@7bbd5bde", "15729 pop VM:88663680:sym#4119 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1573 call symbol_new_from_slice(15)": "cpu:211731122, mem:132897460", - "15730 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9e738a1d/2385@c2866c4c, vm:-/-, stk:63@e69c8709, auth:63@2216aa93/37@ce95029a", + "15730 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9e738a1d/2385@c2866c4c, vm:-/-, stk:63@e69c8709, auth:63@2216aa93/37@c5249f45", "15731 pop VM:88663680:sym#4101 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15732 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f7876b60/2385@c2866c4c, vm:-/-, stk:62@7173313a, auth:62@f610ad3d/38@4736e33a", + "15732 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f7876b60/2385@c2866c4c, vm:-/-, stk:62@7173313a, auth:62@f610ad3d/38@6bca814a", "15733 pop VM:88663680:sym#4083 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15734 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e6353f53/2385@c2866c4c, vm:-/-, stk:61@afcdefe1, auth:61@97ccc004/39@e4490498", + "15734 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e6353f53/2385@c2866c4c, vm:-/-, stk:61@afcdefe1, auth:61@97ccc004/39@7f28590", "15735 pop VM:88663680:sym#4065 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15736 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd52b07/2385@c2866c4c, vm:-/-, stk:60@45327dbb, auth:60@bb22e4a2/40@fa5a50a8", + "15736 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd52b07/2385@c2866c4c, vm:-/-, stk:60@45327dbb, auth:60@bb22e4a2/40@c9b75ca2", "15737 pop VM:88663680:sym#4047 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15738 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d8a476e8/2385@c2866c4c, vm:-/-, stk:59@6d1d4a78, auth:59@4ba8f486/41@20fbc1ea", + "15738 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d8a476e8/2385@c2866c4c, vm:-/-, stk:59@6d1d4a78, auth:59@4ba8f486/41@21f0c67d", "15739 pop VM:88663680:sym#4029 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1574 ret symbol_new_from_slice -> Ok(Symbol(obj#1773))": "cpu:211734159, mem:132897555, objs:-/887@98974acb", - "15740 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@681f9263/2385@c2866c4c, vm:-/-, stk:58@35a77e43, auth:58@4c87870c/42@7d7423a5", + "15740 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@681f9263/2385@c2866c4c, vm:-/-, stk:58@35a77e43, auth:58@4c87870c/42@64695111", "15741 pop VM:88663680:sym#4011 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15742 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8743913a/2385@c2866c4c, vm:-/-, stk:57@e65a6d8b, auth:57@211b21d0/43@94c4c2fa", + "15742 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8743913a/2385@c2866c4c, vm:-/-, stk:57@e65a6d8b, auth:57@211b21d0/43@3a41bd0", "15743 pop VM:88663680:sym#3993 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15744 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8b95962/2385@c2866c4c, vm:-/-, stk:56@7df6e759, auth:56@5a778782/44@d5e55c80", + "15744 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8b95962/2385@c2866c4c, vm:-/-, stk:56@7df6e759, auth:56@5a778782/44@f54c5a1b", "15745 pop VM:88663680:sym#3975 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15746 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1d255476/2385@c2866c4c, vm:-/-, stk:55@c12ac3bb, auth:55@8edaf67e/45@7b650288", + "15746 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1d255476/2385@c2866c4c, vm:-/-, stk:55@c12ac3bb, auth:55@8edaf67e/45@b8707c8b", "15747 pop VM:88663680:sym#3957 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15748 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a695e9d7/2385@c2866c4c, vm:-/-, stk:54@78bb1f2, auth:54@d04d0718/46@5c77734a", + "15748 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a695e9d7/2385@c2866c4c, vm:-/-, stk:54@78bb1f2, auth:54@d04d0718/46@1118f899", "15749 pop VM:88663680:sym#3939 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1575 call vec_new_from_slice(2)": "", - "15750 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6014b02/2385@c2866c4c, vm:-/-, stk:53@256a64ec, auth:53@5f88b02f/47@307eee37", + "15750 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6014b02/2385@c2866c4c, vm:-/-, stk:53@256a64ec, auth:53@5f88b02f/47@c5514991", "15751 pop VM:88663680:sym#3921 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15752 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5280520d/2385@c2866c4c, vm:-/-, stk:52@c2f98259, auth:52@784dc0bf/48@7248573d", + "15752 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5280520d/2385@c2866c4c, vm:-/-, stk:52@c2f98259, auth:52@784dc0bf/48@28b0fab5", "15753 pop VM:88663680:sym#3903 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15754 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7e2e2d7a/2385@c2866c4c, vm:-/-, stk:51@d5b0995, auth:51@522c6456/49@70066174", + "15754 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7e2e2d7a/2385@c2866c4c, vm:-/-, stk:51@d5b0995, auth:51@522c6456/49@d2131b61", "15755 pop VM:88663680:sym#3885 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15756 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@75b4840e/2385@c2866c4c, vm:-/-, stk:50@d0a28170, auth:50@2cfdfd38/50@721402ff", + "15756 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@75b4840e/2385@c2866c4c, vm:-/-, stk:50@d0a28170, auth:50@2cfdfd38/50@20cf5c10", "15757 pop VM:88663680:sym#3867 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15758 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21576ae6/2385@c2866c4c, vm:-/-, stk:49@e851ee31, auth:49@a59e1027/51@e85f0bfb", + "15758 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21576ae6/2385@c2866c4c, vm:-/-, stk:49@e851ee31, auth:49@a59e1027/51@e8d7c52f", "15759 pop VM:88663680:sym#3849 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1576 ret vec_new_from_slice -> Ok(Vec(obj#1775))": "cpu:211737162, mem:132897651, objs:-/888@9451c10e", - "15760 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b75d2348/2385@c2866c4c, vm:-/-, stk:48@1c0f6ed3, auth:48@fbdba925/52@2cfb138c", + "15760 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b75d2348/2385@c2866c4c, vm:-/-, stk:48@1c0f6ed3, auth:48@fbdba925/52@7838a61e", "15761 pop VM:88663680:sym#3831 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15762 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780be6/2385@c2866c4c, vm:-/-, stk:47@7db5dc5e, auth:47@b5bf038b/53@8d92a2f3", + "15762 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780be6/2385@c2866c4c, vm:-/-, stk:47@7db5dc5e, auth:47@b5bf038b/53@b5688ed4", "15763 pop VM:88663680:sym#3813 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15764 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c55a0112/2385@c2866c4c, vm:-/-, stk:46@721ace68, auth:46@56765c20/54@e8a98b5e", + "15764 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c55a0112/2385@c2866c4c, vm:-/-, stk:46@721ace68, auth:46@56765c20/54@fb25b580", "15765 pop VM:88663680:sym#3795 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15766 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5927544d/2385@c2866c4c, vm:-/-, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@58a526c", + "15766 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5927544d/2385@c2866c4c, vm:-/-, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@41661144", "15767 pop VM:88663680:sym#3777 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15768 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f0ef7bde/2385@c2866c4c, vm:-/-, stk:44@7f4eec7a, auth:44@9c848851/56@5d663ae8", + "15768 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f0ef7bde/2385@c2866c4c, vm:-/-, stk:44@7f4eec7a, auth:44@9c848851/56@1d5edd76", "15769 pop VM:88663680:sym#3759 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1577 call symbol_new_from_slice(15)": "cpu:211741770, mem:132897826", - "15770 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59a04dd9/2385@c2866c4c, vm:-/-, stk:43@f25c04dc, auth:43@19b6ddf8/57@5f2e1a5a", + "15770 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59a04dd9/2385@c2866c4c, vm:-/-, stk:43@f25c04dc, auth:43@19b6ddf8/57@2c2c27c8", "15771 pop VM:88663680:sym#3741 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15772 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a236cae6/2385@c2866c4c, vm:-/-, stk:42@59b7cb1b, auth:42@88d2da86/58@438026", + "15772 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a236cae6/2385@c2866c4c, vm:-/-, stk:42@59b7cb1b, auth:42@88d2da86/58@76f8898c", "15773 pop VM:88663680:sym#3723 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15774 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e18f418d/2385@c2866c4c, vm:-/-, stk:41@2a41e58c, auth:41@a6bed382/59@4101df9d", + "15774 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e18f418d/2385@c2866c4c, vm:-/-, stk:41@2a41e58c, auth:41@a6bed382/59@54f37be5", "15775 pop VM:88663680:sym#3705 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15776 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb79409a/2385@c2866c4c, vm:-/-, stk:40@98e7cae6, auth:40@82ad913a/60@2ea2408c", + "15776 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb79409a/2385@c2866c4c, vm:-/-, stk:40@98e7cae6, auth:40@82ad913a/60@286b9a23", "15777 pop VM:88663680:sym#3687 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15778 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9bf2215e/2385@c2866c4c, vm:-/-, stk:39@4e38e93e, auth:39@72a2863a/61@632dff6c", + "15778 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9bf2215e/2385@c2866c4c, vm:-/-, stk:39@4e38e93e, auth:39@72a2863a/61@1ed72e4c", "15779 pop VM:88663680:sym#3669 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1578 ret symbol_new_from_slice -> Ok(Symbol(obj#1777))": "cpu:211744807, mem:132897921, objs:-/889@604c542a", - "15780 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@60ecd793/2385@c2866c4c, vm:-/-, stk:38@ce27915d, auth:38@be72f42c/62@15bf639a", + "15780 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@60ecd793/2385@c2866c4c, vm:-/-, stk:38@ce27915d, auth:38@be72f42c/62@35ce7299", "15781 pop VM:88663680:sym#3651 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15782 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e5930fd6/2385@c2866c4c, vm:-/-, stk:37@f67be49e, auth:37@bc299701/63@26825cfc", + "15782 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e5930fd6/2385@c2866c4c, vm:-/-, stk:37@f67be49e, auth:37@bc299701/63@b6694b18", "15783 pop VM:88663680:sym#3633 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15784 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7c4c7d00/2385@c2866c4c, vm:-/-, stk:36@344264f8, auth:36@52d76081/64@b64a504a", + "15784 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7c4c7d00/2385@c2866c4c, vm:-/-, stk:36@344264f8, auth:36@52d76081/64@5a95e337", "15785 pop VM:88663680:sym#3615 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15786 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd01759/2385@c2866c4c, vm:-/-, stk:35@bd233f57, auth:35@6ac911da/65@885483fb", + "15786 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd01759/2385@c2866c4c, vm:-/-, stk:35@bd233f57, auth:35@6ac911da/65@d1b42823", "15787 pop VM:88663680:sym#3597 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15788 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f375813c/2385@c2866c4c, vm:-/-, stk:34@8c1e22e, auth:34@3f742c7d/66@542acd18", + "15788 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f375813c/2385@c2866c4c, vm:-/-, stk:34@8c1e22e, auth:34@3f742c7d/66@1a43deff", "15789 pop VM:88663680:sym#3579 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1579 call vec_new_from_slice(2)": "", - "15790 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@904fedee/2385@c2866c4c, vm:-/-, stk:33@c7114ce6, auth:33@69141765/67@7275024f", + "15790 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@904fedee/2385@c2866c4c, vm:-/-, stk:33@c7114ce6, auth:33@69141765/67@11cfaf4b", "15791 pop VM:88663680:sym#3561 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15792 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64e964ae/2385@c2866c4c, vm:-/-, stk:32@b30db134, auth:32@824c08cd/68@e2cb1b88", + "15792 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64e964ae/2385@c2866c4c, vm:-/-, stk:32@b30db134, auth:32@824c08cd/68@8dead7ae", "15793 pop VM:88663680:sym#3543 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15794 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f2148a0/2385@c2866c4c, vm:-/-, stk:31@9025202a, auth:31@a2c8cd3d/69@f33cdb81", + "15794 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f2148a0/2385@c2866c4c, vm:-/-, stk:31@9025202a, auth:31@a2c8cd3d/69@c941c4d9", "15795 pop VM:88663680:sym#3525 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15796 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63f6f9a9/2385@c2866c4c, vm:-/-, stk:30@8353406, auth:30@9a437baf/70@45d6d618", + "15796 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63f6f9a9/2385@c2866c4c, vm:-/-, stk:30@8353406, auth:30@9a437baf/70@b1f5c845", "15797 pop VM:88663680:sym#3507 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15798 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ab50c74/2385@c2866c4c, vm:-/-, stk:29@8e0db03, auth:29@b886d50f/71@35001671", + "15798 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ab50c74/2385@c2866c4c, vm:-/-, stk:29@8e0db03, auth:29@b886d50f/71@7f8d0e38", "15799 pop VM:88663680:sym#3489 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1580 ret vec_new_from_slice -> Ok(Vec(obj#1779))": "cpu:211747810, mem:132898017, objs:-/890@f0dbb3c", - "15800 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7348236e/2385@c2866c4c, vm:-/-, stk:28@a0c273c1, auth:28@3ff20958/72@47e990d6", + "15800 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7348236e/2385@c2866c4c, vm:-/-, stk:28@a0c273c1, auth:28@3ff20958/72@cc03a71d", "15801 pop VM:88663680:sym#3471 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15802 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@46838bca/2385@c2866c4c, vm:-/-, stk:27@1716fbf9, auth:27@e7b679f1/73@4cc9b3c9", + "15802 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@46838bca/2385@c2866c4c, vm:-/-, stk:27@1716fbf9, auth:27@e7b679f1/73@5ce5cc91", "15803 pop VM:88663680:sym#3453 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15804 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8a29114a/2385@c2866c4c, vm:-/-, stk:26@be817170, auth:26@c7dd0c4/74@3bc5837c", + "15804 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8a29114a/2385@c2866c4c, vm:-/-, stk:26@be817170, auth:26@c7dd0c4/74@5e867e61", "15805 pop VM:88663680:sym#3435 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15806 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7538824d/2385@c2866c4c, vm:-/-, stk:25@aa930a00, auth:25@4bad9d16/75@aad22d1f", + "15806 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7538824d/2385@c2866c4c, vm:-/-, stk:25@aa930a00, auth:25@4bad9d16/75@5bef4fdd", "15807 pop VM:88663680:sym#3417 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15808 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d7979c5/2385@c2866c4c, vm:-/-, stk:24@56df4b81, auth:24@48cb09aa/76@f27f89c7", + "15808 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d7979c5/2385@c2866c4c, vm:-/-, stk:24@56df4b81, auth:24@48cb09aa/76@f021ea1", "15809 pop VM:88663680:sym#3399 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1581 call symbol_new_from_slice(15)": "cpu:211752418, mem:132898192", - "15810 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dece707c/2385@c2866c4c, vm:-/-, stk:23@35ad5b0e, auth:23@d1a25bf/77@c6cde3a3", + "15810 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dece707c/2385@c2866c4c, vm:-/-, stk:23@35ad5b0e, auth:23@d1a25bf/77@37717916", "15811 pop VM:88663680:sym#3381 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15812 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@50f7e43c/2385@c2866c4c, vm:-/-, stk:22@2f51cee1, auth:22@16c05aab/78@8a426f3d", + "15812 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@50f7e43c/2385@c2866c4c, vm:-/-, stk:22@2f51cee1, auth:22@16c05aab/78@c4429de7", "15813 pop VM:88663680:sym#3363 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15814 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1dfc95c6/2385@c2866c4c, vm:-/-, stk:21@7e8e04d5, auth:21@3b832e86/79@a82ff22", + "15814 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1dfc95c6/2385@c2866c4c, vm:-/-, stk:21@7e8e04d5, auth:21@3b832e86/79@1e7a4929", "15815 pop VM:88663680:sym#3345 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15816 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f75e7e24/2385@c2866c4c, vm:-/-, stk:20@d21d7cff, auth:20@5f1067df/80@bf2399d8", + "15816 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f75e7e24/2385@c2866c4c, vm:-/-, stk:20@d21d7cff, auth:20@5f1067df/80@185ab1fb", "15817 pop VM:88663680:sym#3327 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15818 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbe03f55/2385@c2866c4c, vm:-/-, stk:19@77ea2e51, auth:19@58fdc3c6/81@77a3547b", + "15818 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbe03f55/2385@c2866c4c, vm:-/-, stk:19@77ea2e51, auth:19@58fdc3c6/81@fc360f4b", "15819 pop VM:88663680:sym#3309 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1582 ret symbol_new_from_slice -> Ok(Symbol(obj#1781))": "cpu:211755455, mem:132898287, objs:-/891@568f0514", - "15820 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d6e479d0/2385@c2866c4c, vm:-/-, stk:18@c9502770, auth:18@fdee93cd/82@3492445e", + "15820 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d6e479d0/2385@c2866c4c, vm:-/-, stk:18@c9502770, auth:18@fdee93cd/82@11733ef8", "15821 pop VM:88663680:sym#3291 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15822 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@da4b3063/2385@c2866c4c, vm:-/-, stk:17@e515b98b, auth:17@aaf504d6/83@7e164200", + "15822 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@da4b3063/2385@c2866c4c, vm:-/-, stk:17@e515b98b, auth:17@aaf504d6/83@2968194d", "15823 pop VM:88663680:sym#3273 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15824 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5d120581/2385@c2866c4c, vm:-/-, stk:16@f096a1ef, auth:16@ab47d532/84@cbfb740f", + "15824 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5d120581/2385@c2866c4c, vm:-/-, stk:16@f096a1ef, auth:16@ab47d532/84@62d501cd", "15825 pop VM:88663680:sym#3255 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15826 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f10dc2e/2385@c2866c4c, vm:-/-, stk:15@e1361023, auth:15@b9d655c6/85@73f3e6c1", + "15826 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f10dc2e/2385@c2866c4c, vm:-/-, stk:15@e1361023, auth:15@b9d655c6/85@2683aeac", "15827 pop VM:88663680:sym#3237 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15828 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@34c4d52d/2385@c2866c4c, vm:-/-, stk:14@f0334746, auth:14@b810afca/86@c86b8426", + "15828 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@34c4d52d/2385@c2866c4c, vm:-/-, stk:14@f0334746, auth:14@b810afca/86@4f274995", "15829 pop VM:88663680:sym#3219 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1583 call vec_new_from_slice(2)": "", - "15830 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21c30808/2385@c2866c4c, vm:-/-, stk:13@1b1a4865, auth:13@dbd3a68b/87@6577c8fa", + "15830 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21c30808/2385@c2866c4c, vm:-/-, stk:13@1b1a4865, auth:13@dbd3a68b/87@619a9230", "15831 pop VM:88663680:sym#3201 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15832 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f88259b/2385@c2866c4c, vm:-/-, stk:12@d605a44b, auth:12@88878566/88@cb3102ee", + "15832 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f88259b/2385@c2866c4c, vm:-/-, stk:12@d605a44b, auth:12@88878566/88@589e2244", "15833 pop VM:88663680:sym#3183 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15834 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1807fe6b/2385@c2866c4c, vm:-/-, stk:11@58cd774d, auth:11@a85d5b0e/89@ed6ceead", + "15834 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1807fe6b/2385@c2866c4c, vm:-/-, stk:11@58cd774d, auth:11@a85d5b0e/89@49340d44", "15835 pop VM:88663680:sym#3165 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15836 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@52ff6dcc/2385@c2866c4c, vm:-/-, stk:10@a09fab6d, auth:10@e7bd3540/90@ec16c429", + "15836 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@52ff6dcc/2385@c2866c4c, vm:-/-, stk:10@a09fab6d, auth:10@e7bd3540/90@28ad898c", "15837 pop VM:88663680:sym#3147 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15838 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2b28efe4/2385@c2866c4c, vm:-/-, stk:9@2f48cbca, auth:9@ec33f68f/91@395c731a", + "15838 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2b28efe4/2385@c2866c4c, vm:-/-, stk:9@2f48cbca, auth:9@ec33f68f/91@7c5607ea", "15839 pop VM:88663680:sym#3129 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1584 ret vec_new_from_slice -> Ok(Vec(obj#1783))": "cpu:211758458, mem:132898383, objs:-/892@b809db19", - "15840 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@791d89c4/2385@c2866c4c, vm:-/-, stk:8@b14c9ea8, auth:8@8160ef64/92@ab21f8cb", + "15840 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@791d89c4/2385@c2866c4c, vm:-/-, stk:8@b14c9ea8, auth:8@8160ef64/92@93ba961f", "15841 pop VM:88663680:sym#3111 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15842 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63e2c7f8/2385@c2866c4c, vm:-/-, stk:7@39fbd9ac, auth:7@ebcc31f8/93@4e236eef", + "15842 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63e2c7f8/2385@c2866c4c, vm:-/-, stk:7@39fbd9ac, auth:7@ebcc31f8/93@5f402e1c", "15843 pop VM:88663680:sym#3093 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15844 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ad68f76/2385@c2866c4c, vm:-/-, stk:6@8d6b882d, auth:6@9fcc9592/94@e1aded09", + "15844 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ad68f76/2385@c2866c4c, vm:-/-, stk:6@8d6b882d, auth:6@9fcc9592/94@98b76ce1", "15845 pop VM:88663680:sym#3075 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15846 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@73d7698b/2385@c2866c4c, vm:-/-, stk:5@7a2b3d2e, auth:5@c8b580f0/95@67806d25", + "15846 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@73d7698b/2385@c2866c4c, vm:-/-, stk:5@7a2b3d2e, auth:5@c8b580f0/95@abb1dd2f", "15847 pop VM:88663680:sym#3057 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15848 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6bbe61fa/2385@c2866c4c, vm:-/-, stk:4@17923498, auth:4@9306758a/96@967230a4", + "15848 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6bbe61fa/2385@c2866c4c, vm:-/-, stk:4@17923498, auth:4@9306758a/96@b9c97f81", "15849 pop VM:88663680:sym#3039 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1585 call symbol_new_from_slice(15)": "cpu:211763066, mem:132898558", - "15850 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f03e93d/2385@c2866c4c, vm:-/-, stk:3@a584f97e, auth:3@af82ce81/97@43542813", + "15850 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f03e93d/2385@c2866c4c, vm:-/-, stk:3@a584f97e, auth:3@af82ce81/97@a0a65ff4", "15851 pop VM:88663680:sym#3021 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15852 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3739fd65/2385@c2866c4c, vm:-/-, stk:2@2907590a, auth:2@898e1e4c/98@1ab10348", + "15852 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3739fd65/2385@c2866c4c, vm:-/-, stk:2@2907590a, auth:2@898e1e4c/98@e4794f3a", "15853 pop VM:88663680:sym#3003 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15854 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@389fc46f/2385@c2866c4c, vm:-/-, stk:1@db4954c8, auth:1@b97e1980/99@1605bafa", + "15854 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@389fc46f/2385@c2866c4c, vm:-/-, stk:1@db4954c8, auth:1@b97e1980/99@ea63ca6b", "15855 pop VM:88663680:call -> Err(Error(Auth, InvalidAction))": " vm:1114112@a6f378b8/7@ae192e85", "15856 ret call -> Err(Error(Auth, InvalidAction))": " objs:-/2385@c2866c4c, vm:-/-, stk:-, auth:-/-", "15857 end": "cpu:435886788, mem:266165370, prngs:-/9b4a753, objs:-/2385@c2866c4c, vm:-/-, evt:-, store:-/101@45d5c29c, foot:101@83cc2c7c, stk:-, auth:-/-", diff --git a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_too_deep_xdr_deserialization.json b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_too_deep_xdr_deserialization.json index 09ac24a41..9b4ff4b82 100644 --- a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_too_deep_xdr_deserialization.json +++ b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_with_too_deep_xdr_deserialization.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2011761, mem:1318326, objs:-/5@a60269d1, auth:1@6c2ade56/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2012447", - " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@525240f7", + " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@72b99d18", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2015602, mem:1318438, objs:-/6@a06c2cba", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2053467, mem:1319944, objs:-/7@77a0a1db, store:-/2@ca7bd8a8, foot:2@c7956e9e, auth:-/1@c716b1ea", " 13 call bytes_new_from_slice(1723)": "cpu:2053722, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4053930, mem:2637748, objs:-/12@546c0606, auth:1@a7879343/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4054616", - " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@c690470a", + " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@a19a51b4", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4057771, mem:2637860, objs:-/13@8641253d", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4099512, mem:2639552, objs:-/14@20711f65, store:-/3@cd31c995, foot:3@fb973c1e, auth:-/1@f39d17e5", " 25 call bytes_new_from_slice(1723)": "cpu:4099767, auth:-/-", @@ -33,7 +33,7 @@ " 31 call create_contract(Address(obj#33), Bytes(obj#31), Bytes(obj#35))": "", " 32 call obj_cmp(Address(obj#37), Address(obj#33))": "cpu:6099975, mem:3957356, objs:-/19@51e48355, auth:1@cbbd7837/-", " 33 ret obj_cmp -> Ok(0)": "cpu:6100661", - " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@a4cf6e03", + " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@47f29939", " 35 ret get_ledger_network_id -> Ok(Bytes(obj#39))": "cpu:6103816, mem:3957468, objs:-/20@81732572", " 36 ret create_contract -> Ok(Address(obj#41))": "cpu:6144911, mem:3959346, objs:-/21@69ad5c25, store:-/4@b3a15027, foot:4@fa0f6bfc, auth:-/1@f7095008", " 37 call bytes_new_from_slice(1723)": "cpu:6145166, auth:-/-", @@ -45,7 +45,7 @@ " 43 call create_contract(Address(obj#47), Bytes(obj#45), Bytes(obj#49))": "", " 44 call obj_cmp(Address(obj#51), Address(obj#47))": "cpu:8145395, mem:5277150, objs:-/26@a092b5f, auth:1@67261b2f/-", " 45 ret obj_cmp -> Ok(0)": "cpu:8146081", - " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@11a86388", + " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@24809fc3", " 47 ret get_ledger_network_id -> Ok(Bytes(obj#53))": "cpu:8149236, mem:5277262, objs:-/27@a7bff74e", " 48 ret create_contract -> Ok(Address(obj#55))": "cpu:8197003, mem:5279326, objs:-/28@9670d0cc, store:-/5@58e9c9eb, foot:5@81d1a3bf, auth:-/1@83ee389", " 49 call bytes_new_from_slice(1723)": "cpu:8197258, auth:-/-", @@ -57,7 +57,7 @@ " 55 call create_contract(Address(obj#61), Bytes(obj#59), Bytes(obj#63))": "", " 56 call obj_cmp(Address(obj#65), Address(obj#61))": "cpu:10197487, mem:6597130, objs:-/33@9dddfe41, auth:1@2aa08219/-", " 57 ret obj_cmp -> Ok(0)": "cpu:10198173", - " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@c0063591", + " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@63a8e160", " 59 ret get_ledger_network_id -> Ok(Bytes(obj#67))": "cpu:10201328, mem:6597242, objs:-/34@6254c4ce", " 60 ret create_contract -> Ok(Address(obj#69))": "cpu:10249147, mem:6599492, objs:-/35@be977224, store:-/6@889e1830, foot:6@364e4b9c, auth:-/1@47f4d18a", " 61 call bytes_new_from_slice(1723)": "cpu:10249402, auth:-/-", @@ -69,7 +69,7 @@ " 67 call create_contract(Address(obj#75), Bytes(obj#73), Bytes(obj#77))": "", " 68 call obj_cmp(Address(obj#79), Address(obj#75))": "cpu:12249631, mem:7917296, objs:-/40@2f55f569, auth:1@e8341f65/-", " 69 ret obj_cmp -> Ok(0)": "cpu:12250317", - " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@ebc115d9", + " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@9c248d", " 71 ret get_ledger_network_id -> Ok(Bytes(obj#81))": "cpu:12253472, mem:7917408, objs:-/41@b3ed0b57", " 72 ret create_contract -> Ok(Address(obj#83))": "cpu:12303367, mem:7919844, objs:-/42@cd5ce2c6, store:-/7@b061db62, foot:7@9320c72c, auth:-/1@1b3d937c", " 73 call bytes_new_from_slice(1723)": "cpu:12303622, auth:-/-", @@ -81,7 +81,7 @@ " 79 call create_contract(Address(obj#89), Bytes(obj#87), Bytes(obj#91))": "", " 80 call obj_cmp(Address(obj#93), Address(obj#89))": "cpu:14303851, mem:9237648, objs:-/47@92c2cfa5, auth:1@b20998ae/-", " 81 ret obj_cmp -> Ok(0)": "cpu:14304537", - " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@59dea197", + " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@f80b6a67", " 83 ret get_ledger_network_id -> Ok(Bytes(obj#95))": "cpu:14307692, mem:9237760, objs:-/48@149b423f", " 84 ret create_contract -> Ok(Address(obj#97))": "cpu:14358717, mem:9240382, objs:-/49@3bf0a33b, store:-/8@786ebbf2, foot:8@ee264d76, auth:-/1@221f74c6", " 85 call bytes_new_from_slice(1723)": "cpu:14358972, auth:-/-", @@ -93,7 +93,7 @@ " 91 call create_contract(Address(obj#103), Bytes(obj#101), Bytes(obj#105))": "", " 92 call obj_cmp(Address(obj#107), Address(obj#103))": "cpu:16359220, mem:10558186, objs:-/54@da02b960, auth:1@48d6a5b6/-", " 93 ret obj_cmp -> Ok(0)": "cpu:16359906", - " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@219d787c", + " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@81156bb8", " 95 ret get_ledger_network_id -> Ok(Bytes(obj#109))": "cpu:16363061, mem:10558298, objs:-/55@bb3ae225", " 96 ret create_contract -> Ok(Address(obj#111))": "cpu:16412374, mem:10561106, objs:-/56@51ce6ca1, store:-/9@f38d0f95, foot:9@5c828c77, auth:-/1@a42343f5", " 97 call bytes_new_from_slice(1723)": "cpu:16412629, auth:-/-", @@ -105,7 +105,7 @@ " 103 call create_contract(Address(obj#117), Bytes(obj#115), Bytes(obj#119))": "", " 104 call obj_cmp(Address(obj#121), Address(obj#117))": "cpu:18412877, mem:11878910, objs:-/61@61c34d4e, auth:1@f96e0eaf/-", " 105 ret obj_cmp -> Ok(0)": "cpu:18413563", - " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@cc6b59fa", + " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@8cefe257", " 107 ret get_ledger_network_id -> Ok(Bytes(obj#123))": "cpu:18416718, mem:11879022, objs:-/62@99cabf3b", " 108 ret create_contract -> Ok(Address(obj#125))": "cpu:18472685, mem:11882016, objs:-/63@7f4b322d, store:-/10@ef434c8d, foot:10@317c61e3, auth:-/1@d0418fbc", " 109 call bytes_new_from_slice(1723)": "cpu:18472940, auth:-/-", @@ -117,7 +117,7 @@ " 115 call create_contract(Address(obj#131), Bytes(obj#129), Bytes(obj#133))": "", " 116 call obj_cmp(Address(obj#135), Address(obj#131))": "cpu:20473188, mem:13199820, objs:-/68@7f9f7f94, auth:1@5cc0479e/-", " 117 ret obj_cmp -> Ok(0)": "cpu:20473874", - " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@b017d899", + " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@d336881f", " 119 ret get_ledger_network_id -> Ok(Bytes(obj#137))": "cpu:20477029, mem:13199932, objs:-/69@80e69e15", " 120 ret create_contract -> Ok(Address(obj#139))": "cpu:20534058, mem:13203112, objs:-/70@1ab41456, store:-/11@e6b97191, foot:11@bd373101, auth:-/1@6fd7cdbe", " 121 call bytes_new_from_slice(1723)": "cpu:20534313, auth:-/-", @@ -129,7 +129,7 @@ " 127 call create_contract(Address(obj#145), Bytes(obj#143), Bytes(obj#147))": "", " 128 call obj_cmp(Address(obj#149), Address(obj#145))": "cpu:22534561, mem:14520916, objs:-/75@942af2dd, auth:1@4d46cea6/-", " 129 ret obj_cmp -> Ok(0)": "cpu:22535247", - " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@c791f0c8", + " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@7324855f", " 131 ret get_ledger_network_id -> Ok(Bytes(obj#151))": "cpu:22538402, mem:14521028, objs:-/76@f11550b8", " 132 ret create_contract -> Ok(Address(obj#153))": "cpu:22596497, mem:14524394, objs:-/77@9f3fd10e, store:-/12@7c2f9ba3, foot:12@35d2fc7a, auth:-/1@3eabf35c", " 133 call bytes_new_from_slice(1723)": "cpu:22596752, auth:-/-", @@ -141,7 +141,7 @@ " 139 call create_contract(Address(obj#159), Bytes(obj#157), Bytes(obj#161))": "", " 140 call obj_cmp(Address(obj#163), Address(obj#159))": "cpu:24597000, mem:15842198, objs:-/82@21bbc84c, auth:1@9e1b78d/-", " 141 ret obj_cmp -> Ok(0)": "cpu:24597686", - " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@6f759f1a", + " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@44fbf6bc", " 143 ret get_ledger_network_id -> Ok(Bytes(obj#165))": "cpu:24600841, mem:15842310, objs:-/83@e08739a8", " 144 ret create_contract -> Ok(Address(obj#167))": "cpu:24659996, mem:15845862, objs:-/84@ae4d6e4e, store:-/13@2b941c36, foot:13@62a1620d, auth:-/1@aee68f92", " 145 call bytes_new_from_slice(1723)": "cpu:24660251, auth:-/-", @@ -153,7 +153,7 @@ " 151 call create_contract(Address(obj#173), Bytes(obj#171), Bytes(obj#175))": "", " 152 call obj_cmp(Address(obj#177), Address(obj#173))": "cpu:26660499, mem:17163666, objs:-/89@5858b5f0, auth:1@445de93b/-", " 153 ret obj_cmp -> Ok(0)": "cpu:26661185", - " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@3ba9ffd2", + " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@ca57c8bc", " 155 ret get_ledger_network_id -> Ok(Bytes(obj#179))": "cpu:26664340, mem:17163778, objs:-/90@5826fb63", " 156 ret create_contract -> Ok(Address(obj#181))": "cpu:26722783, mem:17167516, objs:-/91@cd1cc65f, store:-/14@c33862ef, foot:14@4ba8b225, auth:-/1@617a1eda", " 157 call bytes_new_from_slice(1723)": "cpu:26723038, auth:-/-", @@ -165,7 +165,7 @@ " 163 call create_contract(Address(obj#187), Bytes(obj#185), Bytes(obj#189))": "", " 164 call obj_cmp(Address(obj#191), Address(obj#187))": "cpu:28723286, mem:18485320, objs:-/96@d11f253b, auth:1@225cfc41/-", " 165 ret obj_cmp -> Ok(0)": "cpu:28723972", - " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@2cc903b5", + " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@a1637ff7", " 167 ret get_ledger_network_id -> Ok(Bytes(obj#193))": "cpu:28727127, mem:18485432, objs:-/97@dd3834b9", " 168 ret create_contract -> Ok(Address(obj#195))": "cpu:28788408, mem:18489356, objs:-/98@ddc288ce, store:-/15@8f2e00df, foot:15@85a5128f, auth:-/1@84c703c7", " 169 call bytes_new_from_slice(1723)": "cpu:28788663, auth:-/-", @@ -177,7 +177,7 @@ " 175 call create_contract(Address(obj#201), Bytes(obj#199), Bytes(obj#203))": "", " 176 call obj_cmp(Address(obj#205), Address(obj#201))": "cpu:30788911, mem:19807160, objs:-/103@6ee6745e, auth:1@f8067266/-", " 177 ret obj_cmp -> Ok(0)": "cpu:30789597", - " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@1c1b5ee3", + " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@e817f19c", " 179 ret get_ledger_network_id -> Ok(Bytes(obj#207))": "cpu:30792752, mem:19807272, objs:-/104@da675632", " 180 ret create_contract -> Ok(Address(obj#209))": "cpu:30855171, mem:19811382, objs:-/105@3c250e80, store:-/16@56a18dab, foot:16@3031c757, auth:-/1@6c77c0c9", " 181 call bytes_new_from_slice(1723)": "cpu:30855426, auth:-/-", @@ -189,7 +189,7 @@ " 187 call create_contract(Address(obj#215), Bytes(obj#213), Bytes(obj#217))": "", " 188 call obj_cmp(Address(obj#219), Address(obj#215))": "cpu:32855695, mem:21129186, objs:-/110@3460445f, auth:1@6f395edd/-", " 189 ret obj_cmp -> Ok(0)": "cpu:32856381", - " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@d3530f4c", + " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@1357ae2d", " 191 ret get_ledger_network_id -> Ok(Bytes(obj#221))": "cpu:32859536, mem:21129298, objs:-/111@88602a33", " 192 ret create_contract -> Ok(Address(obj#223))": "cpu:32925835, mem:21133594, objs:-/112@1a30dd19, store:-/17@a1cdad8, foot:17@e114d7d6, auth:-/1@37251ff7", " 193 call bytes_new_from_slice(1723)": "cpu:32926090, auth:-/-", @@ -201,7 +201,7 @@ " 199 call create_contract(Address(obj#229), Bytes(obj#227), Bytes(obj#231))": "", " 200 call obj_cmp(Address(obj#233), Address(obj#229))": "cpu:34926359, mem:22451398, objs:-/117@f769caeb, auth:1@93079846/-", " 201 ret obj_cmp -> Ok(0)": "cpu:34927045", - " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@80a698b9", + " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@507bf132", " 203 ret get_ledger_network_id -> Ok(Bytes(obj#235))": "cpu:34930200, mem:22451510, objs:-/118@a79d010f", " 204 ret create_contract -> Ok(Address(obj#237))": "cpu:34991975, mem:22455992, objs:-/119@faf87716, store:-/18@284aadf3, foot:18@4481d0f6, auth:-/1@79adba34", " 205 call bytes_new_from_slice(1723)": "cpu:34992230, auth:-/-", @@ -213,7 +213,7 @@ " 211 call create_contract(Address(obj#243), Bytes(obj#241), Bytes(obj#245))": "", " 212 call obj_cmp(Address(obj#247), Address(obj#243))": "cpu:36992499, mem:23773796, objs:-/124@ddd780c4, auth:1@3e29297a/-", " 213 ret obj_cmp -> Ok(0)": "cpu:36993185", - " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@e22dec68", + " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@9a48546", " 215 ret get_ledger_network_id -> Ok(Bytes(obj#249))": "cpu:36996340, mem:23773908, objs:-/125@510120e0", " 216 ret create_contract -> Ok(Address(obj#251))": "cpu:37060193, mem:23778576, objs:-/126@c484c412, store:-/19@5d26a578, foot:19@fbbb733f, auth:-/1@43f44fbb", " 217 call bytes_new_from_slice(1723)": "cpu:37060448, auth:-/-", @@ -225,7 +225,7 @@ " 223 call create_contract(Address(obj#257), Bytes(obj#255), Bytes(obj#259))": "", " 224 call obj_cmp(Address(obj#261), Address(obj#257))": "cpu:39060717, mem:25096380, objs:-/131@e4c001b6, auth:1@399056d1/-", " 225 ret obj_cmp -> Ok(0)": "cpu:39061403", - " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@fc1a6912", + " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@20d8425c", " 227 ret get_ledger_network_id -> Ok(Bytes(obj#263))": "cpu:39064558, mem:25096492, objs:-/132@18805d31", " 228 ret create_contract -> Ok(Address(obj#265))": "cpu:39131253, mem:25101346, objs:-/133@daaee86c, store:-/20@6d147ad1, foot:20@f939d50c, auth:-/1@a9273ecb", " 229 call bytes_new_from_slice(1723)": "cpu:39131508, auth:-/-", @@ -237,7 +237,7 @@ " 235 call create_contract(Address(obj#271), Bytes(obj#269), Bytes(obj#273))": "", " 236 call obj_cmp(Address(obj#275), Address(obj#271))": "cpu:41131777, mem:26419150, objs:-/138@8a39b9a5, auth:1@aea0b0c0/-", " 237 ret obj_cmp -> Ok(0)": "cpu:41132463", - " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@f1da0dd5", + " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@e3b3557c", " 239 ret get_ledger_network_id -> Ok(Bytes(obj#277))": "cpu:41135618, mem:26419262, objs:-/139@ce76e6fb", " 240 ret create_contract -> Ok(Address(obj#279))": "cpu:41205155, mem:26424302, objs:-/140@737416ce, store:-/21@cac04bf9, foot:21@435f9792, auth:-/1@48a20b51", " 241 call bytes_new_from_slice(1723)": "cpu:41205410, auth:-/-", @@ -249,7 +249,7 @@ " 247 call create_contract(Address(obj#285), Bytes(obj#283), Bytes(obj#287))": "", " 248 call obj_cmp(Address(obj#289), Address(obj#285))": "cpu:43205679, mem:27742106, objs:-/145@74331567, auth:1@330b1c67/-", " 249 ret obj_cmp -> Ok(0)": "cpu:43206365", - " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@9a165117", + " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@c480bd80", " 251 ret get_ledger_network_id -> Ok(Bytes(obj#291))": "cpu:43209520, mem:27742218, objs:-/146@d168c7a7", " 252 ret create_contract -> Ok(Address(obj#293))": "cpu:43278343, mem:27747444, objs:-/147@16f6005c, store:-/22@33195a82, foot:22@b33a0417, auth:-/1@b7d59a15", " 253 call bytes_new_from_slice(1723)": "cpu:43278598, auth:-/-", @@ -261,7 +261,7 @@ " 259 call create_contract(Address(obj#299), Bytes(obj#297), Bytes(obj#301))": "", " 260 call obj_cmp(Address(obj#303), Address(obj#299))": "cpu:45278867, mem:29065248, objs:-/152@e53b83e3, auth:1@785996a7/-", " 261 ret obj_cmp -> Ok(0)": "cpu:45279553", - " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@fe7b423e", + " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@7f8bbf70", " 263 ret get_ledger_network_id -> Ok(Bytes(obj#305))": "cpu:45282708, mem:29065360, objs:-/153@9f17ddc6", " 264 ret create_contract -> Ok(Address(obj#307))": "cpu:45355387, mem:29070772, objs:-/154@cf228652, store:-/23@300f245c, foot:23@27540f12, auth:-/1@cefa2a75", " 265 call bytes_new_from_slice(1723)": "cpu:45355642, auth:-/-", @@ -273,7 +273,7 @@ " 271 call create_contract(Address(obj#313), Bytes(obj#311), Bytes(obj#315))": "", " 272 call obj_cmp(Address(obj#317), Address(obj#313))": "cpu:47355911, mem:30388576, objs:-/159@63a78bd4, auth:1@da0afee7/-", " 273 ret obj_cmp -> Ok(0)": "cpu:47356597", - " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@9dbef6d4", + " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@6aa8b510", " 275 ret get_ledger_network_id -> Ok(Bytes(obj#319))": "cpu:47359752, mem:30388688, objs:-/160@4af09aee", " 276 ret create_contract -> Ok(Address(obj#321))": "cpu:47430705, mem:30394286, objs:-/161@92ee88ed, store:-/24@101e4564, foot:24@c9aaea41, auth:-/1@84386fec", " 277 call bytes_new_from_slice(1723)": "cpu:47430960, auth:-/-", @@ -285,7 +285,7 @@ " 283 call create_contract(Address(obj#327), Bytes(obj#325), Bytes(obj#329))": "", " 284 call obj_cmp(Address(obj#331), Address(obj#327))": "cpu:49431229, mem:31712090, objs:-/166@7fccca03, auth:1@aa9fae3a/-", " 285 ret obj_cmp -> Ok(0)": "cpu:49431915", - " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@f33a894d", + " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@d871ba2c", " 287 ret get_ledger_network_id -> Ok(Bytes(obj#333))": "cpu:49435070, mem:31712202, objs:-/167@a32ae8a9", " 288 ret create_contract -> Ok(Address(obj#335))": "cpu:49509879, mem:31717986, objs:-/168@2aafa42f, store:-/25@8e92a30e, foot:25@3b46cff6, auth:-/1@96704b35", " 289 call bytes_new_from_slice(1723)": "cpu:49510134, auth:-/-", @@ -297,7 +297,7 @@ " 295 call create_contract(Address(obj#341), Bytes(obj#339), Bytes(obj#343))": "", " 296 call obj_cmp(Address(obj#345), Address(obj#341))": "cpu:51510403, mem:33035790, objs:-/173@81268679, auth:1@3dec2490/-", " 297 ret obj_cmp -> Ok(0)": "cpu:51511089", - " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@71ebc84a", + " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@121df96c", " 299 ret get_ledger_network_id -> Ok(Bytes(obj#347))": "cpu:51514244, mem:33035902, objs:-/174@86b62e4b", " 300 ret create_contract -> Ok(Address(obj#349))": "cpu:51590119, mem:33041872, objs:-/175@1dabe68a, store:-/26@f151c33b, foot:26@1cf63df0, auth:-/1@302de960", " 301 call bytes_new_from_slice(1723)": "cpu:51590374, auth:-/-", @@ -309,7 +309,7 @@ " 307 call create_contract(Address(obj#355), Bytes(obj#353), Bytes(obj#357))": "", " 308 call obj_cmp(Address(obj#359), Address(obj#355))": "cpu:53590643, mem:34359676, objs:-/180@8b3d9cc8, auth:1@6b4de48e/-", " 309 ret obj_cmp -> Ok(0)": "cpu:53591329", - " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@e71ff6d6", + " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@3202ab93", " 311 ret get_ledger_network_id -> Ok(Bytes(obj#361))": "cpu:53594484, mem:34359788, objs:-/181@7d2def3b", " 312 ret create_contract -> Ok(Address(obj#363))": "cpu:53671421, mem:34365944, objs:-/182@4ac4bd9e, store:-/27@8340ee6d, foot:27@fba9c4de, auth:-/1@95751d48", " 313 call bytes_new_from_slice(1723)": "cpu:53671676, auth:-/-", @@ -321,7 +321,7 @@ " 319 call create_contract(Address(obj#369), Bytes(obj#367), Bytes(obj#371))": "", " 320 call obj_cmp(Address(obj#373), Address(obj#369))": "cpu:55671945, mem:35683748, objs:-/187@41f59b8a, auth:1@6b4c8d3e/-", " 321 ret obj_cmp -> Ok(0)": "cpu:55672631", - " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@1287fb5c", + " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@a8b01321", " 323 ret get_ledger_network_id -> Ok(Bytes(obj#375))": "cpu:55675786, mem:35683860, objs:-/188@acf77cba", " 324 ret create_contract -> Ok(Address(obj#377))": "cpu:55753787, mem:35690202, objs:-/189@4ae78034, store:-/28@fb432119, foot:28@dbaee220, auth:-/1@ebc38f0b", " 325 call bytes_new_from_slice(1723)": "cpu:55754042, auth:-/-", @@ -333,7 +333,7 @@ " 331 call create_contract(Address(obj#383), Bytes(obj#381), Bytes(obj#385))": "", " 332 call obj_cmp(Address(obj#387), Address(obj#383))": "cpu:57754311, mem:37008006, objs:-/194@41937dac, auth:1@6a2c4396/-", " 333 ret obj_cmp -> Ok(0)": "cpu:57754997", - " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@6e63ce88", + " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@d85d3c27", " 335 ret get_ledger_network_id -> Ok(Bytes(obj#389))": "cpu:57758152, mem:37008118, objs:-/195@c7b31bd4", " 336 ret create_contract -> Ok(Address(obj#391))": "cpu:57833659, mem:37014646, objs:-/196@630be1a, store:-/29@f2b2ba33, foot:29@86207dba, auth:-/1@8030be25", " 337 call bytes_new_from_slice(1723)": "cpu:57833914, auth:-/-", @@ -345,7 +345,7 @@ " 343 call create_contract(Address(obj#397), Bytes(obj#395), Bytes(obj#399))": "", " 344 call obj_cmp(Address(obj#401), Address(obj#397))": "cpu:59834183, mem:38332450, objs:-/201@e7013f13, auth:1@efff116e/-", " 345 ret obj_cmp -> Ok(0)": "cpu:59834869", - " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@717266a3", + " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@6b349df9", " 347 ret get_ledger_network_id -> Ok(Bytes(obj#403))": "cpu:59838024, mem:38332562, objs:-/202@b6091744", " 348 ret create_contract -> Ok(Address(obj#405))": "cpu:59918151, mem:38339276, objs:-/203@fcd408de, store:-/30@7b349abd, foot:30@39863402, auth:-/1@eed4bb1e", " 349 call bytes_new_from_slice(1723)": "cpu:59918406, auth:-/-", @@ -357,7 +357,7 @@ " 355 call create_contract(Address(obj#411), Bytes(obj#409), Bytes(obj#413))": "", " 356 call obj_cmp(Address(obj#415), Address(obj#411))": "cpu:61918675, mem:39657080, objs:-/208@bef8f250, auth:1@4d2b336a/-", " 357 ret obj_cmp -> Ok(0)": "cpu:61919361", - " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@c6b91a0a", + " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@74393111", " 359 ret get_ledger_network_id -> Ok(Bytes(obj#417))": "cpu:61922516, mem:39657192, objs:-/209@5a6a7d5d", " 360 ret create_contract -> Ok(Address(obj#419))": "cpu:62001929, mem:39664092, objs:-/210@1ac1704e, store:-/31@4fa3e91b, foot:31@305062e7, auth:-/1@7a19b357", " 361 call bytes_new_from_slice(1723)": "cpu:62002184, auth:-/-", @@ -369,7 +369,7 @@ " 367 call create_contract(Address(obj#425), Bytes(obj#423), Bytes(obj#427))": "", " 368 call obj_cmp(Address(obj#429), Address(obj#425))": "cpu:64002453, mem:40981896, objs:-/215@a1746993, auth:1@f7013137/-", " 369 ret obj_cmp -> Ok(0)": "cpu:64003139", - " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@1c77542", + " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@53b8d019", " 371 ret get_ledger_network_id -> Ok(Bytes(obj#431))": "cpu:64006294, mem:40982008, objs:-/216@cf95d889", " 372 ret create_contract -> Ok(Address(obj#433))": "cpu:64088615, mem:40989094, objs:-/217@99f04015, store:-/32@3ddbcca8, foot:32@e907b904, auth:-/1@ef6b177", " 373 call bytes_new_from_slice(1723)": "cpu:64088870, auth:-/-", @@ -381,7 +381,7 @@ " 379 call create_contract(Address(obj#439), Bytes(obj#437), Bytes(obj#441))": "", " 380 call obj_cmp(Address(obj#443), Address(obj#439))": "cpu:66089158, mem:42306898, objs:-/222@9918a39f, auth:1@da3c47d1/-", " 381 ret obj_cmp -> Ok(0)": "cpu:66089844", - " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@2b4da665", + " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@738bcb6e", " 383 ret get_ledger_network_id -> Ok(Bytes(obj#445))": "cpu:66092999, mem:42307010, objs:-/223@f5510b1", " 384 ret create_contract -> Ok(Address(obj#447))": "cpu:66176402, mem:42314282, objs:-/224@29135409, store:-/33@3da44f4f, foot:33@76d72a8d, auth:-/1@d0c5ccbe", " 385 call bytes_new_from_slice(1723)": "cpu:66176657, auth:-/-", @@ -393,7 +393,7 @@ " 391 call create_contract(Address(obj#453), Bytes(obj#451), Bytes(obj#455))": "", " 392 call obj_cmp(Address(obj#457), Address(obj#453))": "cpu:68176945, mem:43632086, objs:-/229@843f1f78, auth:1@fe39debc/-", " 393 ret obj_cmp -> Ok(0)": "cpu:68177631", - " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@7ae07493", + " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@cf888e58", " 395 ret get_ledger_network_id -> Ok(Bytes(obj#459))": "cpu:68180786, mem:43632198, objs:-/230@87253b5a", " 396 ret create_contract -> Ok(Address(obj#461))": "cpu:68263477, mem:43639656, objs:-/231@dfe2f621, store:-/34@26269e2a, foot:34@db6f722c, auth:-/1@c5425e98", " 397 call bytes_new_from_slice(1723)": "cpu:68263732, auth:-/-", @@ -405,7 +405,7 @@ " 403 call create_contract(Address(obj#467), Bytes(obj#465), Bytes(obj#469))": "", " 404 call obj_cmp(Address(obj#471), Address(obj#467))": "cpu:70264020, mem:44957460, objs:-/236@8e491acb, auth:1@8758e2be/-", " 405 ret obj_cmp -> Ok(0)": "cpu:70264706", - " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@402732e1", + " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@653e6cb8", " 407 ret get_ledger_network_id -> Ok(Bytes(obj#473))": "cpu:70267861, mem:44957572, objs:-/237@e891750f", " 408 ret create_contract -> Ok(Address(obj#475))": "cpu:70354406, mem:44965216, objs:-/238@3c9f9d08, store:-/35@be282ec7, foot:35@ad713040, auth:-/1@c2518348", " 409 call bytes_new_from_slice(1723)": "cpu:70354661, auth:-/-", @@ -417,7 +417,7 @@ " 415 call create_contract(Address(obj#481), Bytes(obj#479), Bytes(obj#483))": "", " 416 call obj_cmp(Address(obj#485), Address(obj#481))": "cpu:72354949, mem:46283020, objs:-/243@f3039fd5, auth:1@7b318976/-", " 417 ret obj_cmp -> Ok(0)": "cpu:72355635", - " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@1e553952", + " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@c257e53", " 419 ret get_ledger_network_id -> Ok(Bytes(obj#487))": "cpu:72358790, mem:46283132, objs:-/244@cdf88cce", " 420 ret create_contract -> Ok(Address(obj#489))": "cpu:72445387, mem:46290962, objs:-/245@cd6fd0a6, store:-/36@e78fd4ec, foot:36@8d6c62c1, auth:-/1@9be18b7d", " 421 call bytes_new_from_slice(1723)": "cpu:72445642, auth:-/-", @@ -429,7 +429,7 @@ " 427 call create_contract(Address(obj#495), Bytes(obj#493), Bytes(obj#497))": "", " 428 call obj_cmp(Address(obj#499), Address(obj#495))": "cpu:74445930, mem:47608766, objs:-/250@22bd910b, auth:1@740ab5ad/-", " 429 ret obj_cmp -> Ok(0)": "cpu:74446616", - " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@df062d8f", + " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@69a0652", " 431 ret get_ledger_network_id -> Ok(Bytes(obj#501))": "cpu:74449771, mem:47608878, objs:-/251@d6b7a9b4", " 432 ret create_contract -> Ok(Address(obj#503))": "cpu:74535650, mem:47616894, objs:-/252@d5487903, store:-/37@fc568a97, foot:37@409c33df, auth:-/1@d536b686", " 433 call bytes_new_from_slice(1723)": "cpu:74535905, auth:-/-", @@ -441,7 +441,7 @@ " 439 call create_contract(Address(obj#509), Bytes(obj#507), Bytes(obj#511))": "", " 440 call obj_cmp(Address(obj#513), Address(obj#509))": "cpu:76536193, mem:48934698, objs:-/257@2c83362e, auth:1@3a400b33/-", " 441 ret obj_cmp -> Ok(0)": "cpu:76536879", - " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@7fd0cf57", + " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@4a2d81a0", " 443 ret get_ledger_network_id -> Ok(Bytes(obj#515))": "cpu:76540034, mem:48934810, objs:-/258@ac579d6d", " 444 ret create_contract -> Ok(Address(obj#517))": "cpu:76628757, mem:48943012, objs:-/259@73d4502, store:-/38@2603f041, foot:38@4169d237, auth:-/1@39e1337c", " 445 call bytes_new_from_slice(1723)": "cpu:76629012, auth:-/-", @@ -453,7 +453,7 @@ " 451 call create_contract(Address(obj#523), Bytes(obj#521), Bytes(obj#525))": "", " 452 call obj_cmp(Address(obj#527), Address(obj#523))": "cpu:78629300, mem:50260816, objs:-/264@e1d329e1, auth:1@26e06ff6/-", " 453 ret obj_cmp -> Ok(0)": "cpu:78629986", - " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@17ee9ef3", + " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@b06070a3", " 455 ret get_ledger_network_id -> Ok(Bytes(obj#529))": "cpu:78633141, mem:50260928, objs:-/265@bafd1a98", " 456 ret create_contract -> Ok(Address(obj#531))": "cpu:78725718, mem:50269316, objs:-/266@1b9213fc, store:-/39@b90d28c3, foot:39@d7e7d033, auth:-/1@b133ac19", " 457 call bytes_new_from_slice(1723)": "cpu:78725973, auth:-/-", @@ -465,7 +465,7 @@ " 463 call create_contract(Address(obj#537), Bytes(obj#535), Bytes(obj#539))": "", " 464 call obj_cmp(Address(obj#541), Address(obj#537))": "cpu:80726261, mem:51587120, objs:-/271@24ad366e, auth:1@b368d5a8/-", " 465 ret obj_cmp -> Ok(0)": "cpu:80726947", - " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@7a22d694", + " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@abb50537", " 467 ret get_ledger_network_id -> Ok(Bytes(obj#543))": "cpu:80730102, mem:51587232, objs:-/272@879628e2", " 468 ret create_contract -> Ok(Address(obj#545))": "cpu:80820955, mem:51595806, objs:-/273@d183d07c, store:-/40@8c6440e7, foot:40@4583666c, auth:-/1@7e5706f4", " 469 call bytes_new_from_slice(1723)": "cpu:80821210, auth:-/-", @@ -477,7 +477,7 @@ " 475 call create_contract(Address(obj#551), Bytes(obj#549), Bytes(obj#553))": "", " 476 call obj_cmp(Address(obj#555), Address(obj#551))": "cpu:82821498, mem:52913610, objs:-/278@7e43461c, auth:1@5ff13591/-", " 477 ret obj_cmp -> Ok(0)": "cpu:82822184", - " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@bb660b30", + " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@ef99d99e", " 479 ret get_ledger_network_id -> Ok(Bytes(obj#557))": "cpu:82825339, mem:52913722, objs:-/279@7d5b5e82", " 480 ret create_contract -> Ok(Address(obj#559))": "cpu:82917254, mem:52922482, objs:-/280@a2539e9f, store:-/41@f828b437, foot:41@fe76eb0e, auth:-/1@c3116c2e", " 481 call bytes_new_from_slice(1723)": "cpu:82917509, auth:-/-", @@ -489,7 +489,7 @@ " 487 call create_contract(Address(obj#565), Bytes(obj#563), Bytes(obj#567))": "", " 488 call obj_cmp(Address(obj#569), Address(obj#565))": "cpu:84917797, mem:54240286, objs:-/285@27a76f48, auth:1@6bc42dbe/-", " 489 ret obj_cmp -> Ok(0)": "cpu:84918483", - " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@8487d51b", + " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@350fe930", " 491 ret get_ledger_network_id -> Ok(Bytes(obj#571))": "cpu:84921638, mem:54240398, objs:-/286@604a8064", " 492 ret create_contract -> Ok(Address(obj#573))": "cpu:85014619, mem:54249344, objs:-/287@5335059f, store:-/42@29905e2d, foot:42@331e35d, auth:-/1@fcc81056", " 493 call bytes_new_from_slice(1723)": "cpu:85014874, auth:-/-", @@ -501,7 +501,7 @@ " 499 call create_contract(Address(obj#579), Bytes(obj#577), Bytes(obj#581))": "", " 500 call obj_cmp(Address(obj#583), Address(obj#579))": "cpu:87015162, mem:55567148, objs:-/292@cae8baf1, auth:1@192a37a7/-", " 501 ret obj_cmp -> Ok(0)": "cpu:87015848", - " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@d0cf342a", + " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@92f90a5c", " 503 ret get_ledger_network_id -> Ok(Bytes(obj#585))": "cpu:87019003, mem:55567260, objs:-/293@e43c78b4", " 504 ret create_contract -> Ok(Address(obj#587))": "cpu:87113044, mem:55576392, objs:-/294@bb1ddf18, store:-/43@914b7ccb, foot:43@41d98300, auth:-/1@9dd1b742", " 505 call bytes_new_from_slice(1723)": "cpu:87113299, auth:-/-", @@ -513,7 +513,7 @@ " 511 call create_contract(Address(obj#593), Bytes(obj#591), Bytes(obj#595))": "", " 512 call obj_cmp(Address(obj#597), Address(obj#593))": "cpu:89113587, mem:56894196, objs:-/299@cff36272, auth:1@bac1ba08/-", " 513 ret obj_cmp -> Ok(0)": "cpu:89114273", - " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@ab3f6665", + " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@520c643c", " 515 ret get_ledger_network_id -> Ok(Bytes(obj#599))": "cpu:89117428, mem:56894308, objs:-/300@dd09814f", " 516 ret create_contract -> Ok(Address(obj#601))": "cpu:89212535, mem:56903626, objs:-/301@244f82de, store:-/44@49506f31, foot:44@6bc1feec, auth:-/1@3ecbcd12", " 517 call bytes_new_from_slice(1723)": "cpu:89212790, auth:-/-", @@ -525,7 +525,7 @@ " 523 call create_contract(Address(obj#607), Bytes(obj#605), Bytes(obj#609))": "", " 524 call obj_cmp(Address(obj#611), Address(obj#607))": "cpu:91213078, mem:58221430, objs:-/306@51507416, auth:1@f4a38780/-", " 525 ret obj_cmp -> Ok(0)": "cpu:91213764", - " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@60fa77e0", + " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@fc522799", " 527 ret get_ledger_network_id -> Ok(Bytes(obj#613))": "cpu:91216919, mem:58221542, objs:-/307@eba2c5b2", " 528 ret create_contract -> Ok(Address(obj#615))": "cpu:91313086, mem:58231046, objs:-/308@367c7d43, store:-/45@c8a84a2, foot:45@358c3f92, auth:-/1@d6eec3a9", " 529 call bytes_new_from_slice(1723)": "cpu:91313341, auth:-/-", @@ -537,7 +537,7 @@ " 535 call create_contract(Address(obj#621), Bytes(obj#619), Bytes(obj#623))": "", " 536 call obj_cmp(Address(obj#625), Address(obj#621))": "cpu:93313629, mem:59548850, objs:-/313@f39fd860, auth:1@5cc394d/-", " 537 ret obj_cmp -> Ok(0)": "cpu:93314315", - " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@aff33b6b", + " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@73031a22", " 539 ret get_ledger_network_id -> Ok(Bytes(obj#627))": "cpu:93317470, mem:59548962, objs:-/314@e817a34d", " 540 ret create_contract -> Ok(Address(obj#629))": "cpu:93417497, mem:59558652, objs:-/315@3c670094, store:-/46@d1e3723, foot:46@8fe6169d, auth:-/1@a662faf6", " 541 call bytes_new_from_slice(1723)": "cpu:93417752, auth:-/-", @@ -549,7 +549,7 @@ " 547 call create_contract(Address(obj#635), Bytes(obj#633), Bytes(obj#637))": "", " 548 call obj_cmp(Address(obj#639), Address(obj#635))": "cpu:95418040, mem:60876456, objs:-/320@8e0c4b9b, auth:1@406c1dae/-", " 549 ret obj_cmp -> Ok(0)": "cpu:95418726", - " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@6600dac1", + " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@62235096", " 551 ret get_ledger_network_id -> Ok(Bytes(obj#641))": "cpu:95421881, mem:60876568, objs:-/321@3ae1b4", " 552 ret create_contract -> Ok(Address(obj#643))": "cpu:95514842, mem:60886444, objs:-/322@56ee1b71, store:-/47@df16bbd0, foot:47@3fc83862, auth:-/1@fc69475c", " 553 call bytes_new_from_slice(1723)": "cpu:95515097, auth:-/-", @@ -561,7 +561,7 @@ " 559 call create_contract(Address(obj#649), Bytes(obj#647), Bytes(obj#651))": "", " 560 call obj_cmp(Address(obj#653), Address(obj#649))": "cpu:97515385, mem:62204248, objs:-/327@c9706ded, auth:1@8c26c31b/-", " 561 ret obj_cmp -> Ok(0)": "cpu:97516071", - " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@529ff575", + " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@205f6fb4", " 563 ret get_ledger_network_id -> Ok(Bytes(obj#655))": "cpu:97519226, mem:62204360, objs:-/328@bf53726d", " 564 ret create_contract -> Ok(Address(obj#657))": "cpu:97621385, mem:62214422, objs:-/329@db413350, store:-/48@51de1218, foot:48@556cb318, auth:-/1@25a9c327", " 565 call bytes_new_from_slice(1723)": "cpu:97621640, auth:-/-", @@ -573,7 +573,7 @@ " 571 call create_contract(Address(obj#663), Bytes(obj#661), Bytes(obj#665))": "", " 572 call obj_cmp(Address(obj#667), Address(obj#663))": "cpu:99621928, mem:63532226, objs:-/334@f4f8f41b, auth:1@1fa181ba/-", " 573 ret obj_cmp -> Ok(0)": "cpu:99622614", - " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@cbc29ba9", + " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@9d22f9ed", " 575 ret get_ledger_network_id -> Ok(Bytes(obj#669))": "cpu:99625769, mem:63532338, objs:-/335@237761d2", " 576 ret create_contract -> Ok(Address(obj#671))": "cpu:99726196, mem:63542586, objs:-/336@fa034a59, store:-/49@ea935b52, foot:49@de5dfae4, auth:-/1@ab48dad3", " 577 call bytes_new_from_slice(1723)": "cpu:99726451, auth:-/-", @@ -585,7 +585,7 @@ " 583 call create_contract(Address(obj#677), Bytes(obj#675), Bytes(obj#679))": "", " 584 call obj_cmp(Address(obj#681), Address(obj#677))": "cpu:101726739, mem:64860390, objs:-/341@f9a83a38, auth:1@efefa99b/-", " 585 ret obj_cmp -> Ok(0)": "cpu:101727425", - " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2b02f498", + " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2329e92b", " 587 ret get_ledger_network_id -> Ok(Bytes(obj#683))": "cpu:101730580, mem:64860502, objs:-/342@d1ff7972", " 588 ret create_contract -> Ok(Address(obj#685))": "cpu:101833087, mem:64870936, objs:-/343@b5f757ec, store:-/50@4c522570, foot:50@a0637ff7, auth:-/1@33815c1a", " 589 call bytes_new_from_slice(1723)": "cpu:101833342, auth:-/-", @@ -597,7 +597,7 @@ " 595 call create_contract(Address(obj#691), Bytes(obj#689), Bytes(obj#693))": "", " 596 call obj_cmp(Address(obj#695), Address(obj#691))": "cpu:103833630, mem:66188740, objs:-/348@4f3b30b2, auth:1@a8fcf1a2/-", " 597 ret obj_cmp -> Ok(0)": "cpu:103834316", - " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@2b55c9b5", + " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@286b32d9", " 599 ret get_ledger_network_id -> Ok(Bytes(obj#697))": "cpu:103837471, mem:66188852, objs:-/349@d5de81fd", " 600 ret create_contract -> Ok(Address(obj#699))": "cpu:103942818, mem:66199472, objs:-/350@51dc4097, store:-/51@2ecebe32, foot:51@992b52e0, auth:-/1@62240125", " 601 call bytes_new_from_slice(1723)": "cpu:103943073, auth:-/-", @@ -609,7 +609,7 @@ " 607 call create_contract(Address(obj#705), Bytes(obj#703), Bytes(obj#707))": "", " 608 call obj_cmp(Address(obj#709), Address(obj#705))": "cpu:105943361, mem:67517276, objs:-/355@9a456a58, auth:1@df2dbab3/-", " 609 ret obj_cmp -> Ok(0)": "cpu:105944047", - " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@53ebc47d", + " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@9717cba0", " 611 ret get_ledger_network_id -> Ok(Bytes(obj#711))": "cpu:105947202, mem:67517388, objs:-/356@f6faf10c", " 612 ret create_contract -> Ok(Address(obj#713))": "cpu:106053615, mem:67528194, objs:-/357@8f3dfa45, store:-/52@3bc2289d, foot:52@a8174a77, auth:-/1@1ae2d9b9", " 613 call bytes_new_from_slice(1723)": "cpu:106053870, auth:-/-", @@ -621,7 +621,7 @@ " 619 call create_contract(Address(obj#719), Bytes(obj#717), Bytes(obj#721))": "", " 620 call obj_cmp(Address(obj#723), Address(obj#719))": "cpu:108054158, mem:68845998, objs:-/362@2c2a938, auth:1@e4e43523/-", " 621 ret obj_cmp -> Ok(0)": "cpu:108054844", - " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@633ca118", + " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@43fdac45", " 623 ret get_ledger_network_id -> Ok(Bytes(obj#725))": "cpu:108057999, mem:68846110, objs:-/363@a163628d", " 624 ret create_contract -> Ok(Address(obj#727))": "cpu:108162680, mem:68857102, objs:-/364@25c619f3, store:-/53@85418455, foot:53@755ca472, auth:-/1@7132248c", " 625 call bytes_new_from_slice(1723)": "cpu:108162935, auth:-/-", @@ -633,7 +633,7 @@ " 631 call create_contract(Address(obj#733), Bytes(obj#731), Bytes(obj#735))": "", " 632 call obj_cmp(Address(obj#737), Address(obj#733))": "cpu:110163223, mem:70174906, objs:-/369@346fee22, auth:1@a8468a5b/-", " 633 ret obj_cmp -> Ok(0)": "cpu:110163909", - " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@5f38f4b4", + " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@ac9afa98", " 635 ret get_ledger_network_id -> Ok(Bytes(obj#739))": "cpu:110167064, mem:70175018, objs:-/370@5f283fed", " 636 ret create_contract -> Ok(Address(obj#741))": "cpu:110273825, mem:70186196, objs:-/371@756dc3dc, store:-/54@d6df1dee, foot:54@6c9db746, auth:-/1@add7894e", " 637 call bytes_new_from_slice(1723)": "cpu:110274080, auth:-/-", @@ -645,7 +645,7 @@ " 643 call create_contract(Address(obj#747), Bytes(obj#745), Bytes(obj#749))": "", " 644 call obj_cmp(Address(obj#751), Address(obj#747))": "cpu:112274368, mem:71504000, objs:-/376@aebe83c3, auth:1@a1dfbdc2/-", " 645 ret obj_cmp -> Ok(0)": "cpu:112275054", - " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@20efa1bf", + " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@a0d06fb2", " 647 ret get_ledger_network_id -> Ok(Bytes(obj#753))": "cpu:112278209, mem:71504112, objs:-/377@a5f27cc1", " 648 ret create_contract -> Ok(Address(obj#755))": "cpu:112383238, mem:71515476, objs:-/378@4a2dc9d5, store:-/55@d68f6f6e, foot:55@98d0e060, auth:-/1@6f8d4df0", " 649 call bytes_new_from_slice(1723)": "cpu:112383493, auth:-/-", @@ -657,7 +657,7 @@ " 655 call create_contract(Address(obj#761), Bytes(obj#759), Bytes(obj#763))": "", " 656 call obj_cmp(Address(obj#765), Address(obj#761))": "cpu:114383781, mem:72833280, objs:-/383@ba9bc303, auth:1@7cf8180f/-", " 657 ret obj_cmp -> Ok(0)": "cpu:114384467", - " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@a8a009f0", + " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@9ffc2d1c", " 659 ret get_ledger_network_id -> Ok(Bytes(obj#767))": "cpu:114387622, mem:72833392, objs:-/384@cef90ff5", " 660 ret create_contract -> Ok(Address(obj#769))": "cpu:114498291, mem:72844942, objs:-/385@949e2fa0, store:-/56@bd5ddb43, foot:56@dc185736, auth:-/1@dbeb877e", " 661 call bytes_new_from_slice(1723)": "cpu:114498546, auth:-/-", @@ -669,7 +669,7 @@ " 667 call create_contract(Address(obj#775), Bytes(obj#773), Bytes(obj#777))": "", " 668 call obj_cmp(Address(obj#779), Address(obj#775))": "cpu:116498834, mem:74162746, objs:-/390@ee85fa0, auth:1@5e9c3221/-", " 669 ret obj_cmp -> Ok(0)": "cpu:116499520", - " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@1d9c05cc", + " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@42a87577", " 671 ret get_ledger_network_id -> Ok(Bytes(obj#781))": "cpu:116502675, mem:74162858, objs:-/391@c09aca31", " 672 ret create_contract -> Ok(Address(obj#783))": "cpu:116614408, mem:74174594, objs:-/392@a5b995b8, store:-/57@d10d961, foot:57@962f7174, auth:-/1@b76a8061", " 673 call bytes_new_from_slice(1723)": "cpu:116614663, auth:-/-", @@ -681,7 +681,7 @@ " 679 call create_contract(Address(obj#789), Bytes(obj#787), Bytes(obj#791))": "", " 680 call obj_cmp(Address(obj#793), Address(obj#789))": "cpu:118614951, mem:75492398, objs:-/397@8e52f175, auth:1@ba59cfca/-", " 681 ret obj_cmp -> Ok(0)": "cpu:118615637", - " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@5496e8ba", + " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@fb340186", " 683 ret get_ledger_network_id -> Ok(Bytes(obj#795))": "cpu:118618792, mem:75492510, objs:-/398@12799e50", " 684 ret create_contract -> Ok(Address(obj#797))": "cpu:118728033, mem:75504432, objs:-/399@3db9e662, store:-/58@8b1f0e88, foot:58@5c2834ff, auth:-/1@1693c723", " 685 call bytes_new_from_slice(1723)": "cpu:118728288, auth:-/-", @@ -693,7 +693,7 @@ " 691 call create_contract(Address(obj#803), Bytes(obj#801), Bytes(obj#805))": "", " 692 call obj_cmp(Address(obj#807), Address(obj#803))": "cpu:120728576, mem:76822236, objs:-/404@80b4325, auth:1@3d58dc89/-", " 693 ret obj_cmp -> Ok(0)": "cpu:120729262", - " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@98c21e82", + " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@6f5874f2", " 695 ret get_ledger_network_id -> Ok(Bytes(obj#809))": "cpu:120732417, mem:76822348, objs:-/405@3b999f4b", " 696 ret create_contract -> Ok(Address(obj#811))": "cpu:120838148, mem:76834456, objs:-/406@7fb07dfd, store:-/59@beb21ab6, foot:59@b156a440, auth:-/1@f485e251", " 697 call bytes_new_from_slice(1723)": "cpu:120838403, auth:-/-", @@ -705,7 +705,7 @@ " 703 call create_contract(Address(obj#817), Bytes(obj#815), Bytes(obj#819))": "", " 704 call obj_cmp(Address(obj#821), Address(obj#817))": "cpu:122838691, mem:78152260, objs:-/411@120f1132, auth:1@9615c0a4/-", " 705 ret obj_cmp -> Ok(0)": "cpu:122839377", - " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@2923ec4b", + " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@a21c8e0e", " 707 ret get_ledger_network_id -> Ok(Bytes(obj#823))": "cpu:122842532, mem:78152372, objs:-/412@7e1fcf83", " 708 ret create_contract -> Ok(Address(obj#825))": "cpu:122952121, mem:78164666, objs:-/413@d817a428, store:-/60@48bc1338, foot:60@a33f325d, auth:-/1@90f9a145", " 709 call bytes_new_from_slice(1723)": "cpu:122952376, auth:-/-", @@ -717,7 +717,7 @@ " 715 call create_contract(Address(obj#831), Bytes(obj#829), Bytes(obj#833))": "", " 716 call obj_cmp(Address(obj#835), Address(obj#831))": "cpu:124952664, mem:79482470, objs:-/418@fb16c9f, auth:1@ed66b718/-", " 717 ret obj_cmp -> Ok(0)": "cpu:124953350", - " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@3845c83e", + " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@915f7f35", " 719 ret get_ledger_network_id -> Ok(Bytes(obj#837))": "cpu:124956505, mem:79482582, objs:-/419@6c3991f8", " 720 ret create_contract -> Ok(Address(obj#839))": "cpu:125070712, mem:79495062, objs:-/420@7e22a47, store:-/61@39cb0da1, foot:61@9492821c, auth:-/1@1b6774bf", " 721 call bytes_new_from_slice(1723)": "cpu:125070967, auth:-/-", @@ -729,7 +729,7 @@ " 727 call create_contract(Address(obj#845), Bytes(obj#843), Bytes(obj#847))": "", " 728 call obj_cmp(Address(obj#849), Address(obj#845))": "cpu:127071255, mem:80812866, objs:-/425@34c426ec, auth:1@8d4c648/-", " 729 ret obj_cmp -> Ok(0)": "cpu:127071941", - " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@b8fd81b7", + " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@34a8de00", " 731 ret get_ledger_network_id -> Ok(Bytes(obj#851))": "cpu:127075096, mem:80812978, objs:-/426@6669f65a", " 732 ret create_contract -> Ok(Address(obj#853))": "cpu:127192147, mem:80825644, objs:-/427@3c471c07, store:-/62@73159901, foot:62@a247f604, auth:-/1@fa10c746", " 733 call bytes_new_from_slice(1723)": "cpu:127192402, auth:-/-", @@ -741,7 +741,7 @@ " 739 call create_contract(Address(obj#859), Bytes(obj#857), Bytes(obj#861))": "", " 740 call obj_cmp(Address(obj#863), Address(obj#859))": "cpu:129192690, mem:82143448, objs:-/432@a056c54, auth:1@dab38220/-", " 741 ret obj_cmp -> Ok(0)": "cpu:129193376", - " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@2a1916d6", + " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@f239515f", " 743 ret get_ledger_network_id -> Ok(Bytes(obj#865))": "cpu:129196531, mem:82143560, objs:-/433@b3ad8ff", " 744 ret create_contract -> Ok(Address(obj#867))": "cpu:129314644, mem:82156412, objs:-/434@e4eb33a, store:-/63@1b326826, foot:63@9801e88b, auth:-/1@a03e84e", " 745 call bytes_new_from_slice(1723)": "cpu:129314899, auth:-/-", @@ -753,7 +753,7 @@ " 751 call create_contract(Address(obj#873), Bytes(obj#871), Bytes(obj#875))": "", " 752 call obj_cmp(Address(obj#877), Address(obj#873))": "cpu:131315187, mem:83474216, objs:-/439@1aa2c5f6, auth:1@99c0fb6c/-", " 753 ret obj_cmp -> Ok(0)": "cpu:131315873", - " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@c35bd167", + " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@7ea4443e", " 755 ret get_ledger_network_id -> Ok(Bytes(obj#879))": "cpu:131319028, mem:83474328, objs:-/440@799c85ba", " 756 ret create_contract -> Ok(Address(obj#881))": "cpu:131438281, mem:83487366, objs:-/441@ca7fc40a, store:-/64@e7079371, foot:64@cc9b651b, auth:-/1@337ead98", " 757 call bytes_new_from_slice(1723)": "cpu:131438536, auth:-/-", @@ -765,7 +765,7 @@ " 763 call create_contract(Address(obj#887), Bytes(obj#885), Bytes(obj#889))": "", " 764 call obj_cmp(Address(obj#891), Address(obj#887))": "cpu:133438846, mem:84805170, objs:-/446@10069c6f, auth:1@15a8a357/-", " 765 ret obj_cmp -> Ok(0)": "cpu:133439532", - " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@a355308d", + " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@3a0544d3", " 767 ret get_ledger_network_id -> Ok(Bytes(obj#893))": "cpu:133442687, mem:84805282, objs:-/447@c3c2a480", " 768 ret create_contract -> Ok(Address(obj#895))": "cpu:133563026, mem:84818506, objs:-/448@75aa9a70, store:-/65@14bef7e4, foot:65@d9000a8e, auth:-/1@f4cff7fe", " 769 call bytes_new_from_slice(1723)": "cpu:133563281, auth:-/-", @@ -777,7 +777,7 @@ " 775 call create_contract(Address(obj#901), Bytes(obj#899), Bytes(obj#903))": "", " 776 call obj_cmp(Address(obj#905), Address(obj#901))": "cpu:135563591, mem:86136310, objs:-/453@9e1d13db, auth:1@740cbc46/-", " 777 ret obj_cmp -> Ok(0)": "cpu:135564277", - " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@d0e5f2d9", + " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@3bfe883", " 779 ret get_ledger_network_id -> Ok(Bytes(obj#907))": "cpu:135567432, mem:86136422, objs:-/454@2140adea", " 780 ret create_contract -> Ok(Address(obj#909))": "cpu:135687059, mem:86149832, objs:-/455@cc45d327, store:-/66@cd903d3e, foot:66@bfdb0e98, auth:-/1@bd7b355c", " 781 call bytes_new_from_slice(1723)": "cpu:135687314, auth:-/-", @@ -789,7 +789,7 @@ " 787 call create_contract(Address(obj#915), Bytes(obj#913), Bytes(obj#917))": "", " 788 call obj_cmp(Address(obj#919), Address(obj#915))": "cpu:137687624, mem:87467636, objs:-/460@b03c0f83, auth:1@2da9c65/-", " 789 ret obj_cmp -> Ok(0)": "cpu:137688310", - " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@b0c0571b", + " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@c4c1070f", " 791 ret get_ledger_network_id -> Ok(Bytes(obj#921))": "cpu:137691465, mem:87467748, objs:-/461@def87377", " 792 ret create_contract -> Ok(Address(obj#923))": "cpu:137813932, mem:87481344, objs:-/462@45120f6c, store:-/67@6584c2ff, foot:67@4ca4b4cb, auth:-/1@43d4f17b", " 793 call bytes_new_from_slice(1723)": "cpu:137814187, auth:-/-", @@ -801,7 +801,7 @@ " 799 call create_contract(Address(obj#929), Bytes(obj#927), Bytes(obj#931))": "", " 800 call obj_cmp(Address(obj#933), Address(obj#929))": "cpu:139814497, mem:88799148, objs:-/467@93a33041, auth:1@29f88d0f/-", " 801 ret obj_cmp -> Ok(0)": "cpu:139815183", - " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@979f25ad", + " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@fd3ae29e", " 803 ret get_ledger_network_id -> Ok(Bytes(obj#935))": "cpu:139818338, mem:88799260, objs:-/468@a5e532e9", " 804 ret create_contract -> Ok(Address(obj#937))": "cpu:139940093, mem:88813042, objs:-/469@f1730e5f, store:-/68@a95aaa61, foot:68@7b107c0e, auth:-/1@c7687a6f", " 805 call bytes_new_from_slice(1723)": "cpu:139940348, auth:-/-", @@ -813,7 +813,7 @@ " 811 call create_contract(Address(obj#943), Bytes(obj#941), Bytes(obj#945))": "", " 812 call obj_cmp(Address(obj#947), Address(obj#943))": "cpu:141940658, mem:90130846, objs:-/474@443ed4bb, auth:1@6d00ea2a/-", " 813 ret obj_cmp -> Ok(0)": "cpu:141941344", - " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@280957fb", + " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@bda0a2b", " 815 ret get_ledger_network_id -> Ok(Bytes(obj#949))": "cpu:141944499, mem:90130958, objs:-/475@cf814756", " 816 ret create_contract -> Ok(Address(obj#951))": "cpu:142067314, mem:90144926, objs:-/476@de85786d, store:-/69@2950663e, foot:69@6894b0a2, auth:-/1@12151c8e", " 817 call bytes_new_from_slice(1723)": "cpu:142067569, auth:-/-", @@ -825,7 +825,7 @@ " 823 call create_contract(Address(obj#957), Bytes(obj#955), Bytes(obj#959))": "", " 824 call obj_cmp(Address(obj#961), Address(obj#957))": "cpu:144067879, mem:91462730, objs:-/481@b0c8321a, auth:1@c0c7e5a8/-", " 825 ret obj_cmp -> Ok(0)": "cpu:144068565", - " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@4841adf2", + " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@9608c96e", " 827 ret get_ledger_network_id -> Ok(Bytes(obj#963))": "cpu:144071720, mem:91462842, objs:-/482@846aa98e", " 828 ret create_contract -> Ok(Address(obj#965))": "cpu:144189505, mem:91476996, objs:-/483@4fbf53ac, store:-/70@adf2fc99, foot:70@821ad073, auth:-/1@44e6f004", " 829 call bytes_new_from_slice(1723)": "cpu:144189760, auth:-/-", @@ -837,7 +837,7 @@ " 835 call create_contract(Address(obj#971), Bytes(obj#969), Bytes(obj#973))": "", " 836 call obj_cmp(Address(obj#975), Address(obj#971))": "cpu:146190070, mem:92794800, objs:-/488@b085e7d1, auth:1@e5ccf8c7/-", " 837 ret obj_cmp -> Ok(0)": "cpu:146190756", - " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@793dfb0a", + " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@dcd47906", " 839 ret get_ledger_network_id -> Ok(Bytes(obj#977))": "cpu:146193911, mem:92794912, objs:-/489@6913398b", " 840 ret create_contract -> Ok(Address(obj#979))": "cpu:146320630, mem:92809252, objs:-/490@1c8cace9, store:-/71@79757366, foot:71@92e5e652, auth:-/1@d1d73ad0", " 841 call bytes_new_from_slice(1723)": "cpu:146320885, auth:-/-", @@ -849,7 +849,7 @@ " 847 call create_contract(Address(obj#985), Bytes(obj#983), Bytes(obj#987))": "", " 848 call obj_cmp(Address(obj#989), Address(obj#985))": "cpu:148321195, mem:94127056, objs:-/495@a9b31ca, auth:1@8b9c1d75/-", " 849 ret obj_cmp -> Ok(0)": "cpu:148321881", - " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@a045f7fb", + " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@590c504f", " 851 ret get_ledger_network_id -> Ok(Bytes(obj#991))": "cpu:148325036, mem:94127168, objs:-/496@485ec8a7", " 852 ret create_contract -> Ok(Address(obj#993))": "cpu:148452827, mem:94141694, objs:-/497@2be4913d, store:-/72@f8a2e954, foot:72@131e5b52, auth:-/1@869a312d", " 853 call bytes_new_from_slice(1723)": "cpu:148453082, auth:-/-", @@ -861,7 +861,7 @@ " 859 call create_contract(Address(obj#999), Bytes(obj#997), Bytes(obj#1001))": "", " 860 call obj_cmp(Address(obj#1003), Address(obj#999))": "cpu:150453392, mem:95459498, objs:-/502@ef352cdd, auth:1@324ce1b0/-", " 861 ret obj_cmp -> Ok(0)": "cpu:150454078", - " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@1840bfcb", + " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@a5100b10", " 863 ret get_ledger_network_id -> Ok(Bytes(obj#1005))": "cpu:150457233, mem:95459610, objs:-/503@944ab8d9", " 864 ret create_contract -> Ok(Address(obj#1007))": "cpu:150582528, mem:95474322, objs:-/504@92c7111e, store:-/73@65800019, foot:73@74126ae0, auth:-/1@7b064a9e", " 865 call bytes_new_from_slice(1723)": "cpu:150582783, auth:-/-", @@ -873,7 +873,7 @@ " 871 call create_contract(Address(obj#1013), Bytes(obj#1011), Bytes(obj#1015))": "", " 872 call obj_cmp(Address(obj#1017), Address(obj#1013))": "cpu:152583093, mem:96792126, objs:-/509@c07bd221, auth:1@7da7fbb6/-", " 873 ret obj_cmp -> Ok(0)": "cpu:152583779", - " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@9bc13e6a", + " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@1e202147", " 875 ret get_ledger_network_id -> Ok(Bytes(obj#1019))": "cpu:152586934, mem:96792238, objs:-/510@6b7222e6", " 876 ret create_contract -> Ok(Address(obj#1021))": "cpu:152719645, mem:96807136, objs:-/511@2d880cb3, store:-/74@6da01545, foot:74@98a244b2, auth:-/1@7fbd7918", " 877 call bytes_new_from_slice(1723)": "cpu:152719900, auth:-/-", @@ -885,7 +885,7 @@ " 883 call create_contract(Address(obj#1027), Bytes(obj#1025), Bytes(obj#1029))": "", " 884 call obj_cmp(Address(obj#1031), Address(obj#1027))": "cpu:154720210, mem:98124940, objs:-/516@f5623ffa, auth:1@f873a88c/-", " 885 ret obj_cmp -> Ok(0)": "cpu:154720896", - " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@450e1f0b", + " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@742ef726", " 887 ret get_ledger_network_id -> Ok(Bytes(obj#1033))": "cpu:154724051, mem:98125052, objs:-/517@c1e547af", " 888 ret create_contract -> Ok(Address(obj#1035))": "cpu:154855028, mem:98140136, objs:-/518@ed0b6fa3, store:-/75@2640d275, foot:75@e1edfb8, auth:-/1@7bd1b1ac", " 889 call bytes_new_from_slice(1723)": "cpu:154855283, auth:-/-", @@ -897,7 +897,7 @@ " 895 call create_contract(Address(obj#1041), Bytes(obj#1039), Bytes(obj#1043))": "", " 896 call obj_cmp(Address(obj#1045), Address(obj#1041))": "cpu:156855593, mem:99457940, objs:-/523@afbfaeca, auth:1@a98e3a0c/-", " 897 ret obj_cmp -> Ok(0)": "cpu:156856279", - " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@97ab07bc", + " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@3314c4f4", " 899 ret get_ledger_network_id -> Ok(Bytes(obj#1047))": "cpu:156859434, mem:99458052, objs:-/524@ae0a83cb", " 900 ret create_contract -> Ok(Address(obj#1049))": "cpu:156994271, mem:99473322, objs:-/525@90f0b7e, store:-/76@b3fee76, foot:76@17ea103, auth:-/1@cd0c113", " 901 call bytes_new_from_slice(1723)": "cpu:156994526, auth:-/-", @@ -909,7 +909,7 @@ " 907 call create_contract(Address(obj#1055), Bytes(obj#1053), Bytes(obj#1057))": "", " 908 call obj_cmp(Address(obj#1059), Address(obj#1055))": "cpu:158994836, mem:100791126, objs:-/530@79ae528, auth:1@2722a0e9/-", " 909 ret obj_cmp -> Ok(0)": "cpu:158995522", - " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@b37297e1", + " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@2fc267a0", " 911 ret get_ledger_network_id -> Ok(Bytes(obj#1061))": "cpu:158998677, mem:100791238, objs:-/531@c299807e", " 912 ret create_contract -> Ok(Address(obj#1063))": "cpu:159130004, mem:100806694, objs:-/532@cd9f8aed, store:-/77@657b3ea7, foot:77@e7ae520f, auth:-/1@cd4623d1", " 913 call bytes_new_from_slice(1723)": "cpu:159130259, auth:-/-", @@ -921,7 +921,7 @@ " 919 call create_contract(Address(obj#1069), Bytes(obj#1067), Bytes(obj#1071))": "", " 920 call obj_cmp(Address(obj#1073), Address(obj#1069))": "cpu:161130569, mem:102124498, objs:-/537@e5fd859b, auth:1@d3342891/-", " 921 ret obj_cmp -> Ok(0)": "cpu:161131255", - " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@ac15408a", + " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@572a7bcf", " 923 ret get_ledger_network_id -> Ok(Bytes(obj#1075))": "cpu:161134410, mem:102124610, objs:-/538@373a6e1f", " 924 ret create_contract -> Ok(Address(obj#1077))": "cpu:161269597, mem:102140252, objs:-/539@a2bba411, store:-/78@be444a78, foot:78@92931e2e, auth:-/1@ffdde4e3", " 925 call bytes_new_from_slice(1723)": "cpu:161269852, auth:-/-", @@ -933,7 +933,7 @@ " 931 call create_contract(Address(obj#1083), Bytes(obj#1081), Bytes(obj#1085))": "", " 932 call obj_cmp(Address(obj#1087), Address(obj#1083))": "cpu:163270162, mem:103458056, objs:-/544@9b41b8e0, auth:1@dd609a88/-", " 933 ret obj_cmp -> Ok(0)": "cpu:163270848", - " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@8b52e45b", + " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@d4dbf130", " 935 ret get_ledger_network_id -> Ok(Bytes(obj#1089))": "cpu:163274003, mem:103458168, objs:-/545@1c155cdd", " 936 ret create_contract -> Ok(Address(obj#1091))": "cpu:163407456, mem:103473996, objs:-/546@6b1fddc7, store:-/79@1ff42e32, foot:79@b2da7f6f, auth:-/1@36361e6e", " 937 call bytes_new_from_slice(1723)": "cpu:163407711, auth:-/-", @@ -945,7 +945,7 @@ " 943 call create_contract(Address(obj#1097), Bytes(obj#1095), Bytes(obj#1099))": "", " 944 call obj_cmp(Address(obj#1101), Address(obj#1097))": "cpu:165408021, mem:104791800, objs:-/551@d1f85514, auth:1@2b6dc135/-", " 945 ret obj_cmp -> Ok(0)": "cpu:165408707", - " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@7c3fc9da", + " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@41e7877", " 947 ret get_ledger_network_id -> Ok(Bytes(obj#1103))": "cpu:165411862, mem:104791912, objs:-/552@904f5f5", " 948 ret create_contract -> Ok(Address(obj#1105))": "cpu:165543845, mem:104807926, objs:-/553@2b94afe6, store:-/80@5e14adc2, foot:80@f059281b, auth:-/1@1f118c6c", " 949 call bytes_new_from_slice(1723)": "cpu:165544100, auth:-/-", @@ -957,7 +957,7 @@ " 955 call create_contract(Address(obj#1111), Bytes(obj#1109), Bytes(obj#1113))": "", " 956 call obj_cmp(Address(obj#1115), Address(obj#1111))": "cpu:167544410, mem:106125730, objs:-/558@b9bcce70, auth:1@70e49983/-", " 957 ret obj_cmp -> Ok(0)": "cpu:167545096", - " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@d48ad31d", + " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@8b829207", " 959 ret get_ledger_network_id -> Ok(Bytes(obj#1117))": "cpu:167548251, mem:106125842, objs:-/559@db2ec1f1", " 960 ret create_contract -> Ok(Address(obj#1119))": "cpu:167688408, mem:106142042, objs:-/560@41ccfcc2, store:-/81@f81ad7da, foot:81@15685e3b, auth:-/1@6a69f567", " 961 call bytes_new_from_slice(1723)": "cpu:167688663, auth:-/-", @@ -969,7 +969,7 @@ " 967 call create_contract(Address(obj#1125), Bytes(obj#1123), Bytes(obj#1127))": "", " 968 call obj_cmp(Address(obj#1129), Address(obj#1125))": "cpu:169688973, mem:107459846, objs:-/565@1cad2db4, auth:1@2123cf2b/-", " 969 ret obj_cmp -> Ok(0)": "cpu:169689659", - " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@94e13f1", + " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@83e05267", " 971 ret get_ledger_network_id -> Ok(Bytes(obj#1131))": "cpu:169692814, mem:107459958, objs:-/566@56ce3a87", " 972 ret create_contract -> Ok(Address(obj#1133))": "cpu:169829465, mem:107476344, objs:-/567@3c1a2bca, store:-/82@768815a, foot:82@1f4b7a36, auth:-/1@27facc4a", " 973 call bytes_new_from_slice(1723)": "cpu:169829720, auth:-/-", @@ -981,7 +981,7 @@ " 979 call create_contract(Address(obj#1139), Bytes(obj#1137), Bytes(obj#1141))": "", " 980 call obj_cmp(Address(obj#1143), Address(obj#1139))": "cpu:171830030, mem:108794148, objs:-/572@1665aa07, auth:1@97298f20/-", " 981 ret obj_cmp -> Ok(0)": "cpu:171830716", - " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@e23f270a", + " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@4021cf1a", " 983 ret get_ledger_network_id -> Ok(Bytes(obj#1145))": "cpu:171833871, mem:108794260, objs:-/573@6e3f538d", " 984 ret create_contract -> Ok(Address(obj#1147))": "cpu:171974378, mem:108810832, objs:-/574@3ab5a9ff, store:-/83@92fc960e, foot:83@99dcf372, auth:-/1@3dfa80d3", " 985 call bytes_new_from_slice(1723)": "cpu:171974633, auth:-/-", @@ -993,7 +993,7 @@ " 991 call create_contract(Address(obj#1153), Bytes(obj#1151), Bytes(obj#1155))": "", " 992 call obj_cmp(Address(obj#1157), Address(obj#1153))": "cpu:173974943, mem:110128636, objs:-/579@cce4f991, auth:1@48cd29c5/-", " 993 ret obj_cmp -> Ok(0)": "cpu:173975629", - " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@89073d7b", + " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@b8360dff", " 995 ret get_ledger_network_id -> Ok(Bytes(obj#1159))": "cpu:173978784, mem:110128748, objs:-/580@bc994841", " 996 ret create_contract -> Ok(Address(obj#1161))": "cpu:174119339, mem:110145506, objs:-/581@35af42cf, store:-/84@9f307726, foot:84@c027a220, auth:-/1@9c275ce6", " 997 call bytes_new_from_slice(1723)": "cpu:174119594, auth:-/-", @@ -1065,7 +1065,7 @@ "10057 call symbol_copy_to_slice(Symbol(obj#3741), U32(0), 12)": "", "10058 ret symbol_copy_to_slice -> Ok(())": "cpu:313842016", "10059 call bytes_len(Bytes(obj#3729))": " vm:-/-", - "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@15a30448", + "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@f1502f98", "10060 ret bytes_len -> Ok(U32(32))": "cpu:313847685", "10061 call vec_len(Vec(obj#2295))": "", "10062 ret vec_len -> Ok(U32(2))": "cpu:313848164", @@ -1197,7 +1197,7 @@ "10177 ret obj_cmp -> Ok(-1)": "cpu:313896294", "10178 call obj_cmp(Address(obj#2925), Address(obj#2293))": "", "10179 ret obj_cmp -> Ok(1)": "cpu:313896980", - "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@99e0911a", + "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@ddecb92e", "10180 call obj_cmp(Address(obj#2937), Address(obj#2293))": "", "10181 ret obj_cmp -> Ok(-1)": "cpu:313897666", "10182 call obj_cmp(Address(obj#2949), Address(obj#2293))": "", @@ -1329,7 +1329,7 @@ "10297 ret obj_cmp -> Ok(1)": "cpu:316135967", "10298 call obj_cmp(Address(obj#2733), Address(obj#2305))": "", "10299 ret obj_cmp -> Ok(1)": "cpu:316136653", - "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@d900f2b9", + "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@ef460cff", "10300 call obj_cmp(Address(obj#2745), Address(obj#2305))": "", "10301 ret obj_cmp -> Ok(-1)": "cpu:316137339", "10302 call obj_cmp(Address(obj#2757), Address(obj#2305))": "", @@ -1461,7 +1461,7 @@ "10417 ret obj_cmp -> Ok(1)": "cpu:318366253", "10418 call obj_cmp(Address(obj#2553), Address(obj#2317))": "", "10419 ret obj_cmp -> Ok(1)": "cpu:318366939", - "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@8cf28d27", + "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@7a1f2db2", "10420 call obj_cmp(Address(obj#2565), Address(obj#2317))": "", "10421 ret obj_cmp -> Ok(1)": "cpu:318367625", "10422 call obj_cmp(Address(obj#2577), Address(obj#2317))": "", @@ -1593,7 +1593,7 @@ "10537 ret obj_cmp -> Ok(1)": "cpu:320597820", "10538 call obj_cmp(Address(obj#2385), Address(obj#2329))": "", "10539 ret obj_cmp -> Ok(1)": "cpu:320598506", - "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@adb776b7", + "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@914bc040", "10540 call obj_cmp(Address(obj#2397), Address(obj#2329))": "", "10541 ret obj_cmp -> Ok(1)": "cpu:320599192", "10542 call obj_cmp(Address(obj#2409), Address(obj#2329))": "", @@ -1725,7 +1725,7 @@ "10657 ret symbol_new_from_slice -> Ok(Symbol(obj#3813))": "cpu:320677112, mem:194316654, objs:6@c55a0112/1907@a4e6778c", "10658 push VM:88663680:sym#3813(Bytes(obj#3801), Vec(obj#2343), Vec(obj#3811))": "cpu:322809101, mem:195646913, objs:-/1908@eff53b2, vm:1114112@a6f378b8/7@ae192e85, stk:47@612ae8f0, auth:47@b5bf038b/53@1b86918d", "10659 call symbol_len(Symbol(obj#3813))": "cpu:322815299, mem:195647063, objs:3@5ad62292/1908@eff53b2, stk:47@e7fe44c8", - "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@3b733ec9", + "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@daca6b74", "10660 ret symbol_len -> Ok(U32(12))": "cpu:322815515", "10661 call symbol_copy_to_slice(Symbol(obj#3813), U32(0), 12)": "", "10662 ret symbol_copy_to_slice -> Ok(())": "cpu:322815874", @@ -1857,7 +1857,7 @@ "10777 ret obj_cmp -> Ok(-1)": "cpu:322868780", "10778 call obj_cmp(Address(obj#2949), Address(obj#2341))": "", "10779 ret obj_cmp -> Ok(-1)": "cpu:322869466", - "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@f3b99202", + "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@4e66162c", "10780 call obj_cmp(Address(obj#2961), Address(obj#2341))": "", "10781 ret obj_cmp -> Ok(1)": "cpu:322870152", "10782 call obj_cmp(Address(obj#2973), Address(obj#2341))": "", @@ -1989,7 +1989,7 @@ "10897 ret obj_cmp -> Ok(1)": "cpu:325098337", "10898 call obj_cmp(Address(obj#2805), Address(obj#2353))": "", "10899 ret obj_cmp -> Ok(1)": "cpu:325099023", - "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@c40502a7", + "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@95eeba1e", "10900 call obj_cmp(Address(obj#2817), Address(obj#2353))": "", "10901 ret obj_cmp -> Ok(1)": "cpu:325099709", "10902 call obj_cmp(Address(obj#2829), Address(obj#2353))": "", @@ -2121,7 +2121,7 @@ "11017 ret obj_cmp -> Ok(1)": "cpu:327318507", "11018 call obj_cmp(Address(obj#2673), Address(obj#2365))": "", "11019 ret obj_cmp -> Ok(1)": "cpu:327319193", - "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@69ae4ce3", + "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@7b807866", "11020 call obj_cmp(Address(obj#2685), Address(obj#2365))": "", "11021 ret obj_cmp -> Ok(-1)": "cpu:327319879", "11022 call obj_cmp(Address(obj#2697), Address(obj#2365))": "", @@ -2253,7 +2253,7 @@ "11137 ret obj_cmp -> Ok(1)": "cpu:329539958", "11138 call obj_cmp(Address(obj#2553), Address(obj#2377))": "", "11139 ret obj_cmp -> Ok(1)": "cpu:329540644", - "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@c6d564e3", + "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@6ffec27e", "11140 call obj_cmp(Address(obj#2565), Address(obj#2377))": "", "11141 ret obj_cmp -> Ok(1)": "cpu:329541330", "11142 call obj_cmp(Address(obj#2577), Address(obj#2377))": "", @@ -2385,7 +2385,7 @@ "11257 ret obj_cmp -> Ok(1)": "cpu:331759642", "11258 call obj_cmp(Address(obj#2445), Address(obj#2389))": "", "11259 ret obj_cmp -> Ok(-1)": "cpu:331760328", - "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@19000368", + "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@eba6b1af", "11260 call obj_cmp(Address(obj#2457), Address(obj#2389))": "", "11261 ret obj_cmp -> Ok(1)": "cpu:331761014", "11262 call obj_cmp(Address(obj#2469), Address(obj#2389))": "", @@ -2517,7 +2517,7 @@ "11377 call vec_get(Vec(obj#2403), U32(0))": "", "11378 ret vec_get -> Ok(Symbol(obj#2399))": "cpu:333968163", "11379 call symbol_index_in_linear_memory(Symbol(obj#2399), U32(1048664), U32(3))": "cpu:333969412, mem:202305682, objs:4@d70cef75/1953@91de4774, stk:52@bf289828", - "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@165a018e", + "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@97aba755", "11380 ret symbol_index_in_linear_memory -> Ok(U32(0))": "cpu:333971143", "11381 call vec_get(Vec(obj#2403), U32(1))": "", "11382 ret vec_get -> Ok(Address(obj#2401))": "cpu:333972365", @@ -2649,7 +2649,7 @@ "11497 ret map_new_from_slices -> Ok(Map(obj#3915))": "cpu:334048235, mem:202306812, objs:6@5280520d/1958@fd4d99e3", "11498 call vec_new_from_slice(2)": "", "11499 ret vec_new_from_slice -> Ok(Vec(obj#3917))": "cpu:334051130, mem:202306908, objs:6@5280520d/1959@5a09f334", - "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@598eacaa", + "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@bed7d447", "11500 call vec_push_back(Vec(obj#3911), Vec(obj#3917))": "", "11501 ret vec_push_back -> Ok(Vec(obj#3919))": "cpu:334054348, mem:202306996, objs:6@5280520d/1960@1f7fd722", "11502 call symbol_new_from_slice(12)": "", @@ -2781,7 +2781,7 @@ "11617 ret obj_cmp -> Ok(-1)": "cpu:336227249", "11618 call obj_cmp(Address(obj#2421), Address(obj#2413))": " auth:53@5f88b02f/46@f8ccf3e", "11619 ret obj_cmp -> Ok(0)": "cpu:336227935", - "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@a93552d0", + "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@978a819", "11620 call obj_cmp(Address(obj#2429), Address(obj#3923))": "", "11621 ret obj_cmp -> Ok(0)": "cpu:336228621", "11622 call obj_cmp(Symbol(obj#2431), Symbol(obj#3921))": "", @@ -2913,7 +2913,7 @@ "11737 ret obj_cmp -> Ok(1)": "cpu:338434012", "11738 call obj_cmp(Address(obj#2913), Address(obj#2425))": "", "11739 ret obj_cmp -> Ok(-1)": "cpu:338434698", - "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@5f366658", + "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@af6ca8a", "11740 call obj_cmp(Address(obj#2925), Address(obj#2425))": "", "11741 ret obj_cmp -> Ok(1)": "cpu:338435384", "11742 call obj_cmp(Address(obj#2937), Address(obj#2425))": "", @@ -3045,7 +3045,7 @@ "11857 ret obj_cmp -> Ok(1)": "cpu:340639008", "11858 call obj_cmp(Address(obj#2853), Address(obj#2437))": "", "11859 ret obj_cmp -> Ok(1)": "cpu:340639694", - "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@68507614", + "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@c5cbfcbf", "11860 call obj_cmp(Address(obj#2865), Address(obj#2437))": "", "11861 ret obj_cmp -> Ok(1)": "cpu:340640380", "11862 call obj_cmp(Address(obj#2877), Address(obj#2437))": "", @@ -3177,7 +3177,7 @@ "11977 ret obj_cmp -> Ok(-1)": "cpu:342837665", "11978 call obj_cmp(Address(obj#2805), Address(obj#2449))": "", "11979 ret obj_cmp -> Ok(-1)": "cpu:342838351", - "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@73687fbb", + "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@c8d5c457", "11980 call obj_cmp(Address(obj#2817), Address(obj#2449))": "", "11981 ret obj_cmp -> Ok(-1)": "cpu:342839037", "11982 call obj_cmp(Address(obj#2829), Address(obj#2449))": "", @@ -7223,223 +7223,223 @@ "15655 call deserialize_from_bytes(Bytes(obj#2977))": "cpu:435886915, mem:266177338, objs:5@688bccae/2385@13933ba9, stk:100@abd69abe", "15656 ret deserialize_from_bytes -> Err(Error(Context, ExceededLimit))": "cpu:435889926, mem:266189370", "15657 pop VM:88663680:sym#4767 -> Err(Error(Context, ExceededLimit))": " vm:1114112@939ed128/7@ae192e85", - "15658 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e1a15142/2385@13933ba9, vm:-/-, stk:99@b480e09, auth:99@f0706ecf/1@5e083ce", + "15658 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e1a15142/2385@13933ba9, vm:-/-, stk:99@b480e09, auth:99@f0706ecf/1@6847e66e", "15659 pop VM:88663680:sym#4749 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1566 ret symbol_new_from_slice -> Ok(Symbol(obj#1765))": "cpu:211712863, mem:132896823, objs:-/883@d847983", - "15660 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@77c0c023/2385@13933ba9, vm:-/-, stk:98@a3e1398e, auth:98@5cdcd89/2@f6ee610d", + "15660 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@77c0c023/2385@13933ba9, vm:-/-, stk:98@a3e1398e, auth:98@5cdcd89/2@ee3cf4", "15661 pop VM:88663680:sym#4731 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15662 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a4ca3187/2385@13933ba9, vm:-/-, stk:97@1ff6fc47, auth:97@d20ed928/3@f99995b6", + "15662 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a4ca3187/2385@13933ba9, vm:-/-, stk:97@1ff6fc47, auth:97@d20ed928/3@f13054f0", "15663 pop VM:88663680:sym#4713 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15664 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@24495b22/2385@13933ba9, vm:-/-, stk:96@7b8171f2, auth:96@5788d49c/4@7559b287", + "15664 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@24495b22/2385@13933ba9, vm:-/-, stk:96@7b8171f2, auth:96@5788d49c/4@8a5d9c1c", "15665 pop VM:88663680:sym#4695 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15666 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce6f0c34/2385@13933ba9, vm:-/-, stk:95@6fb5fe01, auth:95@1eee3b18/5@ef631271", + "15666 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce6f0c34/2385@13933ba9, vm:-/-, stk:95@6fb5fe01, auth:95@1eee3b18/5@4cb99d76", "15667 pop VM:88663680:sym#4677 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15668 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1731f207/2385@13933ba9, vm:-/-, stk:94@935ab213, auth:94@179ecd46/6@ee6ec70f", + "15668 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1731f207/2385@13933ba9, vm:-/-, stk:94@935ab213, auth:94@179ecd46/6@420e9b23", "15669 pop VM:88663680:sym#4659 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1567 call vec_new_from_slice(2)": "", - "15670 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6b7af8f/2385@13933ba9, vm:-/-, stk:93@f10822a3, auth:93@ce449c1c/7@4a958812", + "15670 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6b7af8f/2385@13933ba9, vm:-/-, stk:93@f10822a3, auth:93@ce449c1c/7@b5858252", "15671 pop VM:88663680:sym#4641 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15672 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8812107/2385@13933ba9, vm:-/-, stk:92@a451b1b9, auth:92@ffe001d4/8@33fa1fbd", + "15672 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8812107/2385@13933ba9, vm:-/-, stk:92@a451b1b9, auth:92@ffe001d4/8@53a6d4bf", "15673 pop VM:88663680:sym#4623 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15674 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2ee70ce0/2385@13933ba9, vm:-/-, stk:91@eb0afd0e, auth:91@7e4754d8/9@7de0e451", + "15674 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2ee70ce0/2385@13933ba9, vm:-/-, stk:91@eb0afd0e, auth:91@7e4754d8/9@9474775b", "15675 pop VM:88663680:sym#4605 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15676 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8c948d82/2385@13933ba9, vm:-/-, stk:90@e74e5995, auth:90@96513e7d/10@c5a5650d", + "15676 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8c948d82/2385@13933ba9, vm:-/-, stk:90@e74e5995, auth:90@96513e7d/10@650cbef5", "15677 pop VM:88663680:sym#4587 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15678 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f12ff1b3/2385@13933ba9, vm:-/-, stk:89@6604cd6, auth:89@d0812138/11@3c15692a", + "15678 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f12ff1b3/2385@13933ba9, vm:-/-, stk:89@6604cd6, auth:89@d0812138/11@d1035bc4", "15679 pop VM:88663680:sym#4569 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1568 ret vec_new_from_slice -> Ok(Vec(obj#1767))": "cpu:211715866, mem:132896919, objs:-/884@34badc4a", - "15680 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@29a8936c/2385@13933ba9, vm:-/-, stk:88@e1efb8d2, auth:88@cd5771bf/12@2857e56d", + "15680 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@29a8936c/2385@13933ba9, vm:-/-, stk:88@e1efb8d2, auth:88@cd5771bf/12@ac6e6254", "15681 pop VM:88663680:sym#4551 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15682 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5896f443/2385@13933ba9, vm:-/-, stk:87@2d21dbee, auth:87@2bf3ee8e/13@26bc6c5d", + "15682 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5896f443/2385@13933ba9, vm:-/-, stk:87@2d21dbee, auth:87@2bf3ee8e/13@da248ea6", "15683 pop VM:88663680:sym#4533 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15684 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@85ea2de6/2385@13933ba9, vm:-/-, stk:86@2d293bcb, auth:86@5a169b63/14@b545f5f7", + "15684 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@85ea2de6/2385@13933ba9, vm:-/-, stk:86@2d293bcb, auth:86@5a169b63/14@d9883908", "15685 pop VM:88663680:sym#4515 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15686 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7be36f1/2385@13933ba9, vm:-/-, stk:85@e7dad090, auth:85@fcc167f9/15@851ecfa1", + "15686 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7be36f1/2385@13933ba9, vm:-/-, stk:85@e7dad090, auth:85@fcc167f9/15@38971f27", "15687 pop VM:88663680:sym#4497 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15688 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8bcbf724/2385@13933ba9, vm:-/-, stk:84@f5fba549, auth:84@9c5abac/16@fc084e35", + "15688 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8bcbf724/2385@13933ba9, vm:-/-, stk:84@f5fba549, auth:84@9c5abac/16@a343394", "15689 pop VM:88663680:sym#4479 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1569 call symbol_new_from_slice(15)": "cpu:211720474, mem:132897094", - "15690 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ecfef337/2385@13933ba9, vm:-/-, stk:83@5ee120dc, auth:83@fc052fd7/17@d70db7d8", + "15690 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ecfef337/2385@13933ba9, vm:-/-, stk:83@5ee120dc, auth:83@fc052fd7/17@b1b84d13", "15691 pop VM:88663680:sym#4461 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15692 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1db0bb89/2385@13933ba9, vm:-/-, stk:82@6c813208, auth:82@4dbaaa39/18@677478ca", + "15692 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1db0bb89/2385@13933ba9, vm:-/-, stk:82@6c813208, auth:82@4dbaaa39/18@ad43b7d6", "15693 pop VM:88663680:sym#4443 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15694 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a6eb85eb/2385@13933ba9, vm:-/-, stk:81@ed15a83b, auth:81@6a63417a/19@263df921", + "15694 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a6eb85eb/2385@13933ba9, vm:-/-, stk:81@ed15a83b, auth:81@6a63417a/19@3a7578e2", "15695 pop VM:88663680:sym#4425 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15696 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@42f9edc2/2385@13933ba9, vm:-/-, stk:80@bf8cd5bf, auth:80@94ce8370/20@603489ba", + "15696 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@42f9edc2/2385@13933ba9, vm:-/-, stk:80@bf8cd5bf, auth:80@94ce8370/20@be59ebd8", "15697 pop VM:88663680:sym#4407 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15698 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f69d8a9/2385@13933ba9, vm:-/-, stk:79@bb4fffae, auth:79@dd79bf55/21@695198ec", + "15698 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f69d8a9/2385@13933ba9, vm:-/-, stk:79@bb4fffae, auth:79@dd79bf55/21@f446046", "15699 pop VM:88663680:sym#4389 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1570 ret symbol_new_from_slice -> Ok(Symbol(obj#1769))": "cpu:211723511, mem:132897189, objs:-/885@30279af3", - "15700 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8ee9ebd6/2385@13933ba9, vm:-/-, stk:78@907f5783, auth:78@2ba65d18/22@f0bb730b", + "15700 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8ee9ebd6/2385@13933ba9, vm:-/-, stk:78@907f5783, auth:78@2ba65d18/22@97189aa7", "15701 pop VM:88663680:sym#4371 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15702 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@435c438a/2385@13933ba9, vm:-/-, stk:77@f5261b78, auth:77@701162dd/23@dcd11aeb", + "15702 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@435c438a/2385@13933ba9, vm:-/-, stk:77@f5261b78, auth:77@701162dd/23@d5c4bb2", "15703 pop VM:88663680:sym#4353 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15704 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@94432e06/2385@13933ba9, vm:-/-, stk:76@13588ffa, auth:76@2d055e71/24@fb4f5dbe", + "15704 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@94432e06/2385@13933ba9, vm:-/-, stk:76@13588ffa, auth:76@2d055e71/24@1fb513d8", "15705 pop VM:88663680:sym#4335 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15706 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@18ba39df/2385@13933ba9, vm:-/-, stk:75@8672b992, auth:75@ed119b0d/25@8266d9d0", + "15706 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@18ba39df/2385@13933ba9, vm:-/-, stk:75@8672b992, auth:75@ed119b0d/25@5227c07b", "15707 pop VM:88663680:sym#4317 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15708 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6046ef1/2385@13933ba9, vm:-/-, stk:74@2233dd85, auth:74@1c34a7fa/26@f40c2637", + "15708 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6046ef1/2385@13933ba9, vm:-/-, stk:74@2233dd85, auth:74@1c34a7fa/26@d7c9922a", "15709 pop VM:88663680:sym#4299 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1571 call vec_new_from_slice(2)": "", - "15710 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d92fcb83/2385@13933ba9, vm:-/-, stk:73@4a3b13e0, auth:73@206df3d8/27@bc908aa4", + "15710 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d92fcb83/2385@13933ba9, vm:-/-, stk:73@4a3b13e0, auth:73@206df3d8/27@1087aaa1", "15711 pop VM:88663680:sym#4281 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15712 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bc538c/2385@13933ba9, vm:-/-, stk:72@4cc962d8, auth:72@645944bd/28@2c501f92", + "15712 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bc538c/2385@13933ba9, vm:-/-, stk:72@4cc962d8, auth:72@645944bd/28@ece95b57", "15713 pop VM:88663680:sym#4263 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15714 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59156251/2385@13933ba9, vm:-/-, stk:71@c88d863b, auth:71@8827defa/29@bad4f2bc", + "15714 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59156251/2385@13933ba9, vm:-/-, stk:71@c88d863b, auth:71@8827defa/29@301e206d", "15715 pop VM:88663680:sym#4245 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15716 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@15016d65/2385@13933ba9, vm:-/-, stk:70@18da574b, auth:70@a98bd75d/30@30cbdc06", + "15716 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@15016d65/2385@13933ba9, vm:-/-, stk:70@18da574b, auth:70@a98bd75d/30@f1e11bf8", "15717 pop VM:88663680:sym#4227 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15718 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4b9c5dc3/2385@13933ba9, vm:-/-, stk:69@bbc14103, auth:69@fa30289b/31@9bec7c1e", + "15718 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4b9c5dc3/2385@13933ba9, vm:-/-, stk:69@bbc14103, auth:69@fa30289b/31@6596aea4", "15719 pop VM:88663680:sym#4209 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1572 ret vec_new_from_slice -> Ok(Vec(obj#1771))": "cpu:211726514, mem:132897285, objs:-/886@4126b0bc", - "15720 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64aa149b/2385@13933ba9, vm:-/-, stk:68@331c3ee5, auth:68@8aace2b/32@850af6e", + "15720 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64aa149b/2385@13933ba9, vm:-/-, stk:68@331c3ee5, auth:68@8aace2b/32@79493271", "15721 pop VM:88663680:sym#4191 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15722 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e028c957/2385@13933ba9, vm:-/-, stk:67@911b1b40, auth:67@e1fa2e12/33@70da9360", + "15722 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e028c957/2385@13933ba9, vm:-/-, stk:67@911b1b40, auth:67@e1fa2e12/33@76581f18", "15723 pop VM:88663680:sym#4173 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15724 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6814f707/2385@13933ba9, vm:-/-, stk:66@70ff85dd, auth:66@9f383a8/34@e87120aa", + "15724 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6814f707/2385@13933ba9, vm:-/-, stk:66@70ff85dd, auth:66@9f383a8/34@866e30b3", "15725 pop VM:88663680:sym#4155 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15726 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ea604735/2385@13933ba9, vm:-/-, stk:65@e0301773, auth:65@b9a97767/35@a0ae36b2", + "15726 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ea604735/2385@13933ba9, vm:-/-, stk:65@e0301773, auth:65@b9a97767/35@9aafbfc1", "15727 pop VM:88663680:sym#4137 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15728 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a39ceda3/2385@13933ba9, vm:-/-, stk:64@2b4c7a4d, auth:64@84fed67e/36@7b01f651", + "15728 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a39ceda3/2385@13933ba9, vm:-/-, stk:64@2b4c7a4d, auth:64@84fed67e/36@7bbd5bde", "15729 pop VM:88663680:sym#4119 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1573 call symbol_new_from_slice(15)": "cpu:211731122, mem:132897460", - "15730 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9e738a1d/2385@13933ba9, vm:-/-, stk:63@e69c8709, auth:63@2216aa93/37@ce95029a", + "15730 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9e738a1d/2385@13933ba9, vm:-/-, stk:63@e69c8709, auth:63@2216aa93/37@c5249f45", "15731 pop VM:88663680:sym#4101 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15732 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f7876b60/2385@13933ba9, vm:-/-, stk:62@7173313a, auth:62@f610ad3d/38@4736e33a", + "15732 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f7876b60/2385@13933ba9, vm:-/-, stk:62@7173313a, auth:62@f610ad3d/38@6bca814a", "15733 pop VM:88663680:sym#4083 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15734 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e6353f53/2385@13933ba9, vm:-/-, stk:61@afcdefe1, auth:61@97ccc004/39@e4490498", + "15734 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e6353f53/2385@13933ba9, vm:-/-, stk:61@afcdefe1, auth:61@97ccc004/39@7f28590", "15735 pop VM:88663680:sym#4065 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15736 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd52b07/2385@13933ba9, vm:-/-, stk:60@45327dbb, auth:60@bb22e4a2/40@fa5a50a8", + "15736 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd52b07/2385@13933ba9, vm:-/-, stk:60@45327dbb, auth:60@bb22e4a2/40@c9b75ca2", "15737 pop VM:88663680:sym#4047 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15738 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d8a476e8/2385@13933ba9, vm:-/-, stk:59@6d1d4a78, auth:59@4ba8f486/41@20fbc1ea", + "15738 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d8a476e8/2385@13933ba9, vm:-/-, stk:59@6d1d4a78, auth:59@4ba8f486/41@21f0c67d", "15739 pop VM:88663680:sym#4029 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1574 ret symbol_new_from_slice -> Ok(Symbol(obj#1773))": "cpu:211734159, mem:132897555, objs:-/887@98974acb", - "15740 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@681f9263/2385@13933ba9, vm:-/-, stk:58@35a77e43, auth:58@4c87870c/42@7d7423a5", + "15740 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@681f9263/2385@13933ba9, vm:-/-, stk:58@35a77e43, auth:58@4c87870c/42@64695111", "15741 pop VM:88663680:sym#4011 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15742 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8743913a/2385@13933ba9, vm:-/-, stk:57@e65a6d8b, auth:57@211b21d0/43@94c4c2fa", + "15742 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8743913a/2385@13933ba9, vm:-/-, stk:57@e65a6d8b, auth:57@211b21d0/43@3a41bd0", "15743 pop VM:88663680:sym#3993 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15744 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8b95962/2385@13933ba9, vm:-/-, stk:56@7df6e759, auth:56@5a778782/44@d5e55c80", + "15744 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8b95962/2385@13933ba9, vm:-/-, stk:56@7df6e759, auth:56@5a778782/44@f54c5a1b", "15745 pop VM:88663680:sym#3975 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15746 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1d255476/2385@13933ba9, vm:-/-, stk:55@c12ac3bb, auth:55@8edaf67e/45@7b650288", + "15746 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1d255476/2385@13933ba9, vm:-/-, stk:55@c12ac3bb, auth:55@8edaf67e/45@b8707c8b", "15747 pop VM:88663680:sym#3957 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15748 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a695e9d7/2385@13933ba9, vm:-/-, stk:54@78bb1f2, auth:54@d04d0718/46@5c77734a", + "15748 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a695e9d7/2385@13933ba9, vm:-/-, stk:54@78bb1f2, auth:54@d04d0718/46@1118f899", "15749 pop VM:88663680:sym#3939 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1575 call vec_new_from_slice(2)": "", - "15750 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6014b02/2385@13933ba9, vm:-/-, stk:53@256a64ec, auth:53@5f88b02f/47@307eee37", + "15750 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6014b02/2385@13933ba9, vm:-/-, stk:53@256a64ec, auth:53@5f88b02f/47@c5514991", "15751 pop VM:88663680:sym#3921 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15752 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5280520d/2385@13933ba9, vm:-/-, stk:52@c2f98259, auth:52@784dc0bf/48@7248573d", + "15752 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5280520d/2385@13933ba9, vm:-/-, stk:52@c2f98259, auth:52@784dc0bf/48@28b0fab5", "15753 pop VM:88663680:sym#3903 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15754 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7e2e2d7a/2385@13933ba9, vm:-/-, stk:51@d5b0995, auth:51@522c6456/49@70066174", + "15754 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7e2e2d7a/2385@13933ba9, vm:-/-, stk:51@d5b0995, auth:51@522c6456/49@d2131b61", "15755 pop VM:88663680:sym#3885 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15756 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@75b4840e/2385@13933ba9, vm:-/-, stk:50@d0a28170, auth:50@2cfdfd38/50@721402ff", + "15756 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@75b4840e/2385@13933ba9, vm:-/-, stk:50@d0a28170, auth:50@2cfdfd38/50@20cf5c10", "15757 pop VM:88663680:sym#3867 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15758 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21576ae6/2385@13933ba9, vm:-/-, stk:49@e851ee31, auth:49@a59e1027/51@e85f0bfb", + "15758 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21576ae6/2385@13933ba9, vm:-/-, stk:49@e851ee31, auth:49@a59e1027/51@e8d7c52f", "15759 pop VM:88663680:sym#3849 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1576 ret vec_new_from_slice -> Ok(Vec(obj#1775))": "cpu:211737162, mem:132897651, objs:-/888@9451c10e", - "15760 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b75d2348/2385@13933ba9, vm:-/-, stk:48@1c0f6ed3, auth:48@fbdba925/52@2cfb138c", + "15760 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b75d2348/2385@13933ba9, vm:-/-, stk:48@1c0f6ed3, auth:48@fbdba925/52@7838a61e", "15761 pop VM:88663680:sym#3831 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15762 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780be6/2385@13933ba9, vm:-/-, stk:47@7db5dc5e, auth:47@b5bf038b/53@8d92a2f3", + "15762 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780be6/2385@13933ba9, vm:-/-, stk:47@7db5dc5e, auth:47@b5bf038b/53@b5688ed4", "15763 pop VM:88663680:sym#3813 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15764 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c55a0112/2385@13933ba9, vm:-/-, stk:46@721ace68, auth:46@56765c20/54@e8a98b5e", + "15764 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c55a0112/2385@13933ba9, vm:-/-, stk:46@721ace68, auth:46@56765c20/54@fb25b580", "15765 pop VM:88663680:sym#3795 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15766 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5927544d/2385@13933ba9, vm:-/-, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@58a526c", + "15766 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5927544d/2385@13933ba9, vm:-/-, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@41661144", "15767 pop VM:88663680:sym#3777 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15768 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f0ef7bde/2385@13933ba9, vm:-/-, stk:44@7f4eec7a, auth:44@9c848851/56@5d663ae8", + "15768 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f0ef7bde/2385@13933ba9, vm:-/-, stk:44@7f4eec7a, auth:44@9c848851/56@1d5edd76", "15769 pop VM:88663680:sym#3759 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1577 call symbol_new_from_slice(15)": "cpu:211741770, mem:132897826", - "15770 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59a04dd9/2385@13933ba9, vm:-/-, stk:43@f25c04dc, auth:43@19b6ddf8/57@5f2e1a5a", + "15770 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59a04dd9/2385@13933ba9, vm:-/-, stk:43@f25c04dc, auth:43@19b6ddf8/57@2c2c27c8", "15771 pop VM:88663680:sym#3741 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15772 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a236cae6/2385@13933ba9, vm:-/-, stk:42@59b7cb1b, auth:42@88d2da86/58@438026", + "15772 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a236cae6/2385@13933ba9, vm:-/-, stk:42@59b7cb1b, auth:42@88d2da86/58@76f8898c", "15773 pop VM:88663680:sym#3723 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15774 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e18f418d/2385@13933ba9, vm:-/-, stk:41@2a41e58c, auth:41@a6bed382/59@4101df9d", + "15774 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e18f418d/2385@13933ba9, vm:-/-, stk:41@2a41e58c, auth:41@a6bed382/59@54f37be5", "15775 pop VM:88663680:sym#3705 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15776 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb79409a/2385@13933ba9, vm:-/-, stk:40@98e7cae6, auth:40@82ad913a/60@2ea2408c", + "15776 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb79409a/2385@13933ba9, vm:-/-, stk:40@98e7cae6, auth:40@82ad913a/60@286b9a23", "15777 pop VM:88663680:sym#3687 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15778 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9bf2215e/2385@13933ba9, vm:-/-, stk:39@4e38e93e, auth:39@72a2863a/61@632dff6c", + "15778 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9bf2215e/2385@13933ba9, vm:-/-, stk:39@4e38e93e, auth:39@72a2863a/61@1ed72e4c", "15779 pop VM:88663680:sym#3669 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1578 ret symbol_new_from_slice -> Ok(Symbol(obj#1777))": "cpu:211744807, mem:132897921, objs:-/889@604c542a", - "15780 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@60ecd793/2385@13933ba9, vm:-/-, stk:38@ce27915d, auth:38@be72f42c/62@15bf639a", + "15780 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@60ecd793/2385@13933ba9, vm:-/-, stk:38@ce27915d, auth:38@be72f42c/62@35ce7299", "15781 pop VM:88663680:sym#3651 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15782 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e5930fd6/2385@13933ba9, vm:-/-, stk:37@f67be49e, auth:37@bc299701/63@26825cfc", + "15782 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e5930fd6/2385@13933ba9, vm:-/-, stk:37@f67be49e, auth:37@bc299701/63@b6694b18", "15783 pop VM:88663680:sym#3633 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15784 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7c4c7d00/2385@13933ba9, vm:-/-, stk:36@344264f8, auth:36@52d76081/64@b64a504a", + "15784 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7c4c7d00/2385@13933ba9, vm:-/-, stk:36@344264f8, auth:36@52d76081/64@5a95e337", "15785 pop VM:88663680:sym#3615 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15786 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd01759/2385@13933ba9, vm:-/-, stk:35@bd233f57, auth:35@6ac911da/65@885483fb", + "15786 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd01759/2385@13933ba9, vm:-/-, stk:35@bd233f57, auth:35@6ac911da/65@d1b42823", "15787 pop VM:88663680:sym#3597 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15788 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f375813c/2385@13933ba9, vm:-/-, stk:34@8c1e22e, auth:34@3f742c7d/66@542acd18", + "15788 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f375813c/2385@13933ba9, vm:-/-, stk:34@8c1e22e, auth:34@3f742c7d/66@1a43deff", "15789 pop VM:88663680:sym#3579 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1579 call vec_new_from_slice(2)": "", - "15790 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@904fedee/2385@13933ba9, vm:-/-, stk:33@c7114ce6, auth:33@69141765/67@7275024f", + "15790 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@904fedee/2385@13933ba9, vm:-/-, stk:33@c7114ce6, auth:33@69141765/67@11cfaf4b", "15791 pop VM:88663680:sym#3561 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15792 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64e964ae/2385@13933ba9, vm:-/-, stk:32@b30db134, auth:32@824c08cd/68@e2cb1b88", + "15792 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64e964ae/2385@13933ba9, vm:-/-, stk:32@b30db134, auth:32@824c08cd/68@8dead7ae", "15793 pop VM:88663680:sym#3543 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15794 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f2148a0/2385@13933ba9, vm:-/-, stk:31@9025202a, auth:31@a2c8cd3d/69@f33cdb81", + "15794 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f2148a0/2385@13933ba9, vm:-/-, stk:31@9025202a, auth:31@a2c8cd3d/69@c941c4d9", "15795 pop VM:88663680:sym#3525 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15796 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63f6f9a9/2385@13933ba9, vm:-/-, stk:30@8353406, auth:30@9a437baf/70@45d6d618", + "15796 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63f6f9a9/2385@13933ba9, vm:-/-, stk:30@8353406, auth:30@9a437baf/70@b1f5c845", "15797 pop VM:88663680:sym#3507 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15798 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ab50c74/2385@13933ba9, vm:-/-, stk:29@8e0db03, auth:29@b886d50f/71@35001671", + "15798 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ab50c74/2385@13933ba9, vm:-/-, stk:29@8e0db03, auth:29@b886d50f/71@7f8d0e38", "15799 pop VM:88663680:sym#3489 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1580 ret vec_new_from_slice -> Ok(Vec(obj#1779))": "cpu:211747810, mem:132898017, objs:-/890@f0dbb3c", - "15800 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7348236e/2385@13933ba9, vm:-/-, stk:28@a0c273c1, auth:28@3ff20958/72@47e990d6", + "15800 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7348236e/2385@13933ba9, vm:-/-, stk:28@a0c273c1, auth:28@3ff20958/72@cc03a71d", "15801 pop VM:88663680:sym#3471 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15802 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@46838bca/2385@13933ba9, vm:-/-, stk:27@1716fbf9, auth:27@e7b679f1/73@4cc9b3c9", + "15802 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@46838bca/2385@13933ba9, vm:-/-, stk:27@1716fbf9, auth:27@e7b679f1/73@5ce5cc91", "15803 pop VM:88663680:sym#3453 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15804 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8a29114a/2385@13933ba9, vm:-/-, stk:26@be817170, auth:26@c7dd0c4/74@3bc5837c", + "15804 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8a29114a/2385@13933ba9, vm:-/-, stk:26@be817170, auth:26@c7dd0c4/74@5e867e61", "15805 pop VM:88663680:sym#3435 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15806 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7538824d/2385@13933ba9, vm:-/-, stk:25@aa930a00, auth:25@4bad9d16/75@aad22d1f", + "15806 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7538824d/2385@13933ba9, vm:-/-, stk:25@aa930a00, auth:25@4bad9d16/75@5bef4fdd", "15807 pop VM:88663680:sym#3417 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15808 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d7979c5/2385@13933ba9, vm:-/-, stk:24@56df4b81, auth:24@48cb09aa/76@f27f89c7", + "15808 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d7979c5/2385@13933ba9, vm:-/-, stk:24@56df4b81, auth:24@48cb09aa/76@f021ea1", "15809 pop VM:88663680:sym#3399 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1581 call symbol_new_from_slice(15)": "cpu:211752418, mem:132898192", - "15810 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dece707c/2385@13933ba9, vm:-/-, stk:23@35ad5b0e, auth:23@d1a25bf/77@c6cde3a3", + "15810 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dece707c/2385@13933ba9, vm:-/-, stk:23@35ad5b0e, auth:23@d1a25bf/77@37717916", "15811 pop VM:88663680:sym#3381 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15812 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@50f7e43c/2385@13933ba9, vm:-/-, stk:22@2f51cee1, auth:22@16c05aab/78@8a426f3d", + "15812 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@50f7e43c/2385@13933ba9, vm:-/-, stk:22@2f51cee1, auth:22@16c05aab/78@c4429de7", "15813 pop VM:88663680:sym#3363 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15814 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1dfc95c6/2385@13933ba9, vm:-/-, stk:21@7e8e04d5, auth:21@3b832e86/79@a82ff22", + "15814 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1dfc95c6/2385@13933ba9, vm:-/-, stk:21@7e8e04d5, auth:21@3b832e86/79@1e7a4929", "15815 pop VM:88663680:sym#3345 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15816 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f75e7e24/2385@13933ba9, vm:-/-, stk:20@d21d7cff, auth:20@5f1067df/80@bf2399d8", + "15816 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f75e7e24/2385@13933ba9, vm:-/-, stk:20@d21d7cff, auth:20@5f1067df/80@185ab1fb", "15817 pop VM:88663680:sym#3327 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15818 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbe03f55/2385@13933ba9, vm:-/-, stk:19@77ea2e51, auth:19@58fdc3c6/81@77a3547b", + "15818 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbe03f55/2385@13933ba9, vm:-/-, stk:19@77ea2e51, auth:19@58fdc3c6/81@fc360f4b", "15819 pop VM:88663680:sym#3309 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1582 ret symbol_new_from_slice -> Ok(Symbol(obj#1781))": "cpu:211755455, mem:132898287, objs:-/891@568f0514", - "15820 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d6e479d0/2385@13933ba9, vm:-/-, stk:18@c9502770, auth:18@fdee93cd/82@3492445e", + "15820 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d6e479d0/2385@13933ba9, vm:-/-, stk:18@c9502770, auth:18@fdee93cd/82@11733ef8", "15821 pop VM:88663680:sym#3291 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15822 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@da4b3063/2385@13933ba9, vm:-/-, stk:17@e515b98b, auth:17@aaf504d6/83@7e164200", + "15822 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@da4b3063/2385@13933ba9, vm:-/-, stk:17@e515b98b, auth:17@aaf504d6/83@2968194d", "15823 pop VM:88663680:sym#3273 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15824 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5d120581/2385@13933ba9, vm:-/-, stk:16@f096a1ef, auth:16@ab47d532/84@cbfb740f", + "15824 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5d120581/2385@13933ba9, vm:-/-, stk:16@f096a1ef, auth:16@ab47d532/84@62d501cd", "15825 pop VM:88663680:sym#3255 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15826 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f10dc2e/2385@13933ba9, vm:-/-, stk:15@e1361023, auth:15@b9d655c6/85@73f3e6c1", + "15826 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f10dc2e/2385@13933ba9, vm:-/-, stk:15@e1361023, auth:15@b9d655c6/85@2683aeac", "15827 pop VM:88663680:sym#3237 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15828 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@34c4d52d/2385@13933ba9, vm:-/-, stk:14@f0334746, auth:14@b810afca/86@c86b8426", + "15828 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@34c4d52d/2385@13933ba9, vm:-/-, stk:14@f0334746, auth:14@b810afca/86@4f274995", "15829 pop VM:88663680:sym#3219 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1583 call vec_new_from_slice(2)": "", - "15830 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21c30808/2385@13933ba9, vm:-/-, stk:13@1b1a4865, auth:13@dbd3a68b/87@6577c8fa", + "15830 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21c30808/2385@13933ba9, vm:-/-, stk:13@1b1a4865, auth:13@dbd3a68b/87@619a9230", "15831 pop VM:88663680:sym#3201 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15832 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f88259b/2385@13933ba9, vm:-/-, stk:12@d605a44b, auth:12@88878566/88@cb3102ee", + "15832 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f88259b/2385@13933ba9, vm:-/-, stk:12@d605a44b, auth:12@88878566/88@589e2244", "15833 pop VM:88663680:sym#3183 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15834 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1807fe6b/2385@13933ba9, vm:-/-, stk:11@58cd774d, auth:11@a85d5b0e/89@ed6ceead", + "15834 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1807fe6b/2385@13933ba9, vm:-/-, stk:11@58cd774d, auth:11@a85d5b0e/89@49340d44", "15835 pop VM:88663680:sym#3165 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15836 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@52ff6dcc/2385@13933ba9, vm:-/-, stk:10@a09fab6d, auth:10@e7bd3540/90@ec16c429", + "15836 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@52ff6dcc/2385@13933ba9, vm:-/-, stk:10@a09fab6d, auth:10@e7bd3540/90@28ad898c", "15837 pop VM:88663680:sym#3147 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15838 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2b28efe4/2385@13933ba9, vm:-/-, stk:9@2f48cbca, auth:9@ec33f68f/91@395c731a", + "15838 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2b28efe4/2385@13933ba9, vm:-/-, stk:9@2f48cbca, auth:9@ec33f68f/91@7c5607ea", "15839 pop VM:88663680:sym#3129 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1584 ret vec_new_from_slice -> Ok(Vec(obj#1783))": "cpu:211758458, mem:132898383, objs:-/892@b809db19", - "15840 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@791d89c4/2385@13933ba9, vm:-/-, stk:8@b14c9ea8, auth:8@8160ef64/92@ab21f8cb", + "15840 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@791d89c4/2385@13933ba9, vm:-/-, stk:8@b14c9ea8, auth:8@8160ef64/92@93ba961f", "15841 pop VM:88663680:sym#3111 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15842 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63e2c7f8/2385@13933ba9, vm:-/-, stk:7@39fbd9ac, auth:7@ebcc31f8/93@4e236eef", + "15842 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63e2c7f8/2385@13933ba9, vm:-/-, stk:7@39fbd9ac, auth:7@ebcc31f8/93@5f402e1c", "15843 pop VM:88663680:sym#3093 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15844 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ad68f76/2385@13933ba9, vm:-/-, stk:6@8d6b882d, auth:6@9fcc9592/94@e1aded09", + "15844 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ad68f76/2385@13933ba9, vm:-/-, stk:6@8d6b882d, auth:6@9fcc9592/94@98b76ce1", "15845 pop VM:88663680:sym#3075 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15846 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@73d7698b/2385@13933ba9, vm:-/-, stk:5@7a2b3d2e, auth:5@c8b580f0/95@67806d25", + "15846 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@73d7698b/2385@13933ba9, vm:-/-, stk:5@7a2b3d2e, auth:5@c8b580f0/95@abb1dd2f", "15847 pop VM:88663680:sym#3057 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15848 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6bbe61fa/2385@13933ba9, vm:-/-, stk:4@17923498, auth:4@9306758a/96@967230a4", + "15848 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6bbe61fa/2385@13933ba9, vm:-/-, stk:4@17923498, auth:4@9306758a/96@b9c97f81", "15849 pop VM:88663680:sym#3039 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1585 call symbol_new_from_slice(15)": "cpu:211763066, mem:132898558", - "15850 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f03e93d/2385@13933ba9, vm:-/-, stk:3@a584f97e, auth:3@af82ce81/97@43542813", + "15850 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f03e93d/2385@13933ba9, vm:-/-, stk:3@a584f97e, auth:3@af82ce81/97@a0a65ff4", "15851 pop VM:88663680:sym#3021 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15852 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3739fd65/2385@13933ba9, vm:-/-, stk:2@2907590a, auth:2@898e1e4c/98@1ab10348", + "15852 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3739fd65/2385@13933ba9, vm:-/-, stk:2@2907590a, auth:2@898e1e4c/98@e4794f3a", "15853 pop VM:88663680:sym#3003 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15854 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@389fc46f/2385@13933ba9, vm:-/-, stk:1@db4954c8, auth:1@b97e1980/99@1605bafa", + "15854 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@389fc46f/2385@13933ba9, vm:-/-, stk:1@db4954c8, auth:1@b97e1980/99@ea63ca6b", "15855 pop VM:88663680:call -> Err(Error(Auth, InvalidAction))": " vm:1114112@a6f378b8/7@ae192e85", "15856 ret call -> Err(Error(Auth, InvalidAction))": " objs:-/2385@13933ba9, vm:-/-, stk:-, auth:-/-", "15857 end": "cpu:435889926, mem:266189370, prngs:-/9b4a753, objs:-/2385@13933ba9, vm:-/-, evt:-, store:-/101@45d5c29c, foot:101@83cc2c7c, stk:-, auth:-/-", diff --git a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_xdr_deserialization_exceeding_host_object_depth.json b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_xdr_deserialization_exceeding_host_object_depth.json index 94ba145ae..01fae111f 100644 --- a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_xdr_deserialization_exceeding_host_object_depth.json +++ b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_fails_xdr_deserialization_exceeding_host_object_depth.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2011761, mem:1318326, objs:-/5@a60269d1, auth:1@6c2ade56/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2012447", - " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@525240f7", + " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@72b99d18", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2015602, mem:1318438, objs:-/6@a06c2cba", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2053467, mem:1319944, objs:-/7@77a0a1db, store:-/2@ca7bd8a8, foot:2@c7956e9e, auth:-/1@c716b1ea", " 13 call bytes_new_from_slice(1723)": "cpu:2053722, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4053930, mem:2637748, objs:-/12@546c0606, auth:1@a7879343/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4054616", - " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@c690470a", + " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@a19a51b4", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4057771, mem:2637860, objs:-/13@8641253d", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4099512, mem:2639552, objs:-/14@20711f65, store:-/3@cd31c995, foot:3@fb973c1e, auth:-/1@f39d17e5", " 25 call bytes_new_from_slice(1723)": "cpu:4099767, auth:-/-", @@ -33,7 +33,7 @@ " 31 call create_contract(Address(obj#33), Bytes(obj#31), Bytes(obj#35))": "", " 32 call obj_cmp(Address(obj#37), Address(obj#33))": "cpu:6099975, mem:3957356, objs:-/19@51e48355, auth:1@cbbd7837/-", " 33 ret obj_cmp -> Ok(0)": "cpu:6100661", - " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@a4cf6e03", + " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@47f29939", " 35 ret get_ledger_network_id -> Ok(Bytes(obj#39))": "cpu:6103816, mem:3957468, objs:-/20@81732572", " 36 ret create_contract -> Ok(Address(obj#41))": "cpu:6144911, mem:3959346, objs:-/21@69ad5c25, store:-/4@b3a15027, foot:4@fa0f6bfc, auth:-/1@f7095008", " 37 call bytes_new_from_slice(1723)": "cpu:6145166, auth:-/-", @@ -45,7 +45,7 @@ " 43 call create_contract(Address(obj#47), Bytes(obj#45), Bytes(obj#49))": "", " 44 call obj_cmp(Address(obj#51), Address(obj#47))": "cpu:8145395, mem:5277150, objs:-/26@a092b5f, auth:1@67261b2f/-", " 45 ret obj_cmp -> Ok(0)": "cpu:8146081", - " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@11a86388", + " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@24809fc3", " 47 ret get_ledger_network_id -> Ok(Bytes(obj#53))": "cpu:8149236, mem:5277262, objs:-/27@a7bff74e", " 48 ret create_contract -> Ok(Address(obj#55))": "cpu:8197003, mem:5279326, objs:-/28@9670d0cc, store:-/5@58e9c9eb, foot:5@81d1a3bf, auth:-/1@83ee389", " 49 call bytes_new_from_slice(1723)": "cpu:8197258, auth:-/-", @@ -57,7 +57,7 @@ " 55 call create_contract(Address(obj#61), Bytes(obj#59), Bytes(obj#63))": "", " 56 call obj_cmp(Address(obj#65), Address(obj#61))": "cpu:10197487, mem:6597130, objs:-/33@9dddfe41, auth:1@2aa08219/-", " 57 ret obj_cmp -> Ok(0)": "cpu:10198173", - " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@c0063591", + " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@63a8e160", " 59 ret get_ledger_network_id -> Ok(Bytes(obj#67))": "cpu:10201328, mem:6597242, objs:-/34@6254c4ce", " 60 ret create_contract -> Ok(Address(obj#69))": "cpu:10249147, mem:6599492, objs:-/35@be977224, store:-/6@889e1830, foot:6@364e4b9c, auth:-/1@47f4d18a", " 61 call bytes_new_from_slice(1723)": "cpu:10249402, auth:-/-", @@ -69,7 +69,7 @@ " 67 call create_contract(Address(obj#75), Bytes(obj#73), Bytes(obj#77))": "", " 68 call obj_cmp(Address(obj#79), Address(obj#75))": "cpu:12249631, mem:7917296, objs:-/40@2f55f569, auth:1@e8341f65/-", " 69 ret obj_cmp -> Ok(0)": "cpu:12250317", - " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@ebc115d9", + " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@9c248d", " 71 ret get_ledger_network_id -> Ok(Bytes(obj#81))": "cpu:12253472, mem:7917408, objs:-/41@b3ed0b57", " 72 ret create_contract -> Ok(Address(obj#83))": "cpu:12303367, mem:7919844, objs:-/42@cd5ce2c6, store:-/7@b061db62, foot:7@9320c72c, auth:-/1@1b3d937c", " 73 call bytes_new_from_slice(1723)": "cpu:12303622, auth:-/-", @@ -81,7 +81,7 @@ " 79 call create_contract(Address(obj#89), Bytes(obj#87), Bytes(obj#91))": "", " 80 call obj_cmp(Address(obj#93), Address(obj#89))": "cpu:14303851, mem:9237648, objs:-/47@92c2cfa5, auth:1@b20998ae/-", " 81 ret obj_cmp -> Ok(0)": "cpu:14304537", - " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@59dea197", + " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@f80b6a67", " 83 ret get_ledger_network_id -> Ok(Bytes(obj#95))": "cpu:14307692, mem:9237760, objs:-/48@149b423f", " 84 ret create_contract -> Ok(Address(obj#97))": "cpu:14358717, mem:9240382, objs:-/49@3bf0a33b, store:-/8@786ebbf2, foot:8@ee264d76, auth:-/1@221f74c6", " 85 call bytes_new_from_slice(1723)": "cpu:14358972, auth:-/-", @@ -93,7 +93,7 @@ " 91 call create_contract(Address(obj#103), Bytes(obj#101), Bytes(obj#105))": "", " 92 call obj_cmp(Address(obj#107), Address(obj#103))": "cpu:16359220, mem:10558186, objs:-/54@da02b960, auth:1@48d6a5b6/-", " 93 ret obj_cmp -> Ok(0)": "cpu:16359906", - " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@219d787c", + " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@81156bb8", " 95 ret get_ledger_network_id -> Ok(Bytes(obj#109))": "cpu:16363061, mem:10558298, objs:-/55@bb3ae225", " 96 ret create_contract -> Ok(Address(obj#111))": "cpu:16412374, mem:10561106, objs:-/56@51ce6ca1, store:-/9@f38d0f95, foot:9@5c828c77, auth:-/1@a42343f5", " 97 call bytes_new_from_slice(1723)": "cpu:16412629, auth:-/-", @@ -105,7 +105,7 @@ " 103 call create_contract(Address(obj#117), Bytes(obj#115), Bytes(obj#119))": "", " 104 call obj_cmp(Address(obj#121), Address(obj#117))": "cpu:18412877, mem:11878910, objs:-/61@61c34d4e, auth:1@f96e0eaf/-", " 105 ret obj_cmp -> Ok(0)": "cpu:18413563", - " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@cc6b59fa", + " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@8cefe257", " 107 ret get_ledger_network_id -> Ok(Bytes(obj#123))": "cpu:18416718, mem:11879022, objs:-/62@99cabf3b", " 108 ret create_contract -> Ok(Address(obj#125))": "cpu:18472685, mem:11882016, objs:-/63@7f4b322d, store:-/10@ef434c8d, foot:10@317c61e3, auth:-/1@d0418fbc", " 109 call bytes_new_from_slice(1723)": "cpu:18472940, auth:-/-", @@ -117,7 +117,7 @@ " 115 call create_contract(Address(obj#131), Bytes(obj#129), Bytes(obj#133))": "", " 116 call obj_cmp(Address(obj#135), Address(obj#131))": "cpu:20473188, mem:13199820, objs:-/68@7f9f7f94, auth:1@5cc0479e/-", " 117 ret obj_cmp -> Ok(0)": "cpu:20473874", - " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@b017d899", + " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@d336881f", " 119 ret get_ledger_network_id -> Ok(Bytes(obj#137))": "cpu:20477029, mem:13199932, objs:-/69@80e69e15", " 120 ret create_contract -> Ok(Address(obj#139))": "cpu:20534058, mem:13203112, objs:-/70@1ab41456, store:-/11@e6b97191, foot:11@bd373101, auth:-/1@6fd7cdbe", " 121 call bytes_new_from_slice(1723)": "cpu:20534313, auth:-/-", @@ -129,7 +129,7 @@ " 127 call create_contract(Address(obj#145), Bytes(obj#143), Bytes(obj#147))": "", " 128 call obj_cmp(Address(obj#149), Address(obj#145))": "cpu:22534561, mem:14520916, objs:-/75@942af2dd, auth:1@4d46cea6/-", " 129 ret obj_cmp -> Ok(0)": "cpu:22535247", - " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@c791f0c8", + " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@7324855f", " 131 ret get_ledger_network_id -> Ok(Bytes(obj#151))": "cpu:22538402, mem:14521028, objs:-/76@f11550b8", " 132 ret create_contract -> Ok(Address(obj#153))": "cpu:22596497, mem:14524394, objs:-/77@9f3fd10e, store:-/12@7c2f9ba3, foot:12@35d2fc7a, auth:-/1@3eabf35c", " 133 call bytes_new_from_slice(1723)": "cpu:22596752, auth:-/-", @@ -141,7 +141,7 @@ " 139 call create_contract(Address(obj#159), Bytes(obj#157), Bytes(obj#161))": "", " 140 call obj_cmp(Address(obj#163), Address(obj#159))": "cpu:24597000, mem:15842198, objs:-/82@21bbc84c, auth:1@9e1b78d/-", " 141 ret obj_cmp -> Ok(0)": "cpu:24597686", - " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@6f759f1a", + " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@44fbf6bc", " 143 ret get_ledger_network_id -> Ok(Bytes(obj#165))": "cpu:24600841, mem:15842310, objs:-/83@e08739a8", " 144 ret create_contract -> Ok(Address(obj#167))": "cpu:24659996, mem:15845862, objs:-/84@ae4d6e4e, store:-/13@2b941c36, foot:13@62a1620d, auth:-/1@aee68f92", " 145 call bytes_new_from_slice(1723)": "cpu:24660251, auth:-/-", @@ -153,7 +153,7 @@ " 151 call create_contract(Address(obj#173), Bytes(obj#171), Bytes(obj#175))": "", " 152 call obj_cmp(Address(obj#177), Address(obj#173))": "cpu:26660499, mem:17163666, objs:-/89@5858b5f0, auth:1@445de93b/-", " 153 ret obj_cmp -> Ok(0)": "cpu:26661185", - " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@3ba9ffd2", + " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@ca57c8bc", " 155 ret get_ledger_network_id -> Ok(Bytes(obj#179))": "cpu:26664340, mem:17163778, objs:-/90@5826fb63", " 156 ret create_contract -> Ok(Address(obj#181))": "cpu:26722783, mem:17167516, objs:-/91@cd1cc65f, store:-/14@c33862ef, foot:14@4ba8b225, auth:-/1@617a1eda", " 157 call bytes_new_from_slice(1723)": "cpu:26723038, auth:-/-", @@ -165,7 +165,7 @@ " 163 call create_contract(Address(obj#187), Bytes(obj#185), Bytes(obj#189))": "", " 164 call obj_cmp(Address(obj#191), Address(obj#187))": "cpu:28723286, mem:18485320, objs:-/96@d11f253b, auth:1@225cfc41/-", " 165 ret obj_cmp -> Ok(0)": "cpu:28723972", - " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@2cc903b5", + " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@a1637ff7", " 167 ret get_ledger_network_id -> Ok(Bytes(obj#193))": "cpu:28727127, mem:18485432, objs:-/97@dd3834b9", " 168 ret create_contract -> Ok(Address(obj#195))": "cpu:28788408, mem:18489356, objs:-/98@ddc288ce, store:-/15@8f2e00df, foot:15@85a5128f, auth:-/1@84c703c7", " 169 call bytes_new_from_slice(1723)": "cpu:28788663, auth:-/-", @@ -177,7 +177,7 @@ " 175 call create_contract(Address(obj#201), Bytes(obj#199), Bytes(obj#203))": "", " 176 call obj_cmp(Address(obj#205), Address(obj#201))": "cpu:30788911, mem:19807160, objs:-/103@6ee6745e, auth:1@f8067266/-", " 177 ret obj_cmp -> Ok(0)": "cpu:30789597", - " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@1c1b5ee3", + " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@e817f19c", " 179 ret get_ledger_network_id -> Ok(Bytes(obj#207))": "cpu:30792752, mem:19807272, objs:-/104@da675632", " 180 ret create_contract -> Ok(Address(obj#209))": "cpu:30855171, mem:19811382, objs:-/105@3c250e80, store:-/16@56a18dab, foot:16@3031c757, auth:-/1@6c77c0c9", " 181 call bytes_new_from_slice(1723)": "cpu:30855426, auth:-/-", @@ -189,7 +189,7 @@ " 187 call create_contract(Address(obj#215), Bytes(obj#213), Bytes(obj#217))": "", " 188 call obj_cmp(Address(obj#219), Address(obj#215))": "cpu:32855695, mem:21129186, objs:-/110@3460445f, auth:1@6f395edd/-", " 189 ret obj_cmp -> Ok(0)": "cpu:32856381", - " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@d3530f4c", + " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@1357ae2d", " 191 ret get_ledger_network_id -> Ok(Bytes(obj#221))": "cpu:32859536, mem:21129298, objs:-/111@88602a33", " 192 ret create_contract -> Ok(Address(obj#223))": "cpu:32925835, mem:21133594, objs:-/112@1a30dd19, store:-/17@a1cdad8, foot:17@e114d7d6, auth:-/1@37251ff7", " 193 call bytes_new_from_slice(1723)": "cpu:32926090, auth:-/-", @@ -201,7 +201,7 @@ " 199 call create_contract(Address(obj#229), Bytes(obj#227), Bytes(obj#231))": "", " 200 call obj_cmp(Address(obj#233), Address(obj#229))": "cpu:34926359, mem:22451398, objs:-/117@f769caeb, auth:1@93079846/-", " 201 ret obj_cmp -> Ok(0)": "cpu:34927045", - " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@80a698b9", + " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@507bf132", " 203 ret get_ledger_network_id -> Ok(Bytes(obj#235))": "cpu:34930200, mem:22451510, objs:-/118@a79d010f", " 204 ret create_contract -> Ok(Address(obj#237))": "cpu:34991975, mem:22455992, objs:-/119@faf87716, store:-/18@284aadf3, foot:18@4481d0f6, auth:-/1@79adba34", " 205 call bytes_new_from_slice(1723)": "cpu:34992230, auth:-/-", @@ -213,7 +213,7 @@ " 211 call create_contract(Address(obj#243), Bytes(obj#241), Bytes(obj#245))": "", " 212 call obj_cmp(Address(obj#247), Address(obj#243))": "cpu:36992499, mem:23773796, objs:-/124@ddd780c4, auth:1@3e29297a/-", " 213 ret obj_cmp -> Ok(0)": "cpu:36993185", - " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@e22dec68", + " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@9a48546", " 215 ret get_ledger_network_id -> Ok(Bytes(obj#249))": "cpu:36996340, mem:23773908, objs:-/125@510120e0", " 216 ret create_contract -> Ok(Address(obj#251))": "cpu:37060193, mem:23778576, objs:-/126@c484c412, store:-/19@5d26a578, foot:19@fbbb733f, auth:-/1@43f44fbb", " 217 call bytes_new_from_slice(1723)": "cpu:37060448, auth:-/-", @@ -225,7 +225,7 @@ " 223 call create_contract(Address(obj#257), Bytes(obj#255), Bytes(obj#259))": "", " 224 call obj_cmp(Address(obj#261), Address(obj#257))": "cpu:39060717, mem:25096380, objs:-/131@e4c001b6, auth:1@399056d1/-", " 225 ret obj_cmp -> Ok(0)": "cpu:39061403", - " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@fc1a6912", + " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@20d8425c", " 227 ret get_ledger_network_id -> Ok(Bytes(obj#263))": "cpu:39064558, mem:25096492, objs:-/132@18805d31", " 228 ret create_contract -> Ok(Address(obj#265))": "cpu:39131253, mem:25101346, objs:-/133@daaee86c, store:-/20@6d147ad1, foot:20@f939d50c, auth:-/1@a9273ecb", " 229 call bytes_new_from_slice(1723)": "cpu:39131508, auth:-/-", @@ -237,7 +237,7 @@ " 235 call create_contract(Address(obj#271), Bytes(obj#269), Bytes(obj#273))": "", " 236 call obj_cmp(Address(obj#275), Address(obj#271))": "cpu:41131777, mem:26419150, objs:-/138@8a39b9a5, auth:1@aea0b0c0/-", " 237 ret obj_cmp -> Ok(0)": "cpu:41132463", - " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@f1da0dd5", + " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@e3b3557c", " 239 ret get_ledger_network_id -> Ok(Bytes(obj#277))": "cpu:41135618, mem:26419262, objs:-/139@ce76e6fb", " 240 ret create_contract -> Ok(Address(obj#279))": "cpu:41205155, mem:26424302, objs:-/140@737416ce, store:-/21@cac04bf9, foot:21@435f9792, auth:-/1@48a20b51", " 241 call bytes_new_from_slice(1723)": "cpu:41205410, auth:-/-", @@ -249,7 +249,7 @@ " 247 call create_contract(Address(obj#285), Bytes(obj#283), Bytes(obj#287))": "", " 248 call obj_cmp(Address(obj#289), Address(obj#285))": "cpu:43205679, mem:27742106, objs:-/145@74331567, auth:1@330b1c67/-", " 249 ret obj_cmp -> Ok(0)": "cpu:43206365", - " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@9a165117", + " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@c480bd80", " 251 ret get_ledger_network_id -> Ok(Bytes(obj#291))": "cpu:43209520, mem:27742218, objs:-/146@d168c7a7", " 252 ret create_contract -> Ok(Address(obj#293))": "cpu:43278343, mem:27747444, objs:-/147@16f6005c, store:-/22@33195a82, foot:22@b33a0417, auth:-/1@b7d59a15", " 253 call bytes_new_from_slice(1723)": "cpu:43278598, auth:-/-", @@ -261,7 +261,7 @@ " 259 call create_contract(Address(obj#299), Bytes(obj#297), Bytes(obj#301))": "", " 260 call obj_cmp(Address(obj#303), Address(obj#299))": "cpu:45278867, mem:29065248, objs:-/152@e53b83e3, auth:1@785996a7/-", " 261 ret obj_cmp -> Ok(0)": "cpu:45279553", - " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@fe7b423e", + " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@7f8bbf70", " 263 ret get_ledger_network_id -> Ok(Bytes(obj#305))": "cpu:45282708, mem:29065360, objs:-/153@9f17ddc6", " 264 ret create_contract -> Ok(Address(obj#307))": "cpu:45355387, mem:29070772, objs:-/154@cf228652, store:-/23@300f245c, foot:23@27540f12, auth:-/1@cefa2a75", " 265 call bytes_new_from_slice(1723)": "cpu:45355642, auth:-/-", @@ -273,7 +273,7 @@ " 271 call create_contract(Address(obj#313), Bytes(obj#311), Bytes(obj#315))": "", " 272 call obj_cmp(Address(obj#317), Address(obj#313))": "cpu:47355911, mem:30388576, objs:-/159@63a78bd4, auth:1@da0afee7/-", " 273 ret obj_cmp -> Ok(0)": "cpu:47356597", - " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@9dbef6d4", + " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@6aa8b510", " 275 ret get_ledger_network_id -> Ok(Bytes(obj#319))": "cpu:47359752, mem:30388688, objs:-/160@4af09aee", " 276 ret create_contract -> Ok(Address(obj#321))": "cpu:47430705, mem:30394286, objs:-/161@92ee88ed, store:-/24@101e4564, foot:24@c9aaea41, auth:-/1@84386fec", " 277 call bytes_new_from_slice(1723)": "cpu:47430960, auth:-/-", @@ -285,7 +285,7 @@ " 283 call create_contract(Address(obj#327), Bytes(obj#325), Bytes(obj#329))": "", " 284 call obj_cmp(Address(obj#331), Address(obj#327))": "cpu:49431229, mem:31712090, objs:-/166@7fccca03, auth:1@aa9fae3a/-", " 285 ret obj_cmp -> Ok(0)": "cpu:49431915", - " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@f33a894d", + " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@d871ba2c", " 287 ret get_ledger_network_id -> Ok(Bytes(obj#333))": "cpu:49435070, mem:31712202, objs:-/167@a32ae8a9", " 288 ret create_contract -> Ok(Address(obj#335))": "cpu:49509879, mem:31717986, objs:-/168@2aafa42f, store:-/25@8e92a30e, foot:25@3b46cff6, auth:-/1@96704b35", " 289 call bytes_new_from_slice(1723)": "cpu:49510134, auth:-/-", @@ -297,7 +297,7 @@ " 295 call create_contract(Address(obj#341), Bytes(obj#339), Bytes(obj#343))": "", " 296 call obj_cmp(Address(obj#345), Address(obj#341))": "cpu:51510403, mem:33035790, objs:-/173@81268679, auth:1@3dec2490/-", " 297 ret obj_cmp -> Ok(0)": "cpu:51511089", - " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@71ebc84a", + " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@121df96c", " 299 ret get_ledger_network_id -> Ok(Bytes(obj#347))": "cpu:51514244, mem:33035902, objs:-/174@86b62e4b", " 300 ret create_contract -> Ok(Address(obj#349))": "cpu:51590119, mem:33041872, objs:-/175@1dabe68a, store:-/26@f151c33b, foot:26@1cf63df0, auth:-/1@302de960", " 301 call bytes_new_from_slice(1723)": "cpu:51590374, auth:-/-", @@ -309,7 +309,7 @@ " 307 call create_contract(Address(obj#355), Bytes(obj#353), Bytes(obj#357))": "", " 308 call obj_cmp(Address(obj#359), Address(obj#355))": "cpu:53590643, mem:34359676, objs:-/180@8b3d9cc8, auth:1@6b4de48e/-", " 309 ret obj_cmp -> Ok(0)": "cpu:53591329", - " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@e71ff6d6", + " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@3202ab93", " 311 ret get_ledger_network_id -> Ok(Bytes(obj#361))": "cpu:53594484, mem:34359788, objs:-/181@7d2def3b", " 312 ret create_contract -> Ok(Address(obj#363))": "cpu:53671421, mem:34365944, objs:-/182@4ac4bd9e, store:-/27@8340ee6d, foot:27@fba9c4de, auth:-/1@95751d48", " 313 call bytes_new_from_slice(1723)": "cpu:53671676, auth:-/-", @@ -321,7 +321,7 @@ " 319 call create_contract(Address(obj#369), Bytes(obj#367), Bytes(obj#371))": "", " 320 call obj_cmp(Address(obj#373), Address(obj#369))": "cpu:55671945, mem:35683748, objs:-/187@41f59b8a, auth:1@6b4c8d3e/-", " 321 ret obj_cmp -> Ok(0)": "cpu:55672631", - " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@1287fb5c", + " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@a8b01321", " 323 ret get_ledger_network_id -> Ok(Bytes(obj#375))": "cpu:55675786, mem:35683860, objs:-/188@acf77cba", " 324 ret create_contract -> Ok(Address(obj#377))": "cpu:55753787, mem:35690202, objs:-/189@4ae78034, store:-/28@fb432119, foot:28@dbaee220, auth:-/1@ebc38f0b", " 325 call bytes_new_from_slice(1723)": "cpu:55754042, auth:-/-", @@ -333,7 +333,7 @@ " 331 call create_contract(Address(obj#383), Bytes(obj#381), Bytes(obj#385))": "", " 332 call obj_cmp(Address(obj#387), Address(obj#383))": "cpu:57754311, mem:37008006, objs:-/194@41937dac, auth:1@6a2c4396/-", " 333 ret obj_cmp -> Ok(0)": "cpu:57754997", - " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@6e63ce88", + " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@d85d3c27", " 335 ret get_ledger_network_id -> Ok(Bytes(obj#389))": "cpu:57758152, mem:37008118, objs:-/195@c7b31bd4", " 336 ret create_contract -> Ok(Address(obj#391))": "cpu:57833659, mem:37014646, objs:-/196@630be1a, store:-/29@f2b2ba33, foot:29@86207dba, auth:-/1@8030be25", " 337 call bytes_new_from_slice(1723)": "cpu:57833914, auth:-/-", @@ -345,7 +345,7 @@ " 343 call create_contract(Address(obj#397), Bytes(obj#395), Bytes(obj#399))": "", " 344 call obj_cmp(Address(obj#401), Address(obj#397))": "cpu:59834183, mem:38332450, objs:-/201@e7013f13, auth:1@efff116e/-", " 345 ret obj_cmp -> Ok(0)": "cpu:59834869", - " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@717266a3", + " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@6b349df9", " 347 ret get_ledger_network_id -> Ok(Bytes(obj#403))": "cpu:59838024, mem:38332562, objs:-/202@b6091744", " 348 ret create_contract -> Ok(Address(obj#405))": "cpu:59918151, mem:38339276, objs:-/203@fcd408de, store:-/30@7b349abd, foot:30@39863402, auth:-/1@eed4bb1e", " 349 call bytes_new_from_slice(1723)": "cpu:59918406, auth:-/-", @@ -357,7 +357,7 @@ " 355 call create_contract(Address(obj#411), Bytes(obj#409), Bytes(obj#413))": "", " 356 call obj_cmp(Address(obj#415), Address(obj#411))": "cpu:61918675, mem:39657080, objs:-/208@bef8f250, auth:1@4d2b336a/-", " 357 ret obj_cmp -> Ok(0)": "cpu:61919361", - " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@c6b91a0a", + " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@74393111", " 359 ret get_ledger_network_id -> Ok(Bytes(obj#417))": "cpu:61922516, mem:39657192, objs:-/209@5a6a7d5d", " 360 ret create_contract -> Ok(Address(obj#419))": "cpu:62001929, mem:39664092, objs:-/210@1ac1704e, store:-/31@4fa3e91b, foot:31@305062e7, auth:-/1@7a19b357", " 361 call bytes_new_from_slice(1723)": "cpu:62002184, auth:-/-", @@ -369,7 +369,7 @@ " 367 call create_contract(Address(obj#425), Bytes(obj#423), Bytes(obj#427))": "", " 368 call obj_cmp(Address(obj#429), Address(obj#425))": "cpu:64002453, mem:40981896, objs:-/215@a1746993, auth:1@f7013137/-", " 369 ret obj_cmp -> Ok(0)": "cpu:64003139", - " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@1c77542", + " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@53b8d019", " 371 ret get_ledger_network_id -> Ok(Bytes(obj#431))": "cpu:64006294, mem:40982008, objs:-/216@cf95d889", " 372 ret create_contract -> Ok(Address(obj#433))": "cpu:64088615, mem:40989094, objs:-/217@99f04015, store:-/32@3ddbcca8, foot:32@e907b904, auth:-/1@ef6b177", " 373 call bytes_new_from_slice(1723)": "cpu:64088870, auth:-/-", @@ -381,7 +381,7 @@ " 379 call create_contract(Address(obj#439), Bytes(obj#437), Bytes(obj#441))": "", " 380 call obj_cmp(Address(obj#443), Address(obj#439))": "cpu:66089158, mem:42306898, objs:-/222@9918a39f, auth:1@da3c47d1/-", " 381 ret obj_cmp -> Ok(0)": "cpu:66089844", - " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@2b4da665", + " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@738bcb6e", " 383 ret get_ledger_network_id -> Ok(Bytes(obj#445))": "cpu:66092999, mem:42307010, objs:-/223@f5510b1", " 384 ret create_contract -> Ok(Address(obj#447))": "cpu:66176402, mem:42314282, objs:-/224@29135409, store:-/33@3da44f4f, foot:33@76d72a8d, auth:-/1@d0c5ccbe", " 385 call bytes_new_from_slice(1723)": "cpu:66176657, auth:-/-", @@ -393,7 +393,7 @@ " 391 call create_contract(Address(obj#453), Bytes(obj#451), Bytes(obj#455))": "", " 392 call obj_cmp(Address(obj#457), Address(obj#453))": "cpu:68176945, mem:43632086, objs:-/229@843f1f78, auth:1@fe39debc/-", " 393 ret obj_cmp -> Ok(0)": "cpu:68177631", - " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@7ae07493", + " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@cf888e58", " 395 ret get_ledger_network_id -> Ok(Bytes(obj#459))": "cpu:68180786, mem:43632198, objs:-/230@87253b5a", " 396 ret create_contract -> Ok(Address(obj#461))": "cpu:68263477, mem:43639656, objs:-/231@dfe2f621, store:-/34@26269e2a, foot:34@db6f722c, auth:-/1@c5425e98", " 397 call bytes_new_from_slice(1723)": "cpu:68263732, auth:-/-", @@ -405,7 +405,7 @@ " 403 call create_contract(Address(obj#467), Bytes(obj#465), Bytes(obj#469))": "", " 404 call obj_cmp(Address(obj#471), Address(obj#467))": "cpu:70264020, mem:44957460, objs:-/236@8e491acb, auth:1@8758e2be/-", " 405 ret obj_cmp -> Ok(0)": "cpu:70264706", - " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@402732e1", + " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@653e6cb8", " 407 ret get_ledger_network_id -> Ok(Bytes(obj#473))": "cpu:70267861, mem:44957572, objs:-/237@e891750f", " 408 ret create_contract -> Ok(Address(obj#475))": "cpu:70354406, mem:44965216, objs:-/238@3c9f9d08, store:-/35@be282ec7, foot:35@ad713040, auth:-/1@c2518348", " 409 call bytes_new_from_slice(1723)": "cpu:70354661, auth:-/-", @@ -417,7 +417,7 @@ " 415 call create_contract(Address(obj#481), Bytes(obj#479), Bytes(obj#483))": "", " 416 call obj_cmp(Address(obj#485), Address(obj#481))": "cpu:72354949, mem:46283020, objs:-/243@f3039fd5, auth:1@7b318976/-", " 417 ret obj_cmp -> Ok(0)": "cpu:72355635", - " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@1e553952", + " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@c257e53", " 419 ret get_ledger_network_id -> Ok(Bytes(obj#487))": "cpu:72358790, mem:46283132, objs:-/244@cdf88cce", " 420 ret create_contract -> Ok(Address(obj#489))": "cpu:72445387, mem:46290962, objs:-/245@cd6fd0a6, store:-/36@e78fd4ec, foot:36@8d6c62c1, auth:-/1@9be18b7d", " 421 call bytes_new_from_slice(1723)": "cpu:72445642, auth:-/-", @@ -429,7 +429,7 @@ " 427 call create_contract(Address(obj#495), Bytes(obj#493), Bytes(obj#497))": "", " 428 call obj_cmp(Address(obj#499), Address(obj#495))": "cpu:74445930, mem:47608766, objs:-/250@22bd910b, auth:1@740ab5ad/-", " 429 ret obj_cmp -> Ok(0)": "cpu:74446616", - " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@df062d8f", + " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@69a0652", " 431 ret get_ledger_network_id -> Ok(Bytes(obj#501))": "cpu:74449771, mem:47608878, objs:-/251@d6b7a9b4", " 432 ret create_contract -> Ok(Address(obj#503))": "cpu:74535650, mem:47616894, objs:-/252@d5487903, store:-/37@fc568a97, foot:37@409c33df, auth:-/1@d536b686", " 433 call bytes_new_from_slice(1723)": "cpu:74535905, auth:-/-", @@ -441,7 +441,7 @@ " 439 call create_contract(Address(obj#509), Bytes(obj#507), Bytes(obj#511))": "", " 440 call obj_cmp(Address(obj#513), Address(obj#509))": "cpu:76536193, mem:48934698, objs:-/257@2c83362e, auth:1@3a400b33/-", " 441 ret obj_cmp -> Ok(0)": "cpu:76536879", - " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@7fd0cf57", + " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@4a2d81a0", " 443 ret get_ledger_network_id -> Ok(Bytes(obj#515))": "cpu:76540034, mem:48934810, objs:-/258@ac579d6d", " 444 ret create_contract -> Ok(Address(obj#517))": "cpu:76628757, mem:48943012, objs:-/259@73d4502, store:-/38@2603f041, foot:38@4169d237, auth:-/1@39e1337c", " 445 call bytes_new_from_slice(1723)": "cpu:76629012, auth:-/-", @@ -453,7 +453,7 @@ " 451 call create_contract(Address(obj#523), Bytes(obj#521), Bytes(obj#525))": "", " 452 call obj_cmp(Address(obj#527), Address(obj#523))": "cpu:78629300, mem:50260816, objs:-/264@e1d329e1, auth:1@26e06ff6/-", " 453 ret obj_cmp -> Ok(0)": "cpu:78629986", - " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@17ee9ef3", + " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@b06070a3", " 455 ret get_ledger_network_id -> Ok(Bytes(obj#529))": "cpu:78633141, mem:50260928, objs:-/265@bafd1a98", " 456 ret create_contract -> Ok(Address(obj#531))": "cpu:78725718, mem:50269316, objs:-/266@1b9213fc, store:-/39@b90d28c3, foot:39@d7e7d033, auth:-/1@b133ac19", " 457 call bytes_new_from_slice(1723)": "cpu:78725973, auth:-/-", @@ -465,7 +465,7 @@ " 463 call create_contract(Address(obj#537), Bytes(obj#535), Bytes(obj#539))": "", " 464 call obj_cmp(Address(obj#541), Address(obj#537))": "cpu:80726261, mem:51587120, objs:-/271@24ad366e, auth:1@b368d5a8/-", " 465 ret obj_cmp -> Ok(0)": "cpu:80726947", - " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@7a22d694", + " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@abb50537", " 467 ret get_ledger_network_id -> Ok(Bytes(obj#543))": "cpu:80730102, mem:51587232, objs:-/272@879628e2", " 468 ret create_contract -> Ok(Address(obj#545))": "cpu:80820955, mem:51595806, objs:-/273@d183d07c, store:-/40@8c6440e7, foot:40@4583666c, auth:-/1@7e5706f4", " 469 call bytes_new_from_slice(1723)": "cpu:80821210, auth:-/-", @@ -477,7 +477,7 @@ " 475 call create_contract(Address(obj#551), Bytes(obj#549), Bytes(obj#553))": "", " 476 call obj_cmp(Address(obj#555), Address(obj#551))": "cpu:82821498, mem:52913610, objs:-/278@7e43461c, auth:1@5ff13591/-", " 477 ret obj_cmp -> Ok(0)": "cpu:82822184", - " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@bb660b30", + " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@ef99d99e", " 479 ret get_ledger_network_id -> Ok(Bytes(obj#557))": "cpu:82825339, mem:52913722, objs:-/279@7d5b5e82", " 480 ret create_contract -> Ok(Address(obj#559))": "cpu:82917254, mem:52922482, objs:-/280@a2539e9f, store:-/41@f828b437, foot:41@fe76eb0e, auth:-/1@c3116c2e", " 481 call bytes_new_from_slice(1723)": "cpu:82917509, auth:-/-", @@ -489,7 +489,7 @@ " 487 call create_contract(Address(obj#565), Bytes(obj#563), Bytes(obj#567))": "", " 488 call obj_cmp(Address(obj#569), Address(obj#565))": "cpu:84917797, mem:54240286, objs:-/285@27a76f48, auth:1@6bc42dbe/-", " 489 ret obj_cmp -> Ok(0)": "cpu:84918483", - " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@8487d51b", + " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@350fe930", " 491 ret get_ledger_network_id -> Ok(Bytes(obj#571))": "cpu:84921638, mem:54240398, objs:-/286@604a8064", " 492 ret create_contract -> Ok(Address(obj#573))": "cpu:85014619, mem:54249344, objs:-/287@5335059f, store:-/42@29905e2d, foot:42@331e35d, auth:-/1@fcc81056", " 493 call bytes_new_from_slice(1723)": "cpu:85014874, auth:-/-", @@ -501,7 +501,7 @@ " 499 call create_contract(Address(obj#579), Bytes(obj#577), Bytes(obj#581))": "", " 500 call obj_cmp(Address(obj#583), Address(obj#579))": "cpu:87015162, mem:55567148, objs:-/292@cae8baf1, auth:1@192a37a7/-", " 501 ret obj_cmp -> Ok(0)": "cpu:87015848", - " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@d0cf342a", + " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@92f90a5c", " 503 ret get_ledger_network_id -> Ok(Bytes(obj#585))": "cpu:87019003, mem:55567260, objs:-/293@e43c78b4", " 504 ret create_contract -> Ok(Address(obj#587))": "cpu:87113044, mem:55576392, objs:-/294@bb1ddf18, store:-/43@914b7ccb, foot:43@41d98300, auth:-/1@9dd1b742", " 505 call bytes_new_from_slice(1723)": "cpu:87113299, auth:-/-", @@ -513,7 +513,7 @@ " 511 call create_contract(Address(obj#593), Bytes(obj#591), Bytes(obj#595))": "", " 512 call obj_cmp(Address(obj#597), Address(obj#593))": "cpu:89113587, mem:56894196, objs:-/299@cff36272, auth:1@bac1ba08/-", " 513 ret obj_cmp -> Ok(0)": "cpu:89114273", - " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@ab3f6665", + " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@520c643c", " 515 ret get_ledger_network_id -> Ok(Bytes(obj#599))": "cpu:89117428, mem:56894308, objs:-/300@dd09814f", " 516 ret create_contract -> Ok(Address(obj#601))": "cpu:89212535, mem:56903626, objs:-/301@244f82de, store:-/44@49506f31, foot:44@6bc1feec, auth:-/1@3ecbcd12", " 517 call bytes_new_from_slice(1723)": "cpu:89212790, auth:-/-", @@ -525,7 +525,7 @@ " 523 call create_contract(Address(obj#607), Bytes(obj#605), Bytes(obj#609))": "", " 524 call obj_cmp(Address(obj#611), Address(obj#607))": "cpu:91213078, mem:58221430, objs:-/306@51507416, auth:1@f4a38780/-", " 525 ret obj_cmp -> Ok(0)": "cpu:91213764", - " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@60fa77e0", + " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@fc522799", " 527 ret get_ledger_network_id -> Ok(Bytes(obj#613))": "cpu:91216919, mem:58221542, objs:-/307@eba2c5b2", " 528 ret create_contract -> Ok(Address(obj#615))": "cpu:91313086, mem:58231046, objs:-/308@367c7d43, store:-/45@c8a84a2, foot:45@358c3f92, auth:-/1@d6eec3a9", " 529 call bytes_new_from_slice(1723)": "cpu:91313341, auth:-/-", @@ -537,7 +537,7 @@ " 535 call create_contract(Address(obj#621), Bytes(obj#619), Bytes(obj#623))": "", " 536 call obj_cmp(Address(obj#625), Address(obj#621))": "cpu:93313629, mem:59548850, objs:-/313@f39fd860, auth:1@5cc394d/-", " 537 ret obj_cmp -> Ok(0)": "cpu:93314315", - " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@aff33b6b", + " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@73031a22", " 539 ret get_ledger_network_id -> Ok(Bytes(obj#627))": "cpu:93317470, mem:59548962, objs:-/314@e817a34d", " 540 ret create_contract -> Ok(Address(obj#629))": "cpu:93417497, mem:59558652, objs:-/315@3c670094, store:-/46@d1e3723, foot:46@8fe6169d, auth:-/1@a662faf6", " 541 call bytes_new_from_slice(1723)": "cpu:93417752, auth:-/-", @@ -549,7 +549,7 @@ " 547 call create_contract(Address(obj#635), Bytes(obj#633), Bytes(obj#637))": "", " 548 call obj_cmp(Address(obj#639), Address(obj#635))": "cpu:95418040, mem:60876456, objs:-/320@8e0c4b9b, auth:1@406c1dae/-", " 549 ret obj_cmp -> Ok(0)": "cpu:95418726", - " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@6600dac1", + " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@62235096", " 551 ret get_ledger_network_id -> Ok(Bytes(obj#641))": "cpu:95421881, mem:60876568, objs:-/321@3ae1b4", " 552 ret create_contract -> Ok(Address(obj#643))": "cpu:95514842, mem:60886444, objs:-/322@56ee1b71, store:-/47@df16bbd0, foot:47@3fc83862, auth:-/1@fc69475c", " 553 call bytes_new_from_slice(1723)": "cpu:95515097, auth:-/-", @@ -561,7 +561,7 @@ " 559 call create_contract(Address(obj#649), Bytes(obj#647), Bytes(obj#651))": "", " 560 call obj_cmp(Address(obj#653), Address(obj#649))": "cpu:97515385, mem:62204248, objs:-/327@c9706ded, auth:1@8c26c31b/-", " 561 ret obj_cmp -> Ok(0)": "cpu:97516071", - " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@529ff575", + " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@205f6fb4", " 563 ret get_ledger_network_id -> Ok(Bytes(obj#655))": "cpu:97519226, mem:62204360, objs:-/328@bf53726d", " 564 ret create_contract -> Ok(Address(obj#657))": "cpu:97621385, mem:62214422, objs:-/329@db413350, store:-/48@51de1218, foot:48@556cb318, auth:-/1@25a9c327", " 565 call bytes_new_from_slice(1723)": "cpu:97621640, auth:-/-", @@ -573,7 +573,7 @@ " 571 call create_contract(Address(obj#663), Bytes(obj#661), Bytes(obj#665))": "", " 572 call obj_cmp(Address(obj#667), Address(obj#663))": "cpu:99621928, mem:63532226, objs:-/334@f4f8f41b, auth:1@1fa181ba/-", " 573 ret obj_cmp -> Ok(0)": "cpu:99622614", - " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@cbc29ba9", + " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@9d22f9ed", " 575 ret get_ledger_network_id -> Ok(Bytes(obj#669))": "cpu:99625769, mem:63532338, objs:-/335@237761d2", " 576 ret create_contract -> Ok(Address(obj#671))": "cpu:99726196, mem:63542586, objs:-/336@fa034a59, store:-/49@ea935b52, foot:49@de5dfae4, auth:-/1@ab48dad3", " 577 call bytes_new_from_slice(1723)": "cpu:99726451, auth:-/-", @@ -585,7 +585,7 @@ " 583 call create_contract(Address(obj#677), Bytes(obj#675), Bytes(obj#679))": "", " 584 call obj_cmp(Address(obj#681), Address(obj#677))": "cpu:101726739, mem:64860390, objs:-/341@f9a83a38, auth:1@efefa99b/-", " 585 ret obj_cmp -> Ok(0)": "cpu:101727425", - " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2b02f498", + " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2329e92b", " 587 ret get_ledger_network_id -> Ok(Bytes(obj#683))": "cpu:101730580, mem:64860502, objs:-/342@d1ff7972", " 588 ret create_contract -> Ok(Address(obj#685))": "cpu:101833087, mem:64870936, objs:-/343@b5f757ec, store:-/50@4c522570, foot:50@a0637ff7, auth:-/1@33815c1a", " 589 call bytes_new_from_slice(1723)": "cpu:101833342, auth:-/-", @@ -597,7 +597,7 @@ " 595 call create_contract(Address(obj#691), Bytes(obj#689), Bytes(obj#693))": "", " 596 call obj_cmp(Address(obj#695), Address(obj#691))": "cpu:103833630, mem:66188740, objs:-/348@4f3b30b2, auth:1@a8fcf1a2/-", " 597 ret obj_cmp -> Ok(0)": "cpu:103834316", - " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@2b55c9b5", + " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@286b32d9", " 599 ret get_ledger_network_id -> Ok(Bytes(obj#697))": "cpu:103837471, mem:66188852, objs:-/349@d5de81fd", " 600 ret create_contract -> Ok(Address(obj#699))": "cpu:103942818, mem:66199472, objs:-/350@51dc4097, store:-/51@2ecebe32, foot:51@992b52e0, auth:-/1@62240125", " 601 call bytes_new_from_slice(1723)": "cpu:103943073, auth:-/-", @@ -609,7 +609,7 @@ " 607 call create_contract(Address(obj#705), Bytes(obj#703), Bytes(obj#707))": "", " 608 call obj_cmp(Address(obj#709), Address(obj#705))": "cpu:105943361, mem:67517276, objs:-/355@9a456a58, auth:1@df2dbab3/-", " 609 ret obj_cmp -> Ok(0)": "cpu:105944047", - " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@53ebc47d", + " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@9717cba0", " 611 ret get_ledger_network_id -> Ok(Bytes(obj#711))": "cpu:105947202, mem:67517388, objs:-/356@f6faf10c", " 612 ret create_contract -> Ok(Address(obj#713))": "cpu:106053615, mem:67528194, objs:-/357@8f3dfa45, store:-/52@3bc2289d, foot:52@a8174a77, auth:-/1@1ae2d9b9", " 613 call bytes_new_from_slice(1723)": "cpu:106053870, auth:-/-", @@ -621,7 +621,7 @@ " 619 call create_contract(Address(obj#719), Bytes(obj#717), Bytes(obj#721))": "", " 620 call obj_cmp(Address(obj#723), Address(obj#719))": "cpu:108054158, mem:68845998, objs:-/362@2c2a938, auth:1@e4e43523/-", " 621 ret obj_cmp -> Ok(0)": "cpu:108054844", - " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@633ca118", + " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@43fdac45", " 623 ret get_ledger_network_id -> Ok(Bytes(obj#725))": "cpu:108057999, mem:68846110, objs:-/363@a163628d", " 624 ret create_contract -> Ok(Address(obj#727))": "cpu:108162680, mem:68857102, objs:-/364@25c619f3, store:-/53@85418455, foot:53@755ca472, auth:-/1@7132248c", " 625 call bytes_new_from_slice(1723)": "cpu:108162935, auth:-/-", @@ -633,7 +633,7 @@ " 631 call create_contract(Address(obj#733), Bytes(obj#731), Bytes(obj#735))": "", " 632 call obj_cmp(Address(obj#737), Address(obj#733))": "cpu:110163223, mem:70174906, objs:-/369@346fee22, auth:1@a8468a5b/-", " 633 ret obj_cmp -> Ok(0)": "cpu:110163909", - " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@5f38f4b4", + " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@ac9afa98", " 635 ret get_ledger_network_id -> Ok(Bytes(obj#739))": "cpu:110167064, mem:70175018, objs:-/370@5f283fed", " 636 ret create_contract -> Ok(Address(obj#741))": "cpu:110273825, mem:70186196, objs:-/371@756dc3dc, store:-/54@d6df1dee, foot:54@6c9db746, auth:-/1@add7894e", " 637 call bytes_new_from_slice(1723)": "cpu:110274080, auth:-/-", @@ -645,7 +645,7 @@ " 643 call create_contract(Address(obj#747), Bytes(obj#745), Bytes(obj#749))": "", " 644 call obj_cmp(Address(obj#751), Address(obj#747))": "cpu:112274368, mem:71504000, objs:-/376@aebe83c3, auth:1@a1dfbdc2/-", " 645 ret obj_cmp -> Ok(0)": "cpu:112275054", - " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@20efa1bf", + " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@a0d06fb2", " 647 ret get_ledger_network_id -> Ok(Bytes(obj#753))": "cpu:112278209, mem:71504112, objs:-/377@a5f27cc1", " 648 ret create_contract -> Ok(Address(obj#755))": "cpu:112383238, mem:71515476, objs:-/378@4a2dc9d5, store:-/55@d68f6f6e, foot:55@98d0e060, auth:-/1@6f8d4df0", " 649 call bytes_new_from_slice(1723)": "cpu:112383493, auth:-/-", @@ -657,7 +657,7 @@ " 655 call create_contract(Address(obj#761), Bytes(obj#759), Bytes(obj#763))": "", " 656 call obj_cmp(Address(obj#765), Address(obj#761))": "cpu:114383781, mem:72833280, objs:-/383@ba9bc303, auth:1@7cf8180f/-", " 657 ret obj_cmp -> Ok(0)": "cpu:114384467", - " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@a8a009f0", + " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@9ffc2d1c", " 659 ret get_ledger_network_id -> Ok(Bytes(obj#767))": "cpu:114387622, mem:72833392, objs:-/384@cef90ff5", " 660 ret create_contract -> Ok(Address(obj#769))": "cpu:114498291, mem:72844942, objs:-/385@949e2fa0, store:-/56@bd5ddb43, foot:56@dc185736, auth:-/1@dbeb877e", " 661 call bytes_new_from_slice(1723)": "cpu:114498546, auth:-/-", @@ -669,7 +669,7 @@ " 667 call create_contract(Address(obj#775), Bytes(obj#773), Bytes(obj#777))": "", " 668 call obj_cmp(Address(obj#779), Address(obj#775))": "cpu:116498834, mem:74162746, objs:-/390@ee85fa0, auth:1@5e9c3221/-", " 669 ret obj_cmp -> Ok(0)": "cpu:116499520", - " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@1d9c05cc", + " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@42a87577", " 671 ret get_ledger_network_id -> Ok(Bytes(obj#781))": "cpu:116502675, mem:74162858, objs:-/391@c09aca31", " 672 ret create_contract -> Ok(Address(obj#783))": "cpu:116614408, mem:74174594, objs:-/392@a5b995b8, store:-/57@d10d961, foot:57@962f7174, auth:-/1@b76a8061", " 673 call bytes_new_from_slice(1723)": "cpu:116614663, auth:-/-", @@ -681,7 +681,7 @@ " 679 call create_contract(Address(obj#789), Bytes(obj#787), Bytes(obj#791))": "", " 680 call obj_cmp(Address(obj#793), Address(obj#789))": "cpu:118614951, mem:75492398, objs:-/397@8e52f175, auth:1@ba59cfca/-", " 681 ret obj_cmp -> Ok(0)": "cpu:118615637", - " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@5496e8ba", + " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@fb340186", " 683 ret get_ledger_network_id -> Ok(Bytes(obj#795))": "cpu:118618792, mem:75492510, objs:-/398@12799e50", " 684 ret create_contract -> Ok(Address(obj#797))": "cpu:118728033, mem:75504432, objs:-/399@3db9e662, store:-/58@8b1f0e88, foot:58@5c2834ff, auth:-/1@1693c723", " 685 call bytes_new_from_slice(1723)": "cpu:118728288, auth:-/-", @@ -693,7 +693,7 @@ " 691 call create_contract(Address(obj#803), Bytes(obj#801), Bytes(obj#805))": "", " 692 call obj_cmp(Address(obj#807), Address(obj#803))": "cpu:120728576, mem:76822236, objs:-/404@80b4325, auth:1@3d58dc89/-", " 693 ret obj_cmp -> Ok(0)": "cpu:120729262", - " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@98c21e82", + " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@6f5874f2", " 695 ret get_ledger_network_id -> Ok(Bytes(obj#809))": "cpu:120732417, mem:76822348, objs:-/405@3b999f4b", " 696 ret create_contract -> Ok(Address(obj#811))": "cpu:120838148, mem:76834456, objs:-/406@7fb07dfd, store:-/59@beb21ab6, foot:59@b156a440, auth:-/1@f485e251", " 697 call bytes_new_from_slice(1723)": "cpu:120838403, auth:-/-", @@ -705,7 +705,7 @@ " 703 call create_contract(Address(obj#817), Bytes(obj#815), Bytes(obj#819))": "", " 704 call obj_cmp(Address(obj#821), Address(obj#817))": "cpu:122838691, mem:78152260, objs:-/411@120f1132, auth:1@9615c0a4/-", " 705 ret obj_cmp -> Ok(0)": "cpu:122839377", - " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@2923ec4b", + " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@a21c8e0e", " 707 ret get_ledger_network_id -> Ok(Bytes(obj#823))": "cpu:122842532, mem:78152372, objs:-/412@7e1fcf83", " 708 ret create_contract -> Ok(Address(obj#825))": "cpu:122952121, mem:78164666, objs:-/413@d817a428, store:-/60@48bc1338, foot:60@a33f325d, auth:-/1@90f9a145", " 709 call bytes_new_from_slice(1723)": "cpu:122952376, auth:-/-", @@ -717,7 +717,7 @@ " 715 call create_contract(Address(obj#831), Bytes(obj#829), Bytes(obj#833))": "", " 716 call obj_cmp(Address(obj#835), Address(obj#831))": "cpu:124952664, mem:79482470, objs:-/418@fb16c9f, auth:1@ed66b718/-", " 717 ret obj_cmp -> Ok(0)": "cpu:124953350", - " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@3845c83e", + " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@915f7f35", " 719 ret get_ledger_network_id -> Ok(Bytes(obj#837))": "cpu:124956505, mem:79482582, objs:-/419@6c3991f8", " 720 ret create_contract -> Ok(Address(obj#839))": "cpu:125070712, mem:79495062, objs:-/420@7e22a47, store:-/61@39cb0da1, foot:61@9492821c, auth:-/1@1b6774bf", " 721 call bytes_new_from_slice(1723)": "cpu:125070967, auth:-/-", @@ -729,7 +729,7 @@ " 727 call create_contract(Address(obj#845), Bytes(obj#843), Bytes(obj#847))": "", " 728 call obj_cmp(Address(obj#849), Address(obj#845))": "cpu:127071255, mem:80812866, objs:-/425@34c426ec, auth:1@8d4c648/-", " 729 ret obj_cmp -> Ok(0)": "cpu:127071941", - " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@b8fd81b7", + " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@34a8de00", " 731 ret get_ledger_network_id -> Ok(Bytes(obj#851))": "cpu:127075096, mem:80812978, objs:-/426@6669f65a", " 732 ret create_contract -> Ok(Address(obj#853))": "cpu:127192147, mem:80825644, objs:-/427@3c471c07, store:-/62@73159901, foot:62@a247f604, auth:-/1@fa10c746", " 733 call bytes_new_from_slice(1723)": "cpu:127192402, auth:-/-", @@ -741,7 +741,7 @@ " 739 call create_contract(Address(obj#859), Bytes(obj#857), Bytes(obj#861))": "", " 740 call obj_cmp(Address(obj#863), Address(obj#859))": "cpu:129192690, mem:82143448, objs:-/432@a056c54, auth:1@dab38220/-", " 741 ret obj_cmp -> Ok(0)": "cpu:129193376", - " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@2a1916d6", + " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@f239515f", " 743 ret get_ledger_network_id -> Ok(Bytes(obj#865))": "cpu:129196531, mem:82143560, objs:-/433@b3ad8ff", " 744 ret create_contract -> Ok(Address(obj#867))": "cpu:129314644, mem:82156412, objs:-/434@e4eb33a, store:-/63@1b326826, foot:63@9801e88b, auth:-/1@a03e84e", " 745 call bytes_new_from_slice(1723)": "cpu:129314899, auth:-/-", @@ -753,7 +753,7 @@ " 751 call create_contract(Address(obj#873), Bytes(obj#871), Bytes(obj#875))": "", " 752 call obj_cmp(Address(obj#877), Address(obj#873))": "cpu:131315187, mem:83474216, objs:-/439@1aa2c5f6, auth:1@99c0fb6c/-", " 753 ret obj_cmp -> Ok(0)": "cpu:131315873", - " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@c35bd167", + " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@7ea4443e", " 755 ret get_ledger_network_id -> Ok(Bytes(obj#879))": "cpu:131319028, mem:83474328, objs:-/440@799c85ba", " 756 ret create_contract -> Ok(Address(obj#881))": "cpu:131438281, mem:83487366, objs:-/441@ca7fc40a, store:-/64@e7079371, foot:64@cc9b651b, auth:-/1@337ead98", " 757 call bytes_new_from_slice(1723)": "cpu:131438536, auth:-/-", @@ -765,7 +765,7 @@ " 763 call create_contract(Address(obj#887), Bytes(obj#885), Bytes(obj#889))": "", " 764 call obj_cmp(Address(obj#891), Address(obj#887))": "cpu:133438846, mem:84805170, objs:-/446@10069c6f, auth:1@15a8a357/-", " 765 ret obj_cmp -> Ok(0)": "cpu:133439532", - " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@a355308d", + " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@3a0544d3", " 767 ret get_ledger_network_id -> Ok(Bytes(obj#893))": "cpu:133442687, mem:84805282, objs:-/447@c3c2a480", " 768 ret create_contract -> Ok(Address(obj#895))": "cpu:133563026, mem:84818506, objs:-/448@75aa9a70, store:-/65@14bef7e4, foot:65@d9000a8e, auth:-/1@f4cff7fe", " 769 call bytes_new_from_slice(1723)": "cpu:133563281, auth:-/-", @@ -777,7 +777,7 @@ " 775 call create_contract(Address(obj#901), Bytes(obj#899), Bytes(obj#903))": "", " 776 call obj_cmp(Address(obj#905), Address(obj#901))": "cpu:135563591, mem:86136310, objs:-/453@9e1d13db, auth:1@740cbc46/-", " 777 ret obj_cmp -> Ok(0)": "cpu:135564277", - " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@d0e5f2d9", + " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@3bfe883", " 779 ret get_ledger_network_id -> Ok(Bytes(obj#907))": "cpu:135567432, mem:86136422, objs:-/454@2140adea", " 780 ret create_contract -> Ok(Address(obj#909))": "cpu:135687059, mem:86149832, objs:-/455@cc45d327, store:-/66@cd903d3e, foot:66@bfdb0e98, auth:-/1@bd7b355c", " 781 call bytes_new_from_slice(1723)": "cpu:135687314, auth:-/-", @@ -789,7 +789,7 @@ " 787 call create_contract(Address(obj#915), Bytes(obj#913), Bytes(obj#917))": "", " 788 call obj_cmp(Address(obj#919), Address(obj#915))": "cpu:137687624, mem:87467636, objs:-/460@b03c0f83, auth:1@2da9c65/-", " 789 ret obj_cmp -> Ok(0)": "cpu:137688310", - " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@b0c0571b", + " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@c4c1070f", " 791 ret get_ledger_network_id -> Ok(Bytes(obj#921))": "cpu:137691465, mem:87467748, objs:-/461@def87377", " 792 ret create_contract -> Ok(Address(obj#923))": "cpu:137813932, mem:87481344, objs:-/462@45120f6c, store:-/67@6584c2ff, foot:67@4ca4b4cb, auth:-/1@43d4f17b", " 793 call bytes_new_from_slice(1723)": "cpu:137814187, auth:-/-", @@ -801,7 +801,7 @@ " 799 call create_contract(Address(obj#929), Bytes(obj#927), Bytes(obj#931))": "", " 800 call obj_cmp(Address(obj#933), Address(obj#929))": "cpu:139814497, mem:88799148, objs:-/467@93a33041, auth:1@29f88d0f/-", " 801 ret obj_cmp -> Ok(0)": "cpu:139815183", - " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@979f25ad", + " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@fd3ae29e", " 803 ret get_ledger_network_id -> Ok(Bytes(obj#935))": "cpu:139818338, mem:88799260, objs:-/468@a5e532e9", " 804 ret create_contract -> Ok(Address(obj#937))": "cpu:139940093, mem:88813042, objs:-/469@f1730e5f, store:-/68@a95aaa61, foot:68@7b107c0e, auth:-/1@c7687a6f", " 805 call bytes_new_from_slice(1723)": "cpu:139940348, auth:-/-", @@ -813,7 +813,7 @@ " 811 call create_contract(Address(obj#943), Bytes(obj#941), Bytes(obj#945))": "", " 812 call obj_cmp(Address(obj#947), Address(obj#943))": "cpu:141940658, mem:90130846, objs:-/474@443ed4bb, auth:1@6d00ea2a/-", " 813 ret obj_cmp -> Ok(0)": "cpu:141941344", - " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@280957fb", + " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@bda0a2b", " 815 ret get_ledger_network_id -> Ok(Bytes(obj#949))": "cpu:141944499, mem:90130958, objs:-/475@cf814756", " 816 ret create_contract -> Ok(Address(obj#951))": "cpu:142067314, mem:90144926, objs:-/476@de85786d, store:-/69@2950663e, foot:69@6894b0a2, auth:-/1@12151c8e", " 817 call bytes_new_from_slice(1723)": "cpu:142067569, auth:-/-", @@ -825,7 +825,7 @@ " 823 call create_contract(Address(obj#957), Bytes(obj#955), Bytes(obj#959))": "", " 824 call obj_cmp(Address(obj#961), Address(obj#957))": "cpu:144067879, mem:91462730, objs:-/481@b0c8321a, auth:1@c0c7e5a8/-", " 825 ret obj_cmp -> Ok(0)": "cpu:144068565", - " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@4841adf2", + " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@9608c96e", " 827 ret get_ledger_network_id -> Ok(Bytes(obj#963))": "cpu:144071720, mem:91462842, objs:-/482@846aa98e", " 828 ret create_contract -> Ok(Address(obj#965))": "cpu:144189505, mem:91476996, objs:-/483@4fbf53ac, store:-/70@adf2fc99, foot:70@821ad073, auth:-/1@44e6f004", " 829 call bytes_new_from_slice(1723)": "cpu:144189760, auth:-/-", @@ -837,7 +837,7 @@ " 835 call create_contract(Address(obj#971), Bytes(obj#969), Bytes(obj#973))": "", " 836 call obj_cmp(Address(obj#975), Address(obj#971))": "cpu:146190070, mem:92794800, objs:-/488@b085e7d1, auth:1@e5ccf8c7/-", " 837 ret obj_cmp -> Ok(0)": "cpu:146190756", - " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@793dfb0a", + " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@dcd47906", " 839 ret get_ledger_network_id -> Ok(Bytes(obj#977))": "cpu:146193911, mem:92794912, objs:-/489@6913398b", " 840 ret create_contract -> Ok(Address(obj#979))": "cpu:146320630, mem:92809252, objs:-/490@1c8cace9, store:-/71@79757366, foot:71@92e5e652, auth:-/1@d1d73ad0", " 841 call bytes_new_from_slice(1723)": "cpu:146320885, auth:-/-", @@ -849,7 +849,7 @@ " 847 call create_contract(Address(obj#985), Bytes(obj#983), Bytes(obj#987))": "", " 848 call obj_cmp(Address(obj#989), Address(obj#985))": "cpu:148321195, mem:94127056, objs:-/495@a9b31ca, auth:1@8b9c1d75/-", " 849 ret obj_cmp -> Ok(0)": "cpu:148321881", - " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@a045f7fb", + " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@590c504f", " 851 ret get_ledger_network_id -> Ok(Bytes(obj#991))": "cpu:148325036, mem:94127168, objs:-/496@485ec8a7", " 852 ret create_contract -> Ok(Address(obj#993))": "cpu:148452827, mem:94141694, objs:-/497@2be4913d, store:-/72@f8a2e954, foot:72@131e5b52, auth:-/1@869a312d", " 853 call bytes_new_from_slice(1723)": "cpu:148453082, auth:-/-", @@ -861,7 +861,7 @@ " 859 call create_contract(Address(obj#999), Bytes(obj#997), Bytes(obj#1001))": "", " 860 call obj_cmp(Address(obj#1003), Address(obj#999))": "cpu:150453392, mem:95459498, objs:-/502@ef352cdd, auth:1@324ce1b0/-", " 861 ret obj_cmp -> Ok(0)": "cpu:150454078", - " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@1840bfcb", + " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@a5100b10", " 863 ret get_ledger_network_id -> Ok(Bytes(obj#1005))": "cpu:150457233, mem:95459610, objs:-/503@944ab8d9", " 864 ret create_contract -> Ok(Address(obj#1007))": "cpu:150582528, mem:95474322, objs:-/504@92c7111e, store:-/73@65800019, foot:73@74126ae0, auth:-/1@7b064a9e", " 865 call bytes_new_from_slice(1723)": "cpu:150582783, auth:-/-", @@ -873,7 +873,7 @@ " 871 call create_contract(Address(obj#1013), Bytes(obj#1011), Bytes(obj#1015))": "", " 872 call obj_cmp(Address(obj#1017), Address(obj#1013))": "cpu:152583093, mem:96792126, objs:-/509@c07bd221, auth:1@7da7fbb6/-", " 873 ret obj_cmp -> Ok(0)": "cpu:152583779", - " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@9bc13e6a", + " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@1e202147", " 875 ret get_ledger_network_id -> Ok(Bytes(obj#1019))": "cpu:152586934, mem:96792238, objs:-/510@6b7222e6", " 876 ret create_contract -> Ok(Address(obj#1021))": "cpu:152719645, mem:96807136, objs:-/511@2d880cb3, store:-/74@6da01545, foot:74@98a244b2, auth:-/1@7fbd7918", " 877 call bytes_new_from_slice(1723)": "cpu:152719900, auth:-/-", @@ -885,7 +885,7 @@ " 883 call create_contract(Address(obj#1027), Bytes(obj#1025), Bytes(obj#1029))": "", " 884 call obj_cmp(Address(obj#1031), Address(obj#1027))": "cpu:154720210, mem:98124940, objs:-/516@f5623ffa, auth:1@f873a88c/-", " 885 ret obj_cmp -> Ok(0)": "cpu:154720896", - " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@450e1f0b", + " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@742ef726", " 887 ret get_ledger_network_id -> Ok(Bytes(obj#1033))": "cpu:154724051, mem:98125052, objs:-/517@c1e547af", " 888 ret create_contract -> Ok(Address(obj#1035))": "cpu:154855028, mem:98140136, objs:-/518@ed0b6fa3, store:-/75@2640d275, foot:75@e1edfb8, auth:-/1@7bd1b1ac", " 889 call bytes_new_from_slice(1723)": "cpu:154855283, auth:-/-", @@ -897,7 +897,7 @@ " 895 call create_contract(Address(obj#1041), Bytes(obj#1039), Bytes(obj#1043))": "", " 896 call obj_cmp(Address(obj#1045), Address(obj#1041))": "cpu:156855593, mem:99457940, objs:-/523@afbfaeca, auth:1@a98e3a0c/-", " 897 ret obj_cmp -> Ok(0)": "cpu:156856279", - " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@97ab07bc", + " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@3314c4f4", " 899 ret get_ledger_network_id -> Ok(Bytes(obj#1047))": "cpu:156859434, mem:99458052, objs:-/524@ae0a83cb", " 900 ret create_contract -> Ok(Address(obj#1049))": "cpu:156994271, mem:99473322, objs:-/525@90f0b7e, store:-/76@b3fee76, foot:76@17ea103, auth:-/1@cd0c113", " 901 call bytes_new_from_slice(1723)": "cpu:156994526, auth:-/-", @@ -909,7 +909,7 @@ " 907 call create_contract(Address(obj#1055), Bytes(obj#1053), Bytes(obj#1057))": "", " 908 call obj_cmp(Address(obj#1059), Address(obj#1055))": "cpu:158994836, mem:100791126, objs:-/530@79ae528, auth:1@2722a0e9/-", " 909 ret obj_cmp -> Ok(0)": "cpu:158995522", - " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@b37297e1", + " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@2fc267a0", " 911 ret get_ledger_network_id -> Ok(Bytes(obj#1061))": "cpu:158998677, mem:100791238, objs:-/531@c299807e", " 912 ret create_contract -> Ok(Address(obj#1063))": "cpu:159130004, mem:100806694, objs:-/532@cd9f8aed, store:-/77@657b3ea7, foot:77@e7ae520f, auth:-/1@cd4623d1", " 913 call bytes_new_from_slice(1723)": "cpu:159130259, auth:-/-", @@ -921,7 +921,7 @@ " 919 call create_contract(Address(obj#1069), Bytes(obj#1067), Bytes(obj#1071))": "", " 920 call obj_cmp(Address(obj#1073), Address(obj#1069))": "cpu:161130569, mem:102124498, objs:-/537@e5fd859b, auth:1@d3342891/-", " 921 ret obj_cmp -> Ok(0)": "cpu:161131255", - " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@ac15408a", + " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@572a7bcf", " 923 ret get_ledger_network_id -> Ok(Bytes(obj#1075))": "cpu:161134410, mem:102124610, objs:-/538@373a6e1f", " 924 ret create_contract -> Ok(Address(obj#1077))": "cpu:161269597, mem:102140252, objs:-/539@a2bba411, store:-/78@be444a78, foot:78@92931e2e, auth:-/1@ffdde4e3", " 925 call bytes_new_from_slice(1723)": "cpu:161269852, auth:-/-", @@ -933,7 +933,7 @@ " 931 call create_contract(Address(obj#1083), Bytes(obj#1081), Bytes(obj#1085))": "", " 932 call obj_cmp(Address(obj#1087), Address(obj#1083))": "cpu:163270162, mem:103458056, objs:-/544@9b41b8e0, auth:1@dd609a88/-", " 933 ret obj_cmp -> Ok(0)": "cpu:163270848", - " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@8b52e45b", + " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@d4dbf130", " 935 ret get_ledger_network_id -> Ok(Bytes(obj#1089))": "cpu:163274003, mem:103458168, objs:-/545@1c155cdd", " 936 ret create_contract -> Ok(Address(obj#1091))": "cpu:163407456, mem:103473996, objs:-/546@6b1fddc7, store:-/79@1ff42e32, foot:79@b2da7f6f, auth:-/1@36361e6e", " 937 call bytes_new_from_slice(1723)": "cpu:163407711, auth:-/-", @@ -945,7 +945,7 @@ " 943 call create_contract(Address(obj#1097), Bytes(obj#1095), Bytes(obj#1099))": "", " 944 call obj_cmp(Address(obj#1101), Address(obj#1097))": "cpu:165408021, mem:104791800, objs:-/551@d1f85514, auth:1@2b6dc135/-", " 945 ret obj_cmp -> Ok(0)": "cpu:165408707", - " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@7c3fc9da", + " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@41e7877", " 947 ret get_ledger_network_id -> Ok(Bytes(obj#1103))": "cpu:165411862, mem:104791912, objs:-/552@904f5f5", " 948 ret create_contract -> Ok(Address(obj#1105))": "cpu:165543845, mem:104807926, objs:-/553@2b94afe6, store:-/80@5e14adc2, foot:80@f059281b, auth:-/1@1f118c6c", " 949 call bytes_new_from_slice(1723)": "cpu:165544100, auth:-/-", @@ -957,7 +957,7 @@ " 955 call create_contract(Address(obj#1111), Bytes(obj#1109), Bytes(obj#1113))": "", " 956 call obj_cmp(Address(obj#1115), Address(obj#1111))": "cpu:167544410, mem:106125730, objs:-/558@b9bcce70, auth:1@70e49983/-", " 957 ret obj_cmp -> Ok(0)": "cpu:167545096", - " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@d48ad31d", + " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@8b829207", " 959 ret get_ledger_network_id -> Ok(Bytes(obj#1117))": "cpu:167548251, mem:106125842, objs:-/559@db2ec1f1", " 960 ret create_contract -> Ok(Address(obj#1119))": "cpu:167688408, mem:106142042, objs:-/560@41ccfcc2, store:-/81@f81ad7da, foot:81@15685e3b, auth:-/1@6a69f567", " 961 call bytes_new_from_slice(1723)": "cpu:167688663, auth:-/-", @@ -969,7 +969,7 @@ " 967 call create_contract(Address(obj#1125), Bytes(obj#1123), Bytes(obj#1127))": "", " 968 call obj_cmp(Address(obj#1129), Address(obj#1125))": "cpu:169688973, mem:107459846, objs:-/565@1cad2db4, auth:1@2123cf2b/-", " 969 ret obj_cmp -> Ok(0)": "cpu:169689659", - " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@94e13f1", + " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@83e05267", " 971 ret get_ledger_network_id -> Ok(Bytes(obj#1131))": "cpu:169692814, mem:107459958, objs:-/566@56ce3a87", " 972 ret create_contract -> Ok(Address(obj#1133))": "cpu:169829465, mem:107476344, objs:-/567@3c1a2bca, store:-/82@768815a, foot:82@1f4b7a36, auth:-/1@27facc4a", " 973 call bytes_new_from_slice(1723)": "cpu:169829720, auth:-/-", @@ -981,7 +981,7 @@ " 979 call create_contract(Address(obj#1139), Bytes(obj#1137), Bytes(obj#1141))": "", " 980 call obj_cmp(Address(obj#1143), Address(obj#1139))": "cpu:171830030, mem:108794148, objs:-/572@1665aa07, auth:1@97298f20/-", " 981 ret obj_cmp -> Ok(0)": "cpu:171830716", - " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@e23f270a", + " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@4021cf1a", " 983 ret get_ledger_network_id -> Ok(Bytes(obj#1145))": "cpu:171833871, mem:108794260, objs:-/573@6e3f538d", " 984 ret create_contract -> Ok(Address(obj#1147))": "cpu:171974378, mem:108810832, objs:-/574@3ab5a9ff, store:-/83@92fc960e, foot:83@99dcf372, auth:-/1@3dfa80d3", " 985 call bytes_new_from_slice(1723)": "cpu:171974633, auth:-/-", @@ -993,7 +993,7 @@ " 991 call create_contract(Address(obj#1153), Bytes(obj#1151), Bytes(obj#1155))": "", " 992 call obj_cmp(Address(obj#1157), Address(obj#1153))": "cpu:173974943, mem:110128636, objs:-/579@cce4f991, auth:1@48cd29c5/-", " 993 ret obj_cmp -> Ok(0)": "cpu:173975629", - " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@89073d7b", + " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@b8360dff", " 995 ret get_ledger_network_id -> Ok(Bytes(obj#1159))": "cpu:173978784, mem:110128748, objs:-/580@bc994841", " 996 ret create_contract -> Ok(Address(obj#1161))": "cpu:174119339, mem:110145506, objs:-/581@35af42cf, store:-/84@9f307726, foot:84@c027a220, auth:-/1@9c275ce6", " 997 call bytes_new_from_slice(1723)": "cpu:174119594, auth:-/-", @@ -1065,7 +1065,7 @@ "10057 call symbol_copy_to_slice(Symbol(obj#3741), U32(0), 12)": "", "10058 ret symbol_copy_to_slice -> Ok(())": "cpu:313837708", "10059 call bytes_len(Bytes(obj#3729))": " vm:-/-", - "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@15a30448", + "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@f1502f98", "10060 ret bytes_len -> Ok(U32(32))": "cpu:313843377", "10061 call vec_len(Vec(obj#2295))": "", "10062 ret vec_len -> Ok(U32(2))": "cpu:313843856", @@ -1197,7 +1197,7 @@ "10177 ret obj_cmp -> Ok(-1)": "cpu:313891986", "10178 call obj_cmp(Address(obj#2925), Address(obj#2293))": "", "10179 ret obj_cmp -> Ok(1)": "cpu:313892672", - "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@99e0911a", + "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@ddecb92e", "10180 call obj_cmp(Address(obj#2937), Address(obj#2293))": "", "10181 ret obj_cmp -> Ok(-1)": "cpu:313893358", "10182 call obj_cmp(Address(obj#2949), Address(obj#2293))": "", @@ -1329,7 +1329,7 @@ "10297 ret obj_cmp -> Ok(1)": "cpu:316131659", "10298 call obj_cmp(Address(obj#2733), Address(obj#2305))": "", "10299 ret obj_cmp -> Ok(1)": "cpu:316132345", - "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@d900f2b9", + "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@ef460cff", "10300 call obj_cmp(Address(obj#2745), Address(obj#2305))": "", "10301 ret obj_cmp -> Ok(-1)": "cpu:316133031", "10302 call obj_cmp(Address(obj#2757), Address(obj#2305))": "", @@ -1461,7 +1461,7 @@ "10417 ret obj_cmp -> Ok(1)": "cpu:318361945", "10418 call obj_cmp(Address(obj#2553), Address(obj#2317))": "", "10419 ret obj_cmp -> Ok(1)": "cpu:318362631", - "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@8cf28d27", + "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@7a1f2db2", "10420 call obj_cmp(Address(obj#2565), Address(obj#2317))": "", "10421 ret obj_cmp -> Ok(1)": "cpu:318363317", "10422 call obj_cmp(Address(obj#2577), Address(obj#2317))": "", @@ -1593,7 +1593,7 @@ "10537 ret obj_cmp -> Ok(1)": "cpu:320593512", "10538 call obj_cmp(Address(obj#2385), Address(obj#2329))": "", "10539 ret obj_cmp -> Ok(1)": "cpu:320594198", - "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@adb776b7", + "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@914bc040", "10540 call obj_cmp(Address(obj#2397), Address(obj#2329))": "", "10541 ret obj_cmp -> Ok(1)": "cpu:320594884", "10542 call obj_cmp(Address(obj#2409), Address(obj#2329))": "", @@ -1725,7 +1725,7 @@ "10657 ret symbol_new_from_slice -> Ok(Symbol(obj#3813))": "cpu:320672804, mem:194284218, objs:6@c55a0112/1907@3a44b9cf", "10658 push VM:88663680:sym#3813(Bytes(obj#3801), Vec(obj#2343), Vec(obj#3811))": "cpu:322804793, mem:195614477, objs:-/1908@7bbfe3a1, vm:1114112@a6f378b8/7@ae192e85, stk:47@612ae8f0, auth:47@b5bf038b/53@1b86918d", "10659 call symbol_len(Symbol(obj#3813))": "cpu:322810991, mem:195614627, objs:3@5ad62292/1908@7bbfe3a1, stk:47@e7fe44c8", - "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@3b733ec9", + "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@daca6b74", "10660 ret symbol_len -> Ok(U32(12))": "cpu:322811207", "10661 call symbol_copy_to_slice(Symbol(obj#3813), U32(0), 12)": "", "10662 ret symbol_copy_to_slice -> Ok(())": "cpu:322811566", @@ -1857,7 +1857,7 @@ "10777 ret obj_cmp -> Ok(-1)": "cpu:322864472", "10778 call obj_cmp(Address(obj#2949), Address(obj#2341))": "", "10779 ret obj_cmp -> Ok(-1)": "cpu:322865158", - "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@f3b99202", + "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@4e66162c", "10780 call obj_cmp(Address(obj#2961), Address(obj#2341))": "", "10781 ret obj_cmp -> Ok(1)": "cpu:322865844", "10782 call obj_cmp(Address(obj#2973), Address(obj#2341))": "", @@ -1989,7 +1989,7 @@ "10897 ret obj_cmp -> Ok(1)": "cpu:325094029", "10898 call obj_cmp(Address(obj#2805), Address(obj#2353))": "", "10899 ret obj_cmp -> Ok(1)": "cpu:325094715", - "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@c40502a7", + "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@95eeba1e", "10900 call obj_cmp(Address(obj#2817), Address(obj#2353))": "", "10901 ret obj_cmp -> Ok(1)": "cpu:325095401", "10902 call obj_cmp(Address(obj#2829), Address(obj#2353))": "", @@ -2121,7 +2121,7 @@ "11017 ret obj_cmp -> Ok(1)": "cpu:327314199", "11018 call obj_cmp(Address(obj#2673), Address(obj#2365))": "", "11019 ret obj_cmp -> Ok(1)": "cpu:327314885", - "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@69ae4ce3", + "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@7b807866", "11020 call obj_cmp(Address(obj#2685), Address(obj#2365))": "", "11021 ret obj_cmp -> Ok(-1)": "cpu:327315571", "11022 call obj_cmp(Address(obj#2697), Address(obj#2365))": "", @@ -2253,7 +2253,7 @@ "11137 ret obj_cmp -> Ok(1)": "cpu:329535650", "11138 call obj_cmp(Address(obj#2553), Address(obj#2377))": "", "11139 ret obj_cmp -> Ok(1)": "cpu:329536336", - "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@c6d564e3", + "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@6ffec27e", "11140 call obj_cmp(Address(obj#2565), Address(obj#2377))": "", "11141 ret obj_cmp -> Ok(1)": "cpu:329537022", "11142 call obj_cmp(Address(obj#2577), Address(obj#2377))": "", @@ -2385,7 +2385,7 @@ "11257 ret obj_cmp -> Ok(1)": "cpu:331755334", "11258 call obj_cmp(Address(obj#2445), Address(obj#2389))": "", "11259 ret obj_cmp -> Ok(-1)": "cpu:331756020", - "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@19000368", + "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@eba6b1af", "11260 call obj_cmp(Address(obj#2457), Address(obj#2389))": "", "11261 ret obj_cmp -> Ok(1)": "cpu:331756706", "11262 call obj_cmp(Address(obj#2469), Address(obj#2389))": "", @@ -2517,7 +2517,7 @@ "11377 call vec_get(Vec(obj#2403), U32(0))": "", "11378 ret vec_get -> Ok(Symbol(obj#2399))": "cpu:333963855", "11379 call symbol_index_in_linear_memory(Symbol(obj#2399), U32(1048664), U32(3))": "cpu:333965104, mem:202273246, objs:4@d70cef75/1953@c7d7eebc, stk:52@bf289828", - "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@165a018e", + "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@97aba755", "11380 ret symbol_index_in_linear_memory -> Ok(U32(0))": "cpu:333966835", "11381 call vec_get(Vec(obj#2403), U32(1))": "", "11382 ret vec_get -> Ok(Address(obj#2401))": "cpu:333968057", @@ -2649,7 +2649,7 @@ "11497 ret map_new_from_slices -> Ok(Map(obj#3915))": "cpu:334043927, mem:202274376, objs:6@5280520d/1958@a551f182", "11498 call vec_new_from_slice(2)": "", "11499 ret vec_new_from_slice -> Ok(Vec(obj#3917))": "cpu:334046822, mem:202274472, objs:6@5280520d/1959@5c623e63", - "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@598eacaa", + "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@bed7d447", "11500 call vec_push_back(Vec(obj#3911), Vec(obj#3917))": "", "11501 ret vec_push_back -> Ok(Vec(obj#3919))": "cpu:334050040, mem:202274560, objs:6@5280520d/1960@6bda50b5", "11502 call symbol_new_from_slice(12)": "", @@ -2781,7 +2781,7 @@ "11617 ret obj_cmp -> Ok(-1)": "cpu:336222941", "11618 call obj_cmp(Address(obj#2421), Address(obj#2413))": " auth:53@5f88b02f/46@f8ccf3e", "11619 ret obj_cmp -> Ok(0)": "cpu:336223627", - "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@a93552d0", + "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@978a819", "11620 call obj_cmp(Address(obj#2429), Address(obj#3923))": "", "11621 ret obj_cmp -> Ok(0)": "cpu:336224313", "11622 call obj_cmp(Symbol(obj#2431), Symbol(obj#3921))": "", @@ -2913,7 +2913,7 @@ "11737 ret obj_cmp -> Ok(1)": "cpu:338429704", "11738 call obj_cmp(Address(obj#2913), Address(obj#2425))": "", "11739 ret obj_cmp -> Ok(-1)": "cpu:338430390", - "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@5f366658", + "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@af6ca8a", "11740 call obj_cmp(Address(obj#2925), Address(obj#2425))": "", "11741 ret obj_cmp -> Ok(1)": "cpu:338431076", "11742 call obj_cmp(Address(obj#2937), Address(obj#2425))": "", @@ -3045,7 +3045,7 @@ "11857 ret obj_cmp -> Ok(1)": "cpu:340634700", "11858 call obj_cmp(Address(obj#2853), Address(obj#2437))": "", "11859 ret obj_cmp -> Ok(1)": "cpu:340635386", - "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@68507614", + "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@c5cbfcbf", "11860 call obj_cmp(Address(obj#2865), Address(obj#2437))": "", "11861 ret obj_cmp -> Ok(1)": "cpu:340636072", "11862 call obj_cmp(Address(obj#2877), Address(obj#2437))": "", @@ -3177,7 +3177,7 @@ "11977 ret obj_cmp -> Ok(-1)": "cpu:342833357", "11978 call obj_cmp(Address(obj#2805), Address(obj#2449))": "", "11979 ret obj_cmp -> Ok(-1)": "cpu:342834043", - "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@73687fbb", + "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@c8d5c457", "11980 call obj_cmp(Address(obj#2817), Address(obj#2449))": "", "11981 ret obj_cmp -> Ok(-1)": "cpu:342834729", "11982 call obj_cmp(Address(obj#2829), Address(obj#2449))": "", @@ -7223,223 +7223,223 @@ "15655 call deserialize_from_bytes(Bytes(obj#2977))": "cpu:435882607, mem:266144902, objs:5@688bccae/2385@1c7aab9b, stk:100@abd69abe", "15656 ret deserialize_from_bytes -> Err(Error(Value, UnexpectedType))": "cpu:436048766, mem:266148522", "15657 pop VM:88663680:sym#4767 -> Err(Error(Value, UnexpectedType))": " vm:1114112@939ed128/7@ae192e85", - "15658 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e1a15142/2385@1c7aab9b, vm:-/-, stk:99@b480e09, auth:99@f0706ecf/1@5e083ce", + "15658 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e1a15142/2385@1c7aab9b, vm:-/-, stk:99@b480e09, auth:99@f0706ecf/1@6847e66e", "15659 pop VM:88663680:sym#4749 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1566 ret symbol_new_from_slice -> Ok(Symbol(obj#1765))": "cpu:211712863, mem:132896823, objs:-/883@d847983", - "15660 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@77c0c023/2385@1c7aab9b, vm:-/-, stk:98@a3e1398e, auth:98@5cdcd89/2@f6ee610d", + "15660 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@77c0c023/2385@1c7aab9b, vm:-/-, stk:98@a3e1398e, auth:98@5cdcd89/2@ee3cf4", "15661 pop VM:88663680:sym#4731 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15662 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a4ca3187/2385@1c7aab9b, vm:-/-, stk:97@1ff6fc47, auth:97@d20ed928/3@f99995b6", + "15662 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a4ca3187/2385@1c7aab9b, vm:-/-, stk:97@1ff6fc47, auth:97@d20ed928/3@f13054f0", "15663 pop VM:88663680:sym#4713 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15664 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@24495b22/2385@1c7aab9b, vm:-/-, stk:96@7b8171f2, auth:96@5788d49c/4@7559b287", + "15664 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@24495b22/2385@1c7aab9b, vm:-/-, stk:96@7b8171f2, auth:96@5788d49c/4@8a5d9c1c", "15665 pop VM:88663680:sym#4695 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15666 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce6f0c34/2385@1c7aab9b, vm:-/-, stk:95@6fb5fe01, auth:95@1eee3b18/5@ef631271", + "15666 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ce6f0c34/2385@1c7aab9b, vm:-/-, stk:95@6fb5fe01, auth:95@1eee3b18/5@4cb99d76", "15667 pop VM:88663680:sym#4677 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15668 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1731f207/2385@1c7aab9b, vm:-/-, stk:94@935ab213, auth:94@179ecd46/6@ee6ec70f", + "15668 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1731f207/2385@1c7aab9b, vm:-/-, stk:94@935ab213, auth:94@179ecd46/6@420e9b23", "15669 pop VM:88663680:sym#4659 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1567 call vec_new_from_slice(2)": "", - "15670 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6b7af8f/2385@1c7aab9b, vm:-/-, stk:93@f10822a3, auth:93@ce449c1c/7@4a958812", + "15670 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6b7af8f/2385@1c7aab9b, vm:-/-, stk:93@f10822a3, auth:93@ce449c1c/7@b5858252", "15671 pop VM:88663680:sym#4641 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15672 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8812107/2385@1c7aab9b, vm:-/-, stk:92@a451b1b9, auth:92@ffe001d4/8@33fa1fbd", + "15672 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8812107/2385@1c7aab9b, vm:-/-, stk:92@a451b1b9, auth:92@ffe001d4/8@53a6d4bf", "15673 pop VM:88663680:sym#4623 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15674 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2ee70ce0/2385@1c7aab9b, vm:-/-, stk:91@eb0afd0e, auth:91@7e4754d8/9@7de0e451", + "15674 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2ee70ce0/2385@1c7aab9b, vm:-/-, stk:91@eb0afd0e, auth:91@7e4754d8/9@9474775b", "15675 pop VM:88663680:sym#4605 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15676 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8c948d82/2385@1c7aab9b, vm:-/-, stk:90@e74e5995, auth:90@96513e7d/10@c5a5650d", + "15676 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8c948d82/2385@1c7aab9b, vm:-/-, stk:90@e74e5995, auth:90@96513e7d/10@650cbef5", "15677 pop VM:88663680:sym#4587 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15678 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f12ff1b3/2385@1c7aab9b, vm:-/-, stk:89@6604cd6, auth:89@d0812138/11@3c15692a", + "15678 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f12ff1b3/2385@1c7aab9b, vm:-/-, stk:89@6604cd6, auth:89@d0812138/11@d1035bc4", "15679 pop VM:88663680:sym#4569 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1568 ret vec_new_from_slice -> Ok(Vec(obj#1767))": "cpu:211715866, mem:132896919, objs:-/884@34badc4a", - "15680 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@29a8936c/2385@1c7aab9b, vm:-/-, stk:88@e1efb8d2, auth:88@cd5771bf/12@2857e56d", + "15680 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@29a8936c/2385@1c7aab9b, vm:-/-, stk:88@e1efb8d2, auth:88@cd5771bf/12@ac6e6254", "15681 pop VM:88663680:sym#4551 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15682 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5896f443/2385@1c7aab9b, vm:-/-, stk:87@2d21dbee, auth:87@2bf3ee8e/13@26bc6c5d", + "15682 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5896f443/2385@1c7aab9b, vm:-/-, stk:87@2d21dbee, auth:87@2bf3ee8e/13@da248ea6", "15683 pop VM:88663680:sym#4533 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15684 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@85ea2de6/2385@1c7aab9b, vm:-/-, stk:86@2d293bcb, auth:86@5a169b63/14@b545f5f7", + "15684 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@85ea2de6/2385@1c7aab9b, vm:-/-, stk:86@2d293bcb, auth:86@5a169b63/14@d9883908", "15685 pop VM:88663680:sym#4515 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15686 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7be36f1/2385@1c7aab9b, vm:-/-, stk:85@e7dad090, auth:85@fcc167f9/15@851ecfa1", + "15686 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c7be36f1/2385@1c7aab9b, vm:-/-, stk:85@e7dad090, auth:85@fcc167f9/15@38971f27", "15687 pop VM:88663680:sym#4497 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15688 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8bcbf724/2385@1c7aab9b, vm:-/-, stk:84@f5fba549, auth:84@9c5abac/16@fc084e35", + "15688 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8bcbf724/2385@1c7aab9b, vm:-/-, stk:84@f5fba549, auth:84@9c5abac/16@a343394", "15689 pop VM:88663680:sym#4479 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1569 call symbol_new_from_slice(15)": "cpu:211720474, mem:132897094", - "15690 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ecfef337/2385@1c7aab9b, vm:-/-, stk:83@5ee120dc, auth:83@fc052fd7/17@d70db7d8", + "15690 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ecfef337/2385@1c7aab9b, vm:-/-, stk:83@5ee120dc, auth:83@fc052fd7/17@b1b84d13", "15691 pop VM:88663680:sym#4461 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15692 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1db0bb89/2385@1c7aab9b, vm:-/-, stk:82@6c813208, auth:82@4dbaaa39/18@677478ca", + "15692 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1db0bb89/2385@1c7aab9b, vm:-/-, stk:82@6c813208, auth:82@4dbaaa39/18@ad43b7d6", "15693 pop VM:88663680:sym#4443 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15694 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a6eb85eb/2385@1c7aab9b, vm:-/-, stk:81@ed15a83b, auth:81@6a63417a/19@263df921", + "15694 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a6eb85eb/2385@1c7aab9b, vm:-/-, stk:81@ed15a83b, auth:81@6a63417a/19@3a7578e2", "15695 pop VM:88663680:sym#4425 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15696 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@42f9edc2/2385@1c7aab9b, vm:-/-, stk:80@bf8cd5bf, auth:80@94ce8370/20@603489ba", + "15696 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@42f9edc2/2385@1c7aab9b, vm:-/-, stk:80@bf8cd5bf, auth:80@94ce8370/20@be59ebd8", "15697 pop VM:88663680:sym#4407 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15698 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f69d8a9/2385@1c7aab9b, vm:-/-, stk:79@bb4fffae, auth:79@dd79bf55/21@695198ec", + "15698 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f69d8a9/2385@1c7aab9b, vm:-/-, stk:79@bb4fffae, auth:79@dd79bf55/21@f446046", "15699 pop VM:88663680:sym#4389 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1570 ret symbol_new_from_slice -> Ok(Symbol(obj#1769))": "cpu:211723511, mem:132897189, objs:-/885@30279af3", - "15700 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8ee9ebd6/2385@1c7aab9b, vm:-/-, stk:78@907f5783, auth:78@2ba65d18/22@f0bb730b", + "15700 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8ee9ebd6/2385@1c7aab9b, vm:-/-, stk:78@907f5783, auth:78@2ba65d18/22@97189aa7", "15701 pop VM:88663680:sym#4371 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15702 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@435c438a/2385@1c7aab9b, vm:-/-, stk:77@f5261b78, auth:77@701162dd/23@dcd11aeb", + "15702 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@435c438a/2385@1c7aab9b, vm:-/-, stk:77@f5261b78, auth:77@701162dd/23@d5c4bb2", "15703 pop VM:88663680:sym#4353 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15704 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@94432e06/2385@1c7aab9b, vm:-/-, stk:76@13588ffa, auth:76@2d055e71/24@fb4f5dbe", + "15704 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@94432e06/2385@1c7aab9b, vm:-/-, stk:76@13588ffa, auth:76@2d055e71/24@1fb513d8", "15705 pop VM:88663680:sym#4335 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15706 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@18ba39df/2385@1c7aab9b, vm:-/-, stk:75@8672b992, auth:75@ed119b0d/25@8266d9d0", + "15706 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@18ba39df/2385@1c7aab9b, vm:-/-, stk:75@8672b992, auth:75@ed119b0d/25@5227c07b", "15707 pop VM:88663680:sym#4317 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15708 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6046ef1/2385@1c7aab9b, vm:-/-, stk:74@2233dd85, auth:74@1c34a7fa/26@f40c2637", + "15708 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6046ef1/2385@1c7aab9b, vm:-/-, stk:74@2233dd85, auth:74@1c34a7fa/26@d7c9922a", "15709 pop VM:88663680:sym#4299 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1571 call vec_new_from_slice(2)": "", - "15710 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d92fcb83/2385@1c7aab9b, vm:-/-, stk:73@4a3b13e0, auth:73@206df3d8/27@bc908aa4", + "15710 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d92fcb83/2385@1c7aab9b, vm:-/-, stk:73@4a3b13e0, auth:73@206df3d8/27@1087aaa1", "15711 pop VM:88663680:sym#4281 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15712 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bc538c/2385@1c7aab9b, vm:-/-, stk:72@4cc962d8, auth:72@645944bd/28@2c501f92", + "15712 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bc538c/2385@1c7aab9b, vm:-/-, stk:72@4cc962d8, auth:72@645944bd/28@ece95b57", "15713 pop VM:88663680:sym#4263 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15714 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59156251/2385@1c7aab9b, vm:-/-, stk:71@c88d863b, auth:71@8827defa/29@bad4f2bc", + "15714 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59156251/2385@1c7aab9b, vm:-/-, stk:71@c88d863b, auth:71@8827defa/29@301e206d", "15715 pop VM:88663680:sym#4245 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15716 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@15016d65/2385@1c7aab9b, vm:-/-, stk:70@18da574b, auth:70@a98bd75d/30@30cbdc06", + "15716 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@15016d65/2385@1c7aab9b, vm:-/-, stk:70@18da574b, auth:70@a98bd75d/30@f1e11bf8", "15717 pop VM:88663680:sym#4227 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15718 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4b9c5dc3/2385@1c7aab9b, vm:-/-, stk:69@bbc14103, auth:69@fa30289b/31@9bec7c1e", + "15718 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4b9c5dc3/2385@1c7aab9b, vm:-/-, stk:69@bbc14103, auth:69@fa30289b/31@6596aea4", "15719 pop VM:88663680:sym#4209 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1572 ret vec_new_from_slice -> Ok(Vec(obj#1771))": "cpu:211726514, mem:132897285, objs:-/886@4126b0bc", - "15720 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64aa149b/2385@1c7aab9b, vm:-/-, stk:68@331c3ee5, auth:68@8aace2b/32@850af6e", + "15720 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64aa149b/2385@1c7aab9b, vm:-/-, stk:68@331c3ee5, auth:68@8aace2b/32@79493271", "15721 pop VM:88663680:sym#4191 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15722 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e028c957/2385@1c7aab9b, vm:-/-, stk:67@911b1b40, auth:67@e1fa2e12/33@70da9360", + "15722 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e028c957/2385@1c7aab9b, vm:-/-, stk:67@911b1b40, auth:67@e1fa2e12/33@76581f18", "15723 pop VM:88663680:sym#4173 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15724 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6814f707/2385@1c7aab9b, vm:-/-, stk:66@70ff85dd, auth:66@9f383a8/34@e87120aa", + "15724 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6814f707/2385@1c7aab9b, vm:-/-, stk:66@70ff85dd, auth:66@9f383a8/34@866e30b3", "15725 pop VM:88663680:sym#4155 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15726 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ea604735/2385@1c7aab9b, vm:-/-, stk:65@e0301773, auth:65@b9a97767/35@a0ae36b2", + "15726 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ea604735/2385@1c7aab9b, vm:-/-, stk:65@e0301773, auth:65@b9a97767/35@9aafbfc1", "15727 pop VM:88663680:sym#4137 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15728 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a39ceda3/2385@1c7aab9b, vm:-/-, stk:64@2b4c7a4d, auth:64@84fed67e/36@7b01f651", + "15728 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a39ceda3/2385@1c7aab9b, vm:-/-, stk:64@2b4c7a4d, auth:64@84fed67e/36@7bbd5bde", "15729 pop VM:88663680:sym#4119 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1573 call symbol_new_from_slice(15)": "cpu:211731122, mem:132897460", - "15730 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9e738a1d/2385@1c7aab9b, vm:-/-, stk:63@e69c8709, auth:63@2216aa93/37@ce95029a", + "15730 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9e738a1d/2385@1c7aab9b, vm:-/-, stk:63@e69c8709, auth:63@2216aa93/37@c5249f45", "15731 pop VM:88663680:sym#4101 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15732 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f7876b60/2385@1c7aab9b, vm:-/-, stk:62@7173313a, auth:62@f610ad3d/38@4736e33a", + "15732 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f7876b60/2385@1c7aab9b, vm:-/-, stk:62@7173313a, auth:62@f610ad3d/38@6bca814a", "15733 pop VM:88663680:sym#4083 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15734 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e6353f53/2385@1c7aab9b, vm:-/-, stk:61@afcdefe1, auth:61@97ccc004/39@e4490498", + "15734 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e6353f53/2385@1c7aab9b, vm:-/-, stk:61@afcdefe1, auth:61@97ccc004/39@7f28590", "15735 pop VM:88663680:sym#4065 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15736 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd52b07/2385@1c7aab9b, vm:-/-, stk:60@45327dbb, auth:60@bb22e4a2/40@fa5a50a8", + "15736 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd52b07/2385@1c7aab9b, vm:-/-, stk:60@45327dbb, auth:60@bb22e4a2/40@c9b75ca2", "15737 pop VM:88663680:sym#4047 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15738 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d8a476e8/2385@1c7aab9b, vm:-/-, stk:59@6d1d4a78, auth:59@4ba8f486/41@20fbc1ea", + "15738 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d8a476e8/2385@1c7aab9b, vm:-/-, stk:59@6d1d4a78, auth:59@4ba8f486/41@21f0c67d", "15739 pop VM:88663680:sym#4029 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1574 ret symbol_new_from_slice -> Ok(Symbol(obj#1773))": "cpu:211734159, mem:132897555, objs:-/887@98974acb", - "15740 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@681f9263/2385@1c7aab9b, vm:-/-, stk:58@35a77e43, auth:58@4c87870c/42@7d7423a5", + "15740 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@681f9263/2385@1c7aab9b, vm:-/-, stk:58@35a77e43, auth:58@4c87870c/42@64695111", "15741 pop VM:88663680:sym#4011 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15742 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8743913a/2385@1c7aab9b, vm:-/-, stk:57@e65a6d8b, auth:57@211b21d0/43@94c4c2fa", + "15742 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8743913a/2385@1c7aab9b, vm:-/-, stk:57@e65a6d8b, auth:57@211b21d0/43@3a41bd0", "15743 pop VM:88663680:sym#3993 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15744 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8b95962/2385@1c7aab9b, vm:-/-, stk:56@7df6e759, auth:56@5a778782/44@d5e55c80", + "15744 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f8b95962/2385@1c7aab9b, vm:-/-, stk:56@7df6e759, auth:56@5a778782/44@f54c5a1b", "15745 pop VM:88663680:sym#3975 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15746 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1d255476/2385@1c7aab9b, vm:-/-, stk:55@c12ac3bb, auth:55@8edaf67e/45@7b650288", + "15746 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1d255476/2385@1c7aab9b, vm:-/-, stk:55@c12ac3bb, auth:55@8edaf67e/45@b8707c8b", "15747 pop VM:88663680:sym#3957 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15748 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a695e9d7/2385@1c7aab9b, vm:-/-, stk:54@78bb1f2, auth:54@d04d0718/46@5c77734a", + "15748 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a695e9d7/2385@1c7aab9b, vm:-/-, stk:54@78bb1f2, auth:54@d04d0718/46@1118f899", "15749 pop VM:88663680:sym#3939 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1575 call vec_new_from_slice(2)": "", - "15750 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6014b02/2385@1c7aab9b, vm:-/-, stk:53@256a64ec, auth:53@5f88b02f/47@307eee37", + "15750 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f6014b02/2385@1c7aab9b, vm:-/-, stk:53@256a64ec, auth:53@5f88b02f/47@c5514991", "15751 pop VM:88663680:sym#3921 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15752 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5280520d/2385@1c7aab9b, vm:-/-, stk:52@c2f98259, auth:52@784dc0bf/48@7248573d", + "15752 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5280520d/2385@1c7aab9b, vm:-/-, stk:52@c2f98259, auth:52@784dc0bf/48@28b0fab5", "15753 pop VM:88663680:sym#3903 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15754 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7e2e2d7a/2385@1c7aab9b, vm:-/-, stk:51@d5b0995, auth:51@522c6456/49@70066174", + "15754 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7e2e2d7a/2385@1c7aab9b, vm:-/-, stk:51@d5b0995, auth:51@522c6456/49@d2131b61", "15755 pop VM:88663680:sym#3885 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15756 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@75b4840e/2385@1c7aab9b, vm:-/-, stk:50@d0a28170, auth:50@2cfdfd38/50@721402ff", + "15756 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@75b4840e/2385@1c7aab9b, vm:-/-, stk:50@d0a28170, auth:50@2cfdfd38/50@20cf5c10", "15757 pop VM:88663680:sym#3867 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15758 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21576ae6/2385@1c7aab9b, vm:-/-, stk:49@e851ee31, auth:49@a59e1027/51@e85f0bfb", + "15758 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21576ae6/2385@1c7aab9b, vm:-/-, stk:49@e851ee31, auth:49@a59e1027/51@e8d7c52f", "15759 pop VM:88663680:sym#3849 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1576 ret vec_new_from_slice -> Ok(Vec(obj#1775))": "cpu:211737162, mem:132897651, objs:-/888@9451c10e", - "15760 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b75d2348/2385@1c7aab9b, vm:-/-, stk:48@1c0f6ed3, auth:48@fbdba925/52@2cfb138c", + "15760 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@b75d2348/2385@1c7aab9b, vm:-/-, stk:48@1c0f6ed3, auth:48@fbdba925/52@7838a61e", "15761 pop VM:88663680:sym#3831 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15762 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780be6/2385@1c7aab9b, vm:-/-, stk:47@7db5dc5e, auth:47@b5bf038b/53@8d92a2f3", + "15762 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f780be6/2385@1c7aab9b, vm:-/-, stk:47@7db5dc5e, auth:47@b5bf038b/53@b5688ed4", "15763 pop VM:88663680:sym#3813 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15764 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c55a0112/2385@1c7aab9b, vm:-/-, stk:46@721ace68, auth:46@56765c20/54@e8a98b5e", + "15764 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@c55a0112/2385@1c7aab9b, vm:-/-, stk:46@721ace68, auth:46@56765c20/54@fb25b580", "15765 pop VM:88663680:sym#3795 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15766 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5927544d/2385@1c7aab9b, vm:-/-, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@58a526c", + "15766 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5927544d/2385@1c7aab9b, vm:-/-, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@41661144", "15767 pop VM:88663680:sym#3777 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15768 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f0ef7bde/2385@1c7aab9b, vm:-/-, stk:44@7f4eec7a, auth:44@9c848851/56@5d663ae8", + "15768 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f0ef7bde/2385@1c7aab9b, vm:-/-, stk:44@7f4eec7a, auth:44@9c848851/56@1d5edd76", "15769 pop VM:88663680:sym#3759 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1577 call symbol_new_from_slice(15)": "cpu:211741770, mem:132897826", - "15770 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59a04dd9/2385@1c7aab9b, vm:-/-, stk:43@f25c04dc, auth:43@19b6ddf8/57@5f2e1a5a", + "15770 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@59a04dd9/2385@1c7aab9b, vm:-/-, stk:43@f25c04dc, auth:43@19b6ddf8/57@2c2c27c8", "15771 pop VM:88663680:sym#3741 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15772 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a236cae6/2385@1c7aab9b, vm:-/-, stk:42@59b7cb1b, auth:42@88d2da86/58@438026", + "15772 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@a236cae6/2385@1c7aab9b, vm:-/-, stk:42@59b7cb1b, auth:42@88d2da86/58@76f8898c", "15773 pop VM:88663680:sym#3723 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15774 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e18f418d/2385@1c7aab9b, vm:-/-, stk:41@2a41e58c, auth:41@a6bed382/59@4101df9d", + "15774 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e18f418d/2385@1c7aab9b, vm:-/-, stk:41@2a41e58c, auth:41@a6bed382/59@54f37be5", "15775 pop VM:88663680:sym#3705 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15776 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb79409a/2385@1c7aab9b, vm:-/-, stk:40@98e7cae6, auth:40@82ad913a/60@2ea2408c", + "15776 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@bb79409a/2385@1c7aab9b, vm:-/-, stk:40@98e7cae6, auth:40@82ad913a/60@286b9a23", "15777 pop VM:88663680:sym#3687 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15778 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9bf2215e/2385@1c7aab9b, vm:-/-, stk:39@4e38e93e, auth:39@72a2863a/61@632dff6c", + "15778 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@9bf2215e/2385@1c7aab9b, vm:-/-, stk:39@4e38e93e, auth:39@72a2863a/61@1ed72e4c", "15779 pop VM:88663680:sym#3669 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1578 ret symbol_new_from_slice -> Ok(Symbol(obj#1777))": "cpu:211744807, mem:132897921, objs:-/889@604c542a", - "15780 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@60ecd793/2385@1c7aab9b, vm:-/-, stk:38@ce27915d, auth:38@be72f42c/62@15bf639a", + "15780 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@60ecd793/2385@1c7aab9b, vm:-/-, stk:38@ce27915d, auth:38@be72f42c/62@35ce7299", "15781 pop VM:88663680:sym#3651 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15782 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e5930fd6/2385@1c7aab9b, vm:-/-, stk:37@f67be49e, auth:37@bc299701/63@26825cfc", + "15782 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@e5930fd6/2385@1c7aab9b, vm:-/-, stk:37@f67be49e, auth:37@bc299701/63@b6694b18", "15783 pop VM:88663680:sym#3633 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15784 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7c4c7d00/2385@1c7aab9b, vm:-/-, stk:36@344264f8, auth:36@52d76081/64@b64a504a", + "15784 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7c4c7d00/2385@1c7aab9b, vm:-/-, stk:36@344264f8, auth:36@52d76081/64@5a95e337", "15785 pop VM:88663680:sym#3615 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15786 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd01759/2385@1c7aab9b, vm:-/-, stk:35@bd233f57, auth:35@6ac911da/65@885483fb", + "15786 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1bd01759/2385@1c7aab9b, vm:-/-, stk:35@bd233f57, auth:35@6ac911da/65@d1b42823", "15787 pop VM:88663680:sym#3597 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15788 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f375813c/2385@1c7aab9b, vm:-/-, stk:34@8c1e22e, auth:34@3f742c7d/66@542acd18", + "15788 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f375813c/2385@1c7aab9b, vm:-/-, stk:34@8c1e22e, auth:34@3f742c7d/66@1a43deff", "15789 pop VM:88663680:sym#3579 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1579 call vec_new_from_slice(2)": "", - "15790 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@904fedee/2385@1c7aab9b, vm:-/-, stk:33@c7114ce6, auth:33@69141765/67@7275024f", + "15790 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@904fedee/2385@1c7aab9b, vm:-/-, stk:33@c7114ce6, auth:33@69141765/67@11cfaf4b", "15791 pop VM:88663680:sym#3561 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15792 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64e964ae/2385@1c7aab9b, vm:-/-, stk:32@b30db134, auth:32@824c08cd/68@e2cb1b88", + "15792 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@64e964ae/2385@1c7aab9b, vm:-/-, stk:32@b30db134, auth:32@824c08cd/68@8dead7ae", "15793 pop VM:88663680:sym#3543 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15794 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f2148a0/2385@1c7aab9b, vm:-/-, stk:31@9025202a, auth:31@a2c8cd3d/69@f33cdb81", + "15794 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f2148a0/2385@1c7aab9b, vm:-/-, stk:31@9025202a, auth:31@a2c8cd3d/69@c941c4d9", "15795 pop VM:88663680:sym#3525 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15796 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63f6f9a9/2385@1c7aab9b, vm:-/-, stk:30@8353406, auth:30@9a437baf/70@45d6d618", + "15796 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63f6f9a9/2385@1c7aab9b, vm:-/-, stk:30@8353406, auth:30@9a437baf/70@b1f5c845", "15797 pop VM:88663680:sym#3507 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15798 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ab50c74/2385@1c7aab9b, vm:-/-, stk:29@8e0db03, auth:29@b886d50f/71@35001671", + "15798 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@ab50c74/2385@1c7aab9b, vm:-/-, stk:29@8e0db03, auth:29@b886d50f/71@7f8d0e38", "15799 pop VM:88663680:sym#3489 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1580 ret vec_new_from_slice -> Ok(Vec(obj#1779))": "cpu:211747810, mem:132898017, objs:-/890@f0dbb3c", - "15800 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7348236e/2385@1c7aab9b, vm:-/-, stk:28@a0c273c1, auth:28@3ff20958/72@47e990d6", + "15800 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7348236e/2385@1c7aab9b, vm:-/-, stk:28@a0c273c1, auth:28@3ff20958/72@cc03a71d", "15801 pop VM:88663680:sym#3471 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15802 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@46838bca/2385@1c7aab9b, vm:-/-, stk:27@1716fbf9, auth:27@e7b679f1/73@4cc9b3c9", + "15802 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@46838bca/2385@1c7aab9b, vm:-/-, stk:27@1716fbf9, auth:27@e7b679f1/73@5ce5cc91", "15803 pop VM:88663680:sym#3453 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15804 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8a29114a/2385@1c7aab9b, vm:-/-, stk:26@be817170, auth:26@c7dd0c4/74@3bc5837c", + "15804 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@8a29114a/2385@1c7aab9b, vm:-/-, stk:26@be817170, auth:26@c7dd0c4/74@5e867e61", "15805 pop VM:88663680:sym#3435 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15806 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7538824d/2385@1c7aab9b, vm:-/-, stk:25@aa930a00, auth:25@4bad9d16/75@aad22d1f", + "15806 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7538824d/2385@1c7aab9b, vm:-/-, stk:25@aa930a00, auth:25@4bad9d16/75@5bef4fdd", "15807 pop VM:88663680:sym#3417 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15808 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d7979c5/2385@1c7aab9b, vm:-/-, stk:24@56df4b81, auth:24@48cb09aa/76@f27f89c7", + "15808 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d7979c5/2385@1c7aab9b, vm:-/-, stk:24@56df4b81, auth:24@48cb09aa/76@f021ea1", "15809 pop VM:88663680:sym#3399 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1581 call symbol_new_from_slice(15)": "cpu:211752418, mem:132898192", - "15810 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dece707c/2385@1c7aab9b, vm:-/-, stk:23@35ad5b0e, auth:23@d1a25bf/77@c6cde3a3", + "15810 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@dece707c/2385@1c7aab9b, vm:-/-, stk:23@35ad5b0e, auth:23@d1a25bf/77@37717916", "15811 pop VM:88663680:sym#3381 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15812 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@50f7e43c/2385@1c7aab9b, vm:-/-, stk:22@2f51cee1, auth:22@16c05aab/78@8a426f3d", + "15812 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@50f7e43c/2385@1c7aab9b, vm:-/-, stk:22@2f51cee1, auth:22@16c05aab/78@c4429de7", "15813 pop VM:88663680:sym#3363 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15814 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1dfc95c6/2385@1c7aab9b, vm:-/-, stk:21@7e8e04d5, auth:21@3b832e86/79@a82ff22", + "15814 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1dfc95c6/2385@1c7aab9b, vm:-/-, stk:21@7e8e04d5, auth:21@3b832e86/79@1e7a4929", "15815 pop VM:88663680:sym#3345 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15816 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f75e7e24/2385@1c7aab9b, vm:-/-, stk:20@d21d7cff, auth:20@5f1067df/80@bf2399d8", + "15816 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@f75e7e24/2385@1c7aab9b, vm:-/-, stk:20@d21d7cff, auth:20@5f1067df/80@185ab1fb", "15817 pop VM:88663680:sym#3327 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15818 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbe03f55/2385@1c7aab9b, vm:-/-, stk:19@77ea2e51, auth:19@58fdc3c6/81@77a3547b", + "15818 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@fbe03f55/2385@1c7aab9b, vm:-/-, stk:19@77ea2e51, auth:19@58fdc3c6/81@fc360f4b", "15819 pop VM:88663680:sym#3309 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1582 ret symbol_new_from_slice -> Ok(Symbol(obj#1781))": "cpu:211755455, mem:132898287, objs:-/891@568f0514", - "15820 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d6e479d0/2385@1c7aab9b, vm:-/-, stk:18@c9502770, auth:18@fdee93cd/82@3492445e", + "15820 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@d6e479d0/2385@1c7aab9b, vm:-/-, stk:18@c9502770, auth:18@fdee93cd/82@11733ef8", "15821 pop VM:88663680:sym#3291 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15822 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@da4b3063/2385@1c7aab9b, vm:-/-, stk:17@e515b98b, auth:17@aaf504d6/83@7e164200", + "15822 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@da4b3063/2385@1c7aab9b, vm:-/-, stk:17@e515b98b, auth:17@aaf504d6/83@2968194d", "15823 pop VM:88663680:sym#3273 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15824 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5d120581/2385@1c7aab9b, vm:-/-, stk:16@f096a1ef, auth:16@ab47d532/84@cbfb740f", + "15824 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@5d120581/2385@1c7aab9b, vm:-/-, stk:16@f096a1ef, auth:16@ab47d532/84@62d501cd", "15825 pop VM:88663680:sym#3255 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15826 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f10dc2e/2385@1c7aab9b, vm:-/-, stk:15@e1361023, auth:15@b9d655c6/85@73f3e6c1", + "15826 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f10dc2e/2385@1c7aab9b, vm:-/-, stk:15@e1361023, auth:15@b9d655c6/85@2683aeac", "15827 pop VM:88663680:sym#3237 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15828 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@34c4d52d/2385@1c7aab9b, vm:-/-, stk:14@f0334746, auth:14@b810afca/86@c86b8426", + "15828 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@34c4d52d/2385@1c7aab9b, vm:-/-, stk:14@f0334746, auth:14@b810afca/86@4f274995", "15829 pop VM:88663680:sym#3219 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1583 call vec_new_from_slice(2)": "", - "15830 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21c30808/2385@1c7aab9b, vm:-/-, stk:13@1b1a4865, auth:13@dbd3a68b/87@6577c8fa", + "15830 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@21c30808/2385@1c7aab9b, vm:-/-, stk:13@1b1a4865, auth:13@dbd3a68b/87@619a9230", "15831 pop VM:88663680:sym#3201 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15832 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f88259b/2385@1c7aab9b, vm:-/-, stk:12@d605a44b, auth:12@88878566/88@cb3102ee", + "15832 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@4f88259b/2385@1c7aab9b, vm:-/-, stk:12@d605a44b, auth:12@88878566/88@589e2244", "15833 pop VM:88663680:sym#3183 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15834 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1807fe6b/2385@1c7aab9b, vm:-/-, stk:11@58cd774d, auth:11@a85d5b0e/89@ed6ceead", + "15834 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1807fe6b/2385@1c7aab9b, vm:-/-, stk:11@58cd774d, auth:11@a85d5b0e/89@49340d44", "15835 pop VM:88663680:sym#3165 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15836 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@52ff6dcc/2385@1c7aab9b, vm:-/-, stk:10@a09fab6d, auth:10@e7bd3540/90@ec16c429", + "15836 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@52ff6dcc/2385@1c7aab9b, vm:-/-, stk:10@a09fab6d, auth:10@e7bd3540/90@28ad898c", "15837 pop VM:88663680:sym#3147 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15838 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2b28efe4/2385@1c7aab9b, vm:-/-, stk:9@2f48cbca, auth:9@ec33f68f/91@395c731a", + "15838 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@2b28efe4/2385@1c7aab9b, vm:-/-, stk:9@2f48cbca, auth:9@ec33f68f/91@7c5607ea", "15839 pop VM:88663680:sym#3129 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1584 ret vec_new_from_slice -> Ok(Vec(obj#1783))": "cpu:211758458, mem:132898383, objs:-/892@b809db19", - "15840 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@791d89c4/2385@1c7aab9b, vm:-/-, stk:8@b14c9ea8, auth:8@8160ef64/92@ab21f8cb", + "15840 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@791d89c4/2385@1c7aab9b, vm:-/-, stk:8@b14c9ea8, auth:8@8160ef64/92@93ba961f", "15841 pop VM:88663680:sym#3111 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15842 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63e2c7f8/2385@1c7aab9b, vm:-/-, stk:7@39fbd9ac, auth:7@ebcc31f8/93@4e236eef", + "15842 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@63e2c7f8/2385@1c7aab9b, vm:-/-, stk:7@39fbd9ac, auth:7@ebcc31f8/93@5f402e1c", "15843 pop VM:88663680:sym#3093 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15844 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ad68f76/2385@1c7aab9b, vm:-/-, stk:6@8d6b882d, auth:6@9fcc9592/94@e1aded09", + "15844 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@7ad68f76/2385@1c7aab9b, vm:-/-, stk:6@8d6b882d, auth:6@9fcc9592/94@98b76ce1", "15845 pop VM:88663680:sym#3075 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15846 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@73d7698b/2385@1c7aab9b, vm:-/-, stk:5@7a2b3d2e, auth:5@c8b580f0/95@67806d25", + "15846 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@73d7698b/2385@1c7aab9b, vm:-/-, stk:5@7a2b3d2e, auth:5@c8b580f0/95@abb1dd2f", "15847 pop VM:88663680:sym#3057 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15848 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6bbe61fa/2385@1c7aab9b, vm:-/-, stk:4@17923498, auth:4@9306758a/96@967230a4", + "15848 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@6bbe61fa/2385@1c7aab9b, vm:-/-, stk:4@17923498, auth:4@9306758a/96@b9c97f81", "15849 pop VM:88663680:sym#3039 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", "1585 call symbol_new_from_slice(15)": "cpu:211763066, mem:132898558", - "15850 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f03e93d/2385@1c7aab9b, vm:-/-, stk:3@a584f97e, auth:3@af82ce81/97@43542813", + "15850 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@1f03e93d/2385@1c7aab9b, vm:-/-, stk:3@a584f97e, auth:3@af82ce81/97@a0a65ff4", "15851 pop VM:88663680:sym#3021 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15852 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3739fd65/2385@1c7aab9b, vm:-/-, stk:2@2907590a, auth:2@898e1e4c/98@1ab10348", + "15852 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:6@3739fd65/2385@1c7aab9b, vm:-/-, stk:2@2907590a, auth:2@898e1e4c/98@e4794f3a", "15853 pop VM:88663680:sym#3003 -> Err(Error(Auth, InvalidAction))": " vm:1114112@e86028c5/7@ae192e85", - "15854 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@389fc46f/2385@1c7aab9b, vm:-/-, stk:1@db4954c8, auth:1@b97e1980/99@1605bafa", + "15854 ret require_auth_for_args -> Err(Error(Auth, InvalidAction))": " objs:2@389fc46f/2385@1c7aab9b, vm:-/-, stk:1@db4954c8, auth:1@b97e1980/99@ea63ca6b", "15855 pop VM:88663680:call -> Err(Error(Auth, InvalidAction))": " vm:1114112@a6f378b8/7@ae192e85", "15856 ret call -> Err(Error(Auth, InvalidAction))": " objs:-/2385@1c7aab9b, vm:-/-, stk:-, auth:-/-", "15857 end": "cpu:436048766, mem:266148522, prngs:-/9b4a753, objs:-/2385@1c7aab9b, vm:-/-, evt:-, store:-/101@45d5c29c, foot:101@83cc2c7c, stk:-, auth:-/-", diff --git a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit.json b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit.json index 05d74eccc..3bace572b 100644 --- a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit.json +++ b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2011761, mem:1318326, objs:-/5@a60269d1, auth:1@6c2ade56/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2012447", - " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@525240f7", + " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@72b99d18", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2015602, mem:1318438, objs:-/6@a06c2cba", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2053467, mem:1319944, objs:-/7@77a0a1db, store:-/2@ca7bd8a8, foot:2@c7956e9e, auth:-/1@c716b1ea", " 13 call bytes_new_from_slice(1723)": "cpu:2053722, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4053930, mem:2637748, objs:-/12@546c0606, auth:1@a7879343/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4054616", - " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@c690470a", + " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@a19a51b4", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4057771, mem:2637860, objs:-/13@8641253d", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4099512, mem:2639552, objs:-/14@20711f65, store:-/3@cd31c995, foot:3@fb973c1e, auth:-/1@f39d17e5", " 25 call bytes_new_from_slice(1723)": "cpu:4099767, auth:-/-", @@ -33,7 +33,7 @@ " 31 call create_contract(Address(obj#33), Bytes(obj#31), Bytes(obj#35))": "", " 32 call obj_cmp(Address(obj#37), Address(obj#33))": "cpu:6099975, mem:3957356, objs:-/19@51e48355, auth:1@cbbd7837/-", " 33 ret obj_cmp -> Ok(0)": "cpu:6100661", - " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@a4cf6e03", + " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@47f29939", " 35 ret get_ledger_network_id -> Ok(Bytes(obj#39))": "cpu:6103816, mem:3957468, objs:-/20@81732572", " 36 ret create_contract -> Ok(Address(obj#41))": "cpu:6144911, mem:3959346, objs:-/21@69ad5c25, store:-/4@b3a15027, foot:4@fa0f6bfc, auth:-/1@f7095008", " 37 call bytes_new_from_slice(1723)": "cpu:6145166, auth:-/-", @@ -45,7 +45,7 @@ " 43 call create_contract(Address(obj#47), Bytes(obj#45), Bytes(obj#49))": "", " 44 call obj_cmp(Address(obj#51), Address(obj#47))": "cpu:8145395, mem:5277150, objs:-/26@a092b5f, auth:1@67261b2f/-", " 45 ret obj_cmp -> Ok(0)": "cpu:8146081", - " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@11a86388", + " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@24809fc3", " 47 ret get_ledger_network_id -> Ok(Bytes(obj#53))": "cpu:8149236, mem:5277262, objs:-/27@a7bff74e", " 48 ret create_contract -> Ok(Address(obj#55))": "cpu:8197003, mem:5279326, objs:-/28@9670d0cc, store:-/5@58e9c9eb, foot:5@81d1a3bf, auth:-/1@83ee389", " 49 call bytes_new_from_slice(1723)": "cpu:8197258, auth:-/-", @@ -57,7 +57,7 @@ " 55 call create_contract(Address(obj#61), Bytes(obj#59), Bytes(obj#63))": "", " 56 call obj_cmp(Address(obj#65), Address(obj#61))": "cpu:10197487, mem:6597130, objs:-/33@9dddfe41, auth:1@2aa08219/-", " 57 ret obj_cmp -> Ok(0)": "cpu:10198173", - " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@c0063591", + " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@63a8e160", " 59 ret get_ledger_network_id -> Ok(Bytes(obj#67))": "cpu:10201328, mem:6597242, objs:-/34@6254c4ce", " 60 ret create_contract -> Ok(Address(obj#69))": "cpu:10249147, mem:6599492, objs:-/35@be977224, store:-/6@889e1830, foot:6@364e4b9c, auth:-/1@47f4d18a", " 61 call bytes_new_from_slice(1723)": "cpu:10249402, auth:-/-", @@ -69,7 +69,7 @@ " 67 call create_contract(Address(obj#75), Bytes(obj#73), Bytes(obj#77))": "", " 68 call obj_cmp(Address(obj#79), Address(obj#75))": "cpu:12249631, mem:7917296, objs:-/40@2f55f569, auth:1@e8341f65/-", " 69 ret obj_cmp -> Ok(0)": "cpu:12250317", - " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@ebc115d9", + " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@9c248d", " 71 ret get_ledger_network_id -> Ok(Bytes(obj#81))": "cpu:12253472, mem:7917408, objs:-/41@b3ed0b57", " 72 ret create_contract -> Ok(Address(obj#83))": "cpu:12303367, mem:7919844, objs:-/42@cd5ce2c6, store:-/7@b061db62, foot:7@9320c72c, auth:-/1@1b3d937c", " 73 call bytes_new_from_slice(1723)": "cpu:12303622, auth:-/-", @@ -81,7 +81,7 @@ " 79 call create_contract(Address(obj#89), Bytes(obj#87), Bytes(obj#91))": "", " 80 call obj_cmp(Address(obj#93), Address(obj#89))": "cpu:14303851, mem:9237648, objs:-/47@92c2cfa5, auth:1@b20998ae/-", " 81 ret obj_cmp -> Ok(0)": "cpu:14304537", - " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@59dea197", + " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@f80b6a67", " 83 ret get_ledger_network_id -> Ok(Bytes(obj#95))": "cpu:14307692, mem:9237760, objs:-/48@149b423f", " 84 ret create_contract -> Ok(Address(obj#97))": "cpu:14358717, mem:9240382, objs:-/49@3bf0a33b, store:-/8@786ebbf2, foot:8@ee264d76, auth:-/1@221f74c6", " 85 call bytes_new_from_slice(1723)": "cpu:14358972, auth:-/-", @@ -93,7 +93,7 @@ " 91 call create_contract(Address(obj#103), Bytes(obj#101), Bytes(obj#105))": "", " 92 call obj_cmp(Address(obj#107), Address(obj#103))": "cpu:16359220, mem:10558186, objs:-/54@da02b960, auth:1@48d6a5b6/-", " 93 ret obj_cmp -> Ok(0)": "cpu:16359906", - " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@219d787c", + " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@81156bb8", " 95 ret get_ledger_network_id -> Ok(Bytes(obj#109))": "cpu:16363061, mem:10558298, objs:-/55@bb3ae225", " 96 ret create_contract -> Ok(Address(obj#111))": "cpu:16412374, mem:10561106, objs:-/56@51ce6ca1, store:-/9@f38d0f95, foot:9@5c828c77, auth:-/1@a42343f5", " 97 call bytes_new_from_slice(1723)": "cpu:16412629, auth:-/-", @@ -105,7 +105,7 @@ " 103 call create_contract(Address(obj#117), Bytes(obj#115), Bytes(obj#119))": "", " 104 call obj_cmp(Address(obj#121), Address(obj#117))": "cpu:18412877, mem:11878910, objs:-/61@61c34d4e, auth:1@f96e0eaf/-", " 105 ret obj_cmp -> Ok(0)": "cpu:18413563", - " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@cc6b59fa", + " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@8cefe257", " 107 ret get_ledger_network_id -> Ok(Bytes(obj#123))": "cpu:18416718, mem:11879022, objs:-/62@99cabf3b", " 108 ret create_contract -> Ok(Address(obj#125))": "cpu:18472685, mem:11882016, objs:-/63@7f4b322d, store:-/10@ef434c8d, foot:10@317c61e3, auth:-/1@d0418fbc", " 109 call bytes_new_from_slice(1723)": "cpu:18472940, auth:-/-", @@ -117,7 +117,7 @@ " 115 call create_contract(Address(obj#131), Bytes(obj#129), Bytes(obj#133))": "", " 116 call obj_cmp(Address(obj#135), Address(obj#131))": "cpu:20473188, mem:13199820, objs:-/68@7f9f7f94, auth:1@5cc0479e/-", " 117 ret obj_cmp -> Ok(0)": "cpu:20473874", - " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@b017d899", + " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@d336881f", " 119 ret get_ledger_network_id -> Ok(Bytes(obj#137))": "cpu:20477029, mem:13199932, objs:-/69@80e69e15", " 120 ret create_contract -> Ok(Address(obj#139))": "cpu:20534058, mem:13203112, objs:-/70@1ab41456, store:-/11@e6b97191, foot:11@bd373101, auth:-/1@6fd7cdbe", " 121 call bytes_new_from_slice(1723)": "cpu:20534313, auth:-/-", @@ -129,7 +129,7 @@ " 127 call create_contract(Address(obj#145), Bytes(obj#143), Bytes(obj#147))": "", " 128 call obj_cmp(Address(obj#149), Address(obj#145))": "cpu:22534561, mem:14520916, objs:-/75@942af2dd, auth:1@4d46cea6/-", " 129 ret obj_cmp -> Ok(0)": "cpu:22535247", - " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@c791f0c8", + " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@7324855f", " 131 ret get_ledger_network_id -> Ok(Bytes(obj#151))": "cpu:22538402, mem:14521028, objs:-/76@f11550b8", " 132 ret create_contract -> Ok(Address(obj#153))": "cpu:22596497, mem:14524394, objs:-/77@9f3fd10e, store:-/12@7c2f9ba3, foot:12@35d2fc7a, auth:-/1@3eabf35c", " 133 call bytes_new_from_slice(1723)": "cpu:22596752, auth:-/-", @@ -141,7 +141,7 @@ " 139 call create_contract(Address(obj#159), Bytes(obj#157), Bytes(obj#161))": "", " 140 call obj_cmp(Address(obj#163), Address(obj#159))": "cpu:24597000, mem:15842198, objs:-/82@21bbc84c, auth:1@9e1b78d/-", " 141 ret obj_cmp -> Ok(0)": "cpu:24597686", - " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@6f759f1a", + " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@44fbf6bc", " 143 ret get_ledger_network_id -> Ok(Bytes(obj#165))": "cpu:24600841, mem:15842310, objs:-/83@e08739a8", " 144 ret create_contract -> Ok(Address(obj#167))": "cpu:24659996, mem:15845862, objs:-/84@ae4d6e4e, store:-/13@2b941c36, foot:13@62a1620d, auth:-/1@aee68f92", " 145 call bytes_new_from_slice(1723)": "cpu:24660251, auth:-/-", @@ -153,7 +153,7 @@ " 151 call create_contract(Address(obj#173), Bytes(obj#171), Bytes(obj#175))": "", " 152 call obj_cmp(Address(obj#177), Address(obj#173))": "cpu:26660499, mem:17163666, objs:-/89@5858b5f0, auth:1@445de93b/-", " 153 ret obj_cmp -> Ok(0)": "cpu:26661185", - " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@3ba9ffd2", + " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@ca57c8bc", " 155 ret get_ledger_network_id -> Ok(Bytes(obj#179))": "cpu:26664340, mem:17163778, objs:-/90@5826fb63", " 156 ret create_contract -> Ok(Address(obj#181))": "cpu:26722783, mem:17167516, objs:-/91@cd1cc65f, store:-/14@c33862ef, foot:14@4ba8b225, auth:-/1@617a1eda", " 157 call bytes_new_from_slice(1723)": "cpu:26723038, auth:-/-", @@ -165,7 +165,7 @@ " 163 call create_contract(Address(obj#187), Bytes(obj#185), Bytes(obj#189))": "", " 164 call obj_cmp(Address(obj#191), Address(obj#187))": "cpu:28723286, mem:18485320, objs:-/96@d11f253b, auth:1@225cfc41/-", " 165 ret obj_cmp -> Ok(0)": "cpu:28723972", - " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@2cc903b5", + " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@a1637ff7", " 167 ret get_ledger_network_id -> Ok(Bytes(obj#193))": "cpu:28727127, mem:18485432, objs:-/97@dd3834b9", " 168 ret create_contract -> Ok(Address(obj#195))": "cpu:28788408, mem:18489356, objs:-/98@ddc288ce, store:-/15@8f2e00df, foot:15@85a5128f, auth:-/1@84c703c7", " 169 call bytes_new_from_slice(1723)": "cpu:28788663, auth:-/-", @@ -177,7 +177,7 @@ " 175 call create_contract(Address(obj#201), Bytes(obj#199), Bytes(obj#203))": "", " 176 call obj_cmp(Address(obj#205), Address(obj#201))": "cpu:30788911, mem:19807160, objs:-/103@6ee6745e, auth:1@f8067266/-", " 177 ret obj_cmp -> Ok(0)": "cpu:30789597", - " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@1c1b5ee3", + " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@e817f19c", " 179 ret get_ledger_network_id -> Ok(Bytes(obj#207))": "cpu:30792752, mem:19807272, objs:-/104@da675632", " 180 ret create_contract -> Ok(Address(obj#209))": "cpu:30855171, mem:19811382, objs:-/105@3c250e80, store:-/16@56a18dab, foot:16@3031c757, auth:-/1@6c77c0c9", " 181 call bytes_new_from_slice(1723)": "cpu:30855426, auth:-/-", @@ -189,7 +189,7 @@ " 187 call create_contract(Address(obj#215), Bytes(obj#213), Bytes(obj#217))": "", " 188 call obj_cmp(Address(obj#219), Address(obj#215))": "cpu:32855695, mem:21129186, objs:-/110@3460445f, auth:1@6f395edd/-", " 189 ret obj_cmp -> Ok(0)": "cpu:32856381", - " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@d3530f4c", + " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@1357ae2d", " 191 ret get_ledger_network_id -> Ok(Bytes(obj#221))": "cpu:32859536, mem:21129298, objs:-/111@88602a33", " 192 ret create_contract -> Ok(Address(obj#223))": "cpu:32925835, mem:21133594, objs:-/112@1a30dd19, store:-/17@a1cdad8, foot:17@e114d7d6, auth:-/1@37251ff7", " 193 call bytes_new_from_slice(1723)": "cpu:32926090, auth:-/-", @@ -201,7 +201,7 @@ " 199 call create_contract(Address(obj#229), Bytes(obj#227), Bytes(obj#231))": "", " 200 call obj_cmp(Address(obj#233), Address(obj#229))": "cpu:34926359, mem:22451398, objs:-/117@f769caeb, auth:1@93079846/-", " 201 ret obj_cmp -> Ok(0)": "cpu:34927045", - " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@80a698b9", + " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@507bf132", " 203 ret get_ledger_network_id -> Ok(Bytes(obj#235))": "cpu:34930200, mem:22451510, objs:-/118@a79d010f", " 204 ret create_contract -> Ok(Address(obj#237))": "cpu:34991975, mem:22455992, objs:-/119@faf87716, store:-/18@284aadf3, foot:18@4481d0f6, auth:-/1@79adba34", " 205 call bytes_new_from_slice(1723)": "cpu:34992230, auth:-/-", @@ -213,7 +213,7 @@ " 211 call create_contract(Address(obj#243), Bytes(obj#241), Bytes(obj#245))": "", " 212 call obj_cmp(Address(obj#247), Address(obj#243))": "cpu:36992499, mem:23773796, objs:-/124@ddd780c4, auth:1@3e29297a/-", " 213 ret obj_cmp -> Ok(0)": "cpu:36993185", - " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@e22dec68", + " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@9a48546", " 215 ret get_ledger_network_id -> Ok(Bytes(obj#249))": "cpu:36996340, mem:23773908, objs:-/125@510120e0", " 216 ret create_contract -> Ok(Address(obj#251))": "cpu:37060193, mem:23778576, objs:-/126@c484c412, store:-/19@5d26a578, foot:19@fbbb733f, auth:-/1@43f44fbb", " 217 call bytes_new_from_slice(1723)": "cpu:37060448, auth:-/-", @@ -225,7 +225,7 @@ " 223 call create_contract(Address(obj#257), Bytes(obj#255), Bytes(obj#259))": "", " 224 call obj_cmp(Address(obj#261), Address(obj#257))": "cpu:39060717, mem:25096380, objs:-/131@e4c001b6, auth:1@399056d1/-", " 225 ret obj_cmp -> Ok(0)": "cpu:39061403", - " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@fc1a6912", + " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@20d8425c", " 227 ret get_ledger_network_id -> Ok(Bytes(obj#263))": "cpu:39064558, mem:25096492, objs:-/132@18805d31", " 228 ret create_contract -> Ok(Address(obj#265))": "cpu:39131253, mem:25101346, objs:-/133@daaee86c, store:-/20@6d147ad1, foot:20@f939d50c, auth:-/1@a9273ecb", " 229 call bytes_new_from_slice(1723)": "cpu:39131508, auth:-/-", @@ -237,7 +237,7 @@ " 235 call create_contract(Address(obj#271), Bytes(obj#269), Bytes(obj#273))": "", " 236 call obj_cmp(Address(obj#275), Address(obj#271))": "cpu:41131777, mem:26419150, objs:-/138@8a39b9a5, auth:1@aea0b0c0/-", " 237 ret obj_cmp -> Ok(0)": "cpu:41132463", - " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@f1da0dd5", + " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@e3b3557c", " 239 ret get_ledger_network_id -> Ok(Bytes(obj#277))": "cpu:41135618, mem:26419262, objs:-/139@ce76e6fb", " 240 ret create_contract -> Ok(Address(obj#279))": "cpu:41205155, mem:26424302, objs:-/140@737416ce, store:-/21@cac04bf9, foot:21@435f9792, auth:-/1@48a20b51", " 241 call bytes_new_from_slice(1723)": "cpu:41205410, auth:-/-", @@ -249,7 +249,7 @@ " 247 call create_contract(Address(obj#285), Bytes(obj#283), Bytes(obj#287))": "", " 248 call obj_cmp(Address(obj#289), Address(obj#285))": "cpu:43205679, mem:27742106, objs:-/145@74331567, auth:1@330b1c67/-", " 249 ret obj_cmp -> Ok(0)": "cpu:43206365", - " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@9a165117", + " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@c480bd80", " 251 ret get_ledger_network_id -> Ok(Bytes(obj#291))": "cpu:43209520, mem:27742218, objs:-/146@d168c7a7", " 252 ret create_contract -> Ok(Address(obj#293))": "cpu:43278343, mem:27747444, objs:-/147@16f6005c, store:-/22@33195a82, foot:22@b33a0417, auth:-/1@b7d59a15", " 253 call bytes_new_from_slice(1723)": "cpu:43278598, auth:-/-", @@ -261,7 +261,7 @@ " 259 call create_contract(Address(obj#299), Bytes(obj#297), Bytes(obj#301))": "", " 260 call obj_cmp(Address(obj#303), Address(obj#299))": "cpu:45278867, mem:29065248, objs:-/152@e53b83e3, auth:1@785996a7/-", " 261 ret obj_cmp -> Ok(0)": "cpu:45279553", - " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@fe7b423e", + " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@7f8bbf70", " 263 ret get_ledger_network_id -> Ok(Bytes(obj#305))": "cpu:45282708, mem:29065360, objs:-/153@9f17ddc6", " 264 ret create_contract -> Ok(Address(obj#307))": "cpu:45355387, mem:29070772, objs:-/154@cf228652, store:-/23@300f245c, foot:23@27540f12, auth:-/1@cefa2a75", " 265 call bytes_new_from_slice(1723)": "cpu:45355642, auth:-/-", @@ -273,7 +273,7 @@ " 271 call create_contract(Address(obj#313), Bytes(obj#311), Bytes(obj#315))": "", " 272 call obj_cmp(Address(obj#317), Address(obj#313))": "cpu:47355911, mem:30388576, objs:-/159@63a78bd4, auth:1@da0afee7/-", " 273 ret obj_cmp -> Ok(0)": "cpu:47356597", - " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@9dbef6d4", + " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@6aa8b510", " 275 ret get_ledger_network_id -> Ok(Bytes(obj#319))": "cpu:47359752, mem:30388688, objs:-/160@4af09aee", " 276 ret create_contract -> Ok(Address(obj#321))": "cpu:47430705, mem:30394286, objs:-/161@92ee88ed, store:-/24@101e4564, foot:24@c9aaea41, auth:-/1@84386fec", " 277 call bytes_new_from_slice(1723)": "cpu:47430960, auth:-/-", @@ -285,7 +285,7 @@ " 283 call create_contract(Address(obj#327), Bytes(obj#325), Bytes(obj#329))": "", " 284 call obj_cmp(Address(obj#331), Address(obj#327))": "cpu:49431229, mem:31712090, objs:-/166@7fccca03, auth:1@aa9fae3a/-", " 285 ret obj_cmp -> Ok(0)": "cpu:49431915", - " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@f33a894d", + " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@d871ba2c", " 287 ret get_ledger_network_id -> Ok(Bytes(obj#333))": "cpu:49435070, mem:31712202, objs:-/167@a32ae8a9", " 288 ret create_contract -> Ok(Address(obj#335))": "cpu:49509879, mem:31717986, objs:-/168@2aafa42f, store:-/25@8e92a30e, foot:25@3b46cff6, auth:-/1@96704b35", " 289 call bytes_new_from_slice(1723)": "cpu:49510134, auth:-/-", @@ -297,7 +297,7 @@ " 295 call create_contract(Address(obj#341), Bytes(obj#339), Bytes(obj#343))": "", " 296 call obj_cmp(Address(obj#345), Address(obj#341))": "cpu:51510403, mem:33035790, objs:-/173@81268679, auth:1@3dec2490/-", " 297 ret obj_cmp -> Ok(0)": "cpu:51511089", - " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@71ebc84a", + " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@121df96c", " 299 ret get_ledger_network_id -> Ok(Bytes(obj#347))": "cpu:51514244, mem:33035902, objs:-/174@86b62e4b", " 300 ret create_contract -> Ok(Address(obj#349))": "cpu:51590119, mem:33041872, objs:-/175@1dabe68a, store:-/26@f151c33b, foot:26@1cf63df0, auth:-/1@302de960", " 301 call bytes_new_from_slice(1723)": "cpu:51590374, auth:-/-", @@ -309,7 +309,7 @@ " 307 call create_contract(Address(obj#355), Bytes(obj#353), Bytes(obj#357))": "", " 308 call obj_cmp(Address(obj#359), Address(obj#355))": "cpu:53590643, mem:34359676, objs:-/180@8b3d9cc8, auth:1@6b4de48e/-", " 309 ret obj_cmp -> Ok(0)": "cpu:53591329", - " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@e71ff6d6", + " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@3202ab93", " 311 ret get_ledger_network_id -> Ok(Bytes(obj#361))": "cpu:53594484, mem:34359788, objs:-/181@7d2def3b", " 312 ret create_contract -> Ok(Address(obj#363))": "cpu:53671421, mem:34365944, objs:-/182@4ac4bd9e, store:-/27@8340ee6d, foot:27@fba9c4de, auth:-/1@95751d48", " 313 call bytes_new_from_slice(1723)": "cpu:53671676, auth:-/-", @@ -321,7 +321,7 @@ " 319 call create_contract(Address(obj#369), Bytes(obj#367), Bytes(obj#371))": "", " 320 call obj_cmp(Address(obj#373), Address(obj#369))": "cpu:55671945, mem:35683748, objs:-/187@41f59b8a, auth:1@6b4c8d3e/-", " 321 ret obj_cmp -> Ok(0)": "cpu:55672631", - " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@1287fb5c", + " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@a8b01321", " 323 ret get_ledger_network_id -> Ok(Bytes(obj#375))": "cpu:55675786, mem:35683860, objs:-/188@acf77cba", " 324 ret create_contract -> Ok(Address(obj#377))": "cpu:55753787, mem:35690202, objs:-/189@4ae78034, store:-/28@fb432119, foot:28@dbaee220, auth:-/1@ebc38f0b", " 325 call bytes_new_from_slice(1723)": "cpu:55754042, auth:-/-", @@ -333,7 +333,7 @@ " 331 call create_contract(Address(obj#383), Bytes(obj#381), Bytes(obj#385))": "", " 332 call obj_cmp(Address(obj#387), Address(obj#383))": "cpu:57754311, mem:37008006, objs:-/194@41937dac, auth:1@6a2c4396/-", " 333 ret obj_cmp -> Ok(0)": "cpu:57754997", - " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@6e63ce88", + " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@d85d3c27", " 335 ret get_ledger_network_id -> Ok(Bytes(obj#389))": "cpu:57758152, mem:37008118, objs:-/195@c7b31bd4", " 336 ret create_contract -> Ok(Address(obj#391))": "cpu:57833659, mem:37014646, objs:-/196@630be1a, store:-/29@f2b2ba33, foot:29@86207dba, auth:-/1@8030be25", " 337 call bytes_new_from_slice(1723)": "cpu:57833914, auth:-/-", @@ -345,7 +345,7 @@ " 343 call create_contract(Address(obj#397), Bytes(obj#395), Bytes(obj#399))": "", " 344 call obj_cmp(Address(obj#401), Address(obj#397))": "cpu:59834183, mem:38332450, objs:-/201@e7013f13, auth:1@efff116e/-", " 345 ret obj_cmp -> Ok(0)": "cpu:59834869", - " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@717266a3", + " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@6b349df9", " 347 ret get_ledger_network_id -> Ok(Bytes(obj#403))": "cpu:59838024, mem:38332562, objs:-/202@b6091744", " 348 ret create_contract -> Ok(Address(obj#405))": "cpu:59918151, mem:38339276, objs:-/203@fcd408de, store:-/30@7b349abd, foot:30@39863402, auth:-/1@eed4bb1e", " 349 call bytes_new_from_slice(1723)": "cpu:59918406, auth:-/-", @@ -357,7 +357,7 @@ " 355 call create_contract(Address(obj#411), Bytes(obj#409), Bytes(obj#413))": "", " 356 call obj_cmp(Address(obj#415), Address(obj#411))": "cpu:61918675, mem:39657080, objs:-/208@bef8f250, auth:1@4d2b336a/-", " 357 ret obj_cmp -> Ok(0)": "cpu:61919361", - " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@c6b91a0a", + " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@74393111", " 359 ret get_ledger_network_id -> Ok(Bytes(obj#417))": "cpu:61922516, mem:39657192, objs:-/209@5a6a7d5d", " 360 ret create_contract -> Ok(Address(obj#419))": "cpu:62001929, mem:39664092, objs:-/210@1ac1704e, store:-/31@4fa3e91b, foot:31@305062e7, auth:-/1@7a19b357", " 361 call bytes_new_from_slice(1723)": "cpu:62002184, auth:-/-", @@ -369,7 +369,7 @@ " 367 call create_contract(Address(obj#425), Bytes(obj#423), Bytes(obj#427))": "", " 368 call obj_cmp(Address(obj#429), Address(obj#425))": "cpu:64002453, mem:40981896, objs:-/215@a1746993, auth:1@f7013137/-", " 369 ret obj_cmp -> Ok(0)": "cpu:64003139", - " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@1c77542", + " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@53b8d019", " 371 ret get_ledger_network_id -> Ok(Bytes(obj#431))": "cpu:64006294, mem:40982008, objs:-/216@cf95d889", " 372 ret create_contract -> Ok(Address(obj#433))": "cpu:64088615, mem:40989094, objs:-/217@99f04015, store:-/32@3ddbcca8, foot:32@e907b904, auth:-/1@ef6b177", " 373 call bytes_new_from_slice(1723)": "cpu:64088870, auth:-/-", @@ -381,7 +381,7 @@ " 379 call create_contract(Address(obj#439), Bytes(obj#437), Bytes(obj#441))": "", " 380 call obj_cmp(Address(obj#443), Address(obj#439))": "cpu:66089158, mem:42306898, objs:-/222@9918a39f, auth:1@da3c47d1/-", " 381 ret obj_cmp -> Ok(0)": "cpu:66089844", - " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@2b4da665", + " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@738bcb6e", " 383 ret get_ledger_network_id -> Ok(Bytes(obj#445))": "cpu:66092999, mem:42307010, objs:-/223@f5510b1", " 384 ret create_contract -> Ok(Address(obj#447))": "cpu:66176402, mem:42314282, objs:-/224@29135409, store:-/33@3da44f4f, foot:33@76d72a8d, auth:-/1@d0c5ccbe", " 385 call bytes_new_from_slice(1723)": "cpu:66176657, auth:-/-", @@ -393,7 +393,7 @@ " 391 call create_contract(Address(obj#453), Bytes(obj#451), Bytes(obj#455))": "", " 392 call obj_cmp(Address(obj#457), Address(obj#453))": "cpu:68176945, mem:43632086, objs:-/229@843f1f78, auth:1@fe39debc/-", " 393 ret obj_cmp -> Ok(0)": "cpu:68177631", - " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@7ae07493", + " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@cf888e58", " 395 ret get_ledger_network_id -> Ok(Bytes(obj#459))": "cpu:68180786, mem:43632198, objs:-/230@87253b5a", " 396 ret create_contract -> Ok(Address(obj#461))": "cpu:68263477, mem:43639656, objs:-/231@dfe2f621, store:-/34@26269e2a, foot:34@db6f722c, auth:-/1@c5425e98", " 397 call bytes_new_from_slice(1723)": "cpu:68263732, auth:-/-", @@ -405,7 +405,7 @@ " 403 call create_contract(Address(obj#467), Bytes(obj#465), Bytes(obj#469))": "", " 404 call obj_cmp(Address(obj#471), Address(obj#467))": "cpu:70264020, mem:44957460, objs:-/236@8e491acb, auth:1@8758e2be/-", " 405 ret obj_cmp -> Ok(0)": "cpu:70264706", - " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@402732e1", + " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@653e6cb8", " 407 ret get_ledger_network_id -> Ok(Bytes(obj#473))": "cpu:70267861, mem:44957572, objs:-/237@e891750f", " 408 ret create_contract -> Ok(Address(obj#475))": "cpu:70354406, mem:44965216, objs:-/238@3c9f9d08, store:-/35@be282ec7, foot:35@ad713040, auth:-/1@c2518348", " 409 call bytes_new_from_slice(1723)": "cpu:70354661, auth:-/-", @@ -417,7 +417,7 @@ " 415 call create_contract(Address(obj#481), Bytes(obj#479), Bytes(obj#483))": "", " 416 call obj_cmp(Address(obj#485), Address(obj#481))": "cpu:72354949, mem:46283020, objs:-/243@f3039fd5, auth:1@7b318976/-", " 417 ret obj_cmp -> Ok(0)": "cpu:72355635", - " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@1e553952", + " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@c257e53", " 419 ret get_ledger_network_id -> Ok(Bytes(obj#487))": "cpu:72358790, mem:46283132, objs:-/244@cdf88cce", " 420 ret create_contract -> Ok(Address(obj#489))": "cpu:72445387, mem:46290962, objs:-/245@cd6fd0a6, store:-/36@e78fd4ec, foot:36@8d6c62c1, auth:-/1@9be18b7d", " 421 call bytes_new_from_slice(1723)": "cpu:72445642, auth:-/-", @@ -429,7 +429,7 @@ " 427 call create_contract(Address(obj#495), Bytes(obj#493), Bytes(obj#497))": "", " 428 call obj_cmp(Address(obj#499), Address(obj#495))": "cpu:74445930, mem:47608766, objs:-/250@22bd910b, auth:1@740ab5ad/-", " 429 ret obj_cmp -> Ok(0)": "cpu:74446616", - " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@df062d8f", + " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@69a0652", " 431 ret get_ledger_network_id -> Ok(Bytes(obj#501))": "cpu:74449771, mem:47608878, objs:-/251@d6b7a9b4", " 432 ret create_contract -> Ok(Address(obj#503))": "cpu:74535650, mem:47616894, objs:-/252@d5487903, store:-/37@fc568a97, foot:37@409c33df, auth:-/1@d536b686", " 433 call bytes_new_from_slice(1723)": "cpu:74535905, auth:-/-", @@ -441,7 +441,7 @@ " 439 call create_contract(Address(obj#509), Bytes(obj#507), Bytes(obj#511))": "", " 440 call obj_cmp(Address(obj#513), Address(obj#509))": "cpu:76536193, mem:48934698, objs:-/257@2c83362e, auth:1@3a400b33/-", " 441 ret obj_cmp -> Ok(0)": "cpu:76536879", - " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@7fd0cf57", + " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@4a2d81a0", " 443 ret get_ledger_network_id -> Ok(Bytes(obj#515))": "cpu:76540034, mem:48934810, objs:-/258@ac579d6d", " 444 ret create_contract -> Ok(Address(obj#517))": "cpu:76628757, mem:48943012, objs:-/259@73d4502, store:-/38@2603f041, foot:38@4169d237, auth:-/1@39e1337c", " 445 call bytes_new_from_slice(1723)": "cpu:76629012, auth:-/-", @@ -453,7 +453,7 @@ " 451 call create_contract(Address(obj#523), Bytes(obj#521), Bytes(obj#525))": "", " 452 call obj_cmp(Address(obj#527), Address(obj#523))": "cpu:78629300, mem:50260816, objs:-/264@e1d329e1, auth:1@26e06ff6/-", " 453 ret obj_cmp -> Ok(0)": "cpu:78629986", - " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@17ee9ef3", + " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@b06070a3", " 455 ret get_ledger_network_id -> Ok(Bytes(obj#529))": "cpu:78633141, mem:50260928, objs:-/265@bafd1a98", " 456 ret create_contract -> Ok(Address(obj#531))": "cpu:78725718, mem:50269316, objs:-/266@1b9213fc, store:-/39@b90d28c3, foot:39@d7e7d033, auth:-/1@b133ac19", " 457 call bytes_new_from_slice(1723)": "cpu:78725973, auth:-/-", @@ -465,7 +465,7 @@ " 463 call create_contract(Address(obj#537), Bytes(obj#535), Bytes(obj#539))": "", " 464 call obj_cmp(Address(obj#541), Address(obj#537))": "cpu:80726261, mem:51587120, objs:-/271@24ad366e, auth:1@b368d5a8/-", " 465 ret obj_cmp -> Ok(0)": "cpu:80726947", - " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@7a22d694", + " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@abb50537", " 467 ret get_ledger_network_id -> Ok(Bytes(obj#543))": "cpu:80730102, mem:51587232, objs:-/272@879628e2", " 468 ret create_contract -> Ok(Address(obj#545))": "cpu:80820955, mem:51595806, objs:-/273@d183d07c, store:-/40@8c6440e7, foot:40@4583666c, auth:-/1@7e5706f4", " 469 call bytes_new_from_slice(1723)": "cpu:80821210, auth:-/-", @@ -477,7 +477,7 @@ " 475 call create_contract(Address(obj#551), Bytes(obj#549), Bytes(obj#553))": "", " 476 call obj_cmp(Address(obj#555), Address(obj#551))": "cpu:82821498, mem:52913610, objs:-/278@7e43461c, auth:1@5ff13591/-", " 477 ret obj_cmp -> Ok(0)": "cpu:82822184", - " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@bb660b30", + " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@ef99d99e", " 479 ret get_ledger_network_id -> Ok(Bytes(obj#557))": "cpu:82825339, mem:52913722, objs:-/279@7d5b5e82", " 480 ret create_contract -> Ok(Address(obj#559))": "cpu:82917254, mem:52922482, objs:-/280@a2539e9f, store:-/41@f828b437, foot:41@fe76eb0e, auth:-/1@c3116c2e", " 481 call bytes_new_from_slice(1723)": "cpu:82917509, auth:-/-", @@ -489,7 +489,7 @@ " 487 call create_contract(Address(obj#565), Bytes(obj#563), Bytes(obj#567))": "", " 488 call obj_cmp(Address(obj#569), Address(obj#565))": "cpu:84917797, mem:54240286, objs:-/285@27a76f48, auth:1@6bc42dbe/-", " 489 ret obj_cmp -> Ok(0)": "cpu:84918483", - " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@8487d51b", + " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@350fe930", " 491 ret get_ledger_network_id -> Ok(Bytes(obj#571))": "cpu:84921638, mem:54240398, objs:-/286@604a8064", " 492 ret create_contract -> Ok(Address(obj#573))": "cpu:85014619, mem:54249344, objs:-/287@5335059f, store:-/42@29905e2d, foot:42@331e35d, auth:-/1@fcc81056", " 493 call bytes_new_from_slice(1723)": "cpu:85014874, auth:-/-", @@ -501,7 +501,7 @@ " 499 call create_contract(Address(obj#579), Bytes(obj#577), Bytes(obj#581))": "", " 500 call obj_cmp(Address(obj#583), Address(obj#579))": "cpu:87015162, mem:55567148, objs:-/292@cae8baf1, auth:1@192a37a7/-", " 501 ret obj_cmp -> Ok(0)": "cpu:87015848", - " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@d0cf342a", + " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@92f90a5c", " 503 ret get_ledger_network_id -> Ok(Bytes(obj#585))": "cpu:87019003, mem:55567260, objs:-/293@e43c78b4", " 504 ret create_contract -> Ok(Address(obj#587))": "cpu:87113044, mem:55576392, objs:-/294@bb1ddf18, store:-/43@914b7ccb, foot:43@41d98300, auth:-/1@9dd1b742", " 505 call bytes_new_from_slice(1723)": "cpu:87113299, auth:-/-", @@ -513,7 +513,7 @@ " 511 call create_contract(Address(obj#593), Bytes(obj#591), Bytes(obj#595))": "", " 512 call obj_cmp(Address(obj#597), Address(obj#593))": "cpu:89113587, mem:56894196, objs:-/299@cff36272, auth:1@bac1ba08/-", " 513 ret obj_cmp -> Ok(0)": "cpu:89114273", - " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@ab3f6665", + " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@520c643c", " 515 ret get_ledger_network_id -> Ok(Bytes(obj#599))": "cpu:89117428, mem:56894308, objs:-/300@dd09814f", " 516 ret create_contract -> Ok(Address(obj#601))": "cpu:89212535, mem:56903626, objs:-/301@244f82de, store:-/44@49506f31, foot:44@6bc1feec, auth:-/1@3ecbcd12", " 517 call bytes_new_from_slice(1723)": "cpu:89212790, auth:-/-", @@ -525,7 +525,7 @@ " 523 call create_contract(Address(obj#607), Bytes(obj#605), Bytes(obj#609))": "", " 524 call obj_cmp(Address(obj#611), Address(obj#607))": "cpu:91213078, mem:58221430, objs:-/306@51507416, auth:1@f4a38780/-", " 525 ret obj_cmp -> Ok(0)": "cpu:91213764", - " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@60fa77e0", + " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@fc522799", " 527 ret get_ledger_network_id -> Ok(Bytes(obj#613))": "cpu:91216919, mem:58221542, objs:-/307@eba2c5b2", " 528 ret create_contract -> Ok(Address(obj#615))": "cpu:91313086, mem:58231046, objs:-/308@367c7d43, store:-/45@c8a84a2, foot:45@358c3f92, auth:-/1@d6eec3a9", " 529 call bytes_new_from_slice(1723)": "cpu:91313341, auth:-/-", @@ -537,7 +537,7 @@ " 535 call create_contract(Address(obj#621), Bytes(obj#619), Bytes(obj#623))": "", " 536 call obj_cmp(Address(obj#625), Address(obj#621))": "cpu:93313629, mem:59548850, objs:-/313@f39fd860, auth:1@5cc394d/-", " 537 ret obj_cmp -> Ok(0)": "cpu:93314315", - " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@aff33b6b", + " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@73031a22", " 539 ret get_ledger_network_id -> Ok(Bytes(obj#627))": "cpu:93317470, mem:59548962, objs:-/314@e817a34d", " 540 ret create_contract -> Ok(Address(obj#629))": "cpu:93417497, mem:59558652, objs:-/315@3c670094, store:-/46@d1e3723, foot:46@8fe6169d, auth:-/1@a662faf6", " 541 call bytes_new_from_slice(1723)": "cpu:93417752, auth:-/-", @@ -549,7 +549,7 @@ " 547 call create_contract(Address(obj#635), Bytes(obj#633), Bytes(obj#637))": "", " 548 call obj_cmp(Address(obj#639), Address(obj#635))": "cpu:95418040, mem:60876456, objs:-/320@8e0c4b9b, auth:1@406c1dae/-", " 549 ret obj_cmp -> Ok(0)": "cpu:95418726", - " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@6600dac1", + " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@62235096", " 551 ret get_ledger_network_id -> Ok(Bytes(obj#641))": "cpu:95421881, mem:60876568, objs:-/321@3ae1b4", " 552 ret create_contract -> Ok(Address(obj#643))": "cpu:95514842, mem:60886444, objs:-/322@56ee1b71, store:-/47@df16bbd0, foot:47@3fc83862, auth:-/1@fc69475c", " 553 call bytes_new_from_slice(1723)": "cpu:95515097, auth:-/-", @@ -561,7 +561,7 @@ " 559 call create_contract(Address(obj#649), Bytes(obj#647), Bytes(obj#651))": "", " 560 call obj_cmp(Address(obj#653), Address(obj#649))": "cpu:97515385, mem:62204248, objs:-/327@c9706ded, auth:1@8c26c31b/-", " 561 ret obj_cmp -> Ok(0)": "cpu:97516071", - " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@529ff575", + " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@205f6fb4", " 563 ret get_ledger_network_id -> Ok(Bytes(obj#655))": "cpu:97519226, mem:62204360, objs:-/328@bf53726d", " 564 ret create_contract -> Ok(Address(obj#657))": "cpu:97621385, mem:62214422, objs:-/329@db413350, store:-/48@51de1218, foot:48@556cb318, auth:-/1@25a9c327", " 565 call bytes_new_from_slice(1723)": "cpu:97621640, auth:-/-", @@ -573,7 +573,7 @@ " 571 call create_contract(Address(obj#663), Bytes(obj#661), Bytes(obj#665))": "", " 572 call obj_cmp(Address(obj#667), Address(obj#663))": "cpu:99621928, mem:63532226, objs:-/334@f4f8f41b, auth:1@1fa181ba/-", " 573 ret obj_cmp -> Ok(0)": "cpu:99622614", - " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@cbc29ba9", + " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@9d22f9ed", " 575 ret get_ledger_network_id -> Ok(Bytes(obj#669))": "cpu:99625769, mem:63532338, objs:-/335@237761d2", " 576 ret create_contract -> Ok(Address(obj#671))": "cpu:99726196, mem:63542586, objs:-/336@fa034a59, store:-/49@ea935b52, foot:49@de5dfae4, auth:-/1@ab48dad3", " 577 call bytes_new_from_slice(1723)": "cpu:99726451, auth:-/-", @@ -585,7 +585,7 @@ " 583 call create_contract(Address(obj#677), Bytes(obj#675), Bytes(obj#679))": "", " 584 call obj_cmp(Address(obj#681), Address(obj#677))": "cpu:101726739, mem:64860390, objs:-/341@f9a83a38, auth:1@efefa99b/-", " 585 ret obj_cmp -> Ok(0)": "cpu:101727425", - " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2b02f498", + " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2329e92b", " 587 ret get_ledger_network_id -> Ok(Bytes(obj#683))": "cpu:101730580, mem:64860502, objs:-/342@d1ff7972", " 588 ret create_contract -> Ok(Address(obj#685))": "cpu:101833087, mem:64870936, objs:-/343@b5f757ec, store:-/50@4c522570, foot:50@a0637ff7, auth:-/1@33815c1a", " 589 call bytes_new_from_slice(1723)": "cpu:101833342, auth:-/-", @@ -597,7 +597,7 @@ " 595 call create_contract(Address(obj#691), Bytes(obj#689), Bytes(obj#693))": "", " 596 call obj_cmp(Address(obj#695), Address(obj#691))": "cpu:103833630, mem:66188740, objs:-/348@4f3b30b2, auth:1@a8fcf1a2/-", " 597 ret obj_cmp -> Ok(0)": "cpu:103834316", - " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@2b55c9b5", + " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@286b32d9", " 599 ret get_ledger_network_id -> Ok(Bytes(obj#697))": "cpu:103837471, mem:66188852, objs:-/349@d5de81fd", " 600 ret create_contract -> Ok(Address(obj#699))": "cpu:103942818, mem:66199472, objs:-/350@51dc4097, store:-/51@2ecebe32, foot:51@992b52e0, auth:-/1@62240125", " 601 call bytes_new_from_slice(1723)": "cpu:103943073, auth:-/-", @@ -609,7 +609,7 @@ " 607 call create_contract(Address(obj#705), Bytes(obj#703), Bytes(obj#707))": "", " 608 call obj_cmp(Address(obj#709), Address(obj#705))": "cpu:105943361, mem:67517276, objs:-/355@9a456a58, auth:1@df2dbab3/-", " 609 ret obj_cmp -> Ok(0)": "cpu:105944047", - " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@53ebc47d", + " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@9717cba0", " 611 ret get_ledger_network_id -> Ok(Bytes(obj#711))": "cpu:105947202, mem:67517388, objs:-/356@f6faf10c", " 612 ret create_contract -> Ok(Address(obj#713))": "cpu:106053615, mem:67528194, objs:-/357@8f3dfa45, store:-/52@3bc2289d, foot:52@a8174a77, auth:-/1@1ae2d9b9", " 613 call bytes_new_from_slice(1723)": "cpu:106053870, auth:-/-", @@ -621,7 +621,7 @@ " 619 call create_contract(Address(obj#719), Bytes(obj#717), Bytes(obj#721))": "", " 620 call obj_cmp(Address(obj#723), Address(obj#719))": "cpu:108054158, mem:68845998, objs:-/362@2c2a938, auth:1@e4e43523/-", " 621 ret obj_cmp -> Ok(0)": "cpu:108054844", - " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@633ca118", + " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@43fdac45", " 623 ret get_ledger_network_id -> Ok(Bytes(obj#725))": "cpu:108057999, mem:68846110, objs:-/363@a163628d", " 624 ret create_contract -> Ok(Address(obj#727))": "cpu:108162680, mem:68857102, objs:-/364@25c619f3, store:-/53@85418455, foot:53@755ca472, auth:-/1@7132248c", " 625 call bytes_new_from_slice(1723)": "cpu:108162935, auth:-/-", @@ -633,7 +633,7 @@ " 631 call create_contract(Address(obj#733), Bytes(obj#731), Bytes(obj#735))": "", " 632 call obj_cmp(Address(obj#737), Address(obj#733))": "cpu:110163223, mem:70174906, objs:-/369@346fee22, auth:1@a8468a5b/-", " 633 ret obj_cmp -> Ok(0)": "cpu:110163909", - " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@5f38f4b4", + " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@ac9afa98", " 635 ret get_ledger_network_id -> Ok(Bytes(obj#739))": "cpu:110167064, mem:70175018, objs:-/370@5f283fed", " 636 ret create_contract -> Ok(Address(obj#741))": "cpu:110273825, mem:70186196, objs:-/371@756dc3dc, store:-/54@d6df1dee, foot:54@6c9db746, auth:-/1@add7894e", " 637 call bytes_new_from_slice(1723)": "cpu:110274080, auth:-/-", @@ -645,7 +645,7 @@ " 643 call create_contract(Address(obj#747), Bytes(obj#745), Bytes(obj#749))": "", " 644 call obj_cmp(Address(obj#751), Address(obj#747))": "cpu:112274368, mem:71504000, objs:-/376@aebe83c3, auth:1@a1dfbdc2/-", " 645 ret obj_cmp -> Ok(0)": "cpu:112275054", - " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@20efa1bf", + " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@a0d06fb2", " 647 ret get_ledger_network_id -> Ok(Bytes(obj#753))": "cpu:112278209, mem:71504112, objs:-/377@a5f27cc1", " 648 ret create_contract -> Ok(Address(obj#755))": "cpu:112383238, mem:71515476, objs:-/378@4a2dc9d5, store:-/55@d68f6f6e, foot:55@98d0e060, auth:-/1@6f8d4df0", " 649 call bytes_new_from_slice(1723)": "cpu:112383493, auth:-/-", @@ -657,7 +657,7 @@ " 655 call create_contract(Address(obj#761), Bytes(obj#759), Bytes(obj#763))": "", " 656 call obj_cmp(Address(obj#765), Address(obj#761))": "cpu:114383781, mem:72833280, objs:-/383@ba9bc303, auth:1@7cf8180f/-", " 657 ret obj_cmp -> Ok(0)": "cpu:114384467", - " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@a8a009f0", + " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@9ffc2d1c", " 659 ret get_ledger_network_id -> Ok(Bytes(obj#767))": "cpu:114387622, mem:72833392, objs:-/384@cef90ff5", " 660 ret create_contract -> Ok(Address(obj#769))": "cpu:114498291, mem:72844942, objs:-/385@949e2fa0, store:-/56@bd5ddb43, foot:56@dc185736, auth:-/1@dbeb877e", " 661 call bytes_new_from_slice(1723)": "cpu:114498546, auth:-/-", @@ -669,7 +669,7 @@ " 667 call create_contract(Address(obj#775), Bytes(obj#773), Bytes(obj#777))": "", " 668 call obj_cmp(Address(obj#779), Address(obj#775))": "cpu:116498834, mem:74162746, objs:-/390@ee85fa0, auth:1@5e9c3221/-", " 669 ret obj_cmp -> Ok(0)": "cpu:116499520", - " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@1d9c05cc", + " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@42a87577", " 671 ret get_ledger_network_id -> Ok(Bytes(obj#781))": "cpu:116502675, mem:74162858, objs:-/391@c09aca31", " 672 ret create_contract -> Ok(Address(obj#783))": "cpu:116614408, mem:74174594, objs:-/392@a5b995b8, store:-/57@d10d961, foot:57@962f7174, auth:-/1@b76a8061", " 673 call bytes_new_from_slice(1723)": "cpu:116614663, auth:-/-", @@ -681,7 +681,7 @@ " 679 call create_contract(Address(obj#789), Bytes(obj#787), Bytes(obj#791))": "", " 680 call obj_cmp(Address(obj#793), Address(obj#789))": "cpu:118614951, mem:75492398, objs:-/397@8e52f175, auth:1@ba59cfca/-", " 681 ret obj_cmp -> Ok(0)": "cpu:118615637", - " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@5496e8ba", + " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@fb340186", " 683 ret get_ledger_network_id -> Ok(Bytes(obj#795))": "cpu:118618792, mem:75492510, objs:-/398@12799e50", " 684 ret create_contract -> Ok(Address(obj#797))": "cpu:118728033, mem:75504432, objs:-/399@3db9e662, store:-/58@8b1f0e88, foot:58@5c2834ff, auth:-/1@1693c723", " 685 call bytes_new_from_slice(1723)": "cpu:118728288, auth:-/-", @@ -693,7 +693,7 @@ " 691 call create_contract(Address(obj#803), Bytes(obj#801), Bytes(obj#805))": "", " 692 call obj_cmp(Address(obj#807), Address(obj#803))": "cpu:120728576, mem:76822236, objs:-/404@80b4325, auth:1@3d58dc89/-", " 693 ret obj_cmp -> Ok(0)": "cpu:120729262", - " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@98c21e82", + " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@6f5874f2", " 695 ret get_ledger_network_id -> Ok(Bytes(obj#809))": "cpu:120732417, mem:76822348, objs:-/405@3b999f4b", " 696 ret create_contract -> Ok(Address(obj#811))": "cpu:120838148, mem:76834456, objs:-/406@7fb07dfd, store:-/59@beb21ab6, foot:59@b156a440, auth:-/1@f485e251", " 697 call bytes_new_from_slice(1723)": "cpu:120838403, auth:-/-", @@ -705,7 +705,7 @@ " 703 call create_contract(Address(obj#817), Bytes(obj#815), Bytes(obj#819))": "", " 704 call obj_cmp(Address(obj#821), Address(obj#817))": "cpu:122838691, mem:78152260, objs:-/411@120f1132, auth:1@9615c0a4/-", " 705 ret obj_cmp -> Ok(0)": "cpu:122839377", - " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@2923ec4b", + " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@a21c8e0e", " 707 ret get_ledger_network_id -> Ok(Bytes(obj#823))": "cpu:122842532, mem:78152372, objs:-/412@7e1fcf83", " 708 ret create_contract -> Ok(Address(obj#825))": "cpu:122952121, mem:78164666, objs:-/413@d817a428, store:-/60@48bc1338, foot:60@a33f325d, auth:-/1@90f9a145", " 709 call bytes_new_from_slice(1723)": "cpu:122952376, auth:-/-", @@ -717,7 +717,7 @@ " 715 call create_contract(Address(obj#831), Bytes(obj#829), Bytes(obj#833))": "", " 716 call obj_cmp(Address(obj#835), Address(obj#831))": "cpu:124952664, mem:79482470, objs:-/418@fb16c9f, auth:1@ed66b718/-", " 717 ret obj_cmp -> Ok(0)": "cpu:124953350", - " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@3845c83e", + " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@915f7f35", " 719 ret get_ledger_network_id -> Ok(Bytes(obj#837))": "cpu:124956505, mem:79482582, objs:-/419@6c3991f8", " 720 ret create_contract -> Ok(Address(obj#839))": "cpu:125070712, mem:79495062, objs:-/420@7e22a47, store:-/61@39cb0da1, foot:61@9492821c, auth:-/1@1b6774bf", " 721 call bytes_new_from_slice(1723)": "cpu:125070967, auth:-/-", @@ -729,7 +729,7 @@ " 727 call create_contract(Address(obj#845), Bytes(obj#843), Bytes(obj#847))": "", " 728 call obj_cmp(Address(obj#849), Address(obj#845))": "cpu:127071255, mem:80812866, objs:-/425@34c426ec, auth:1@8d4c648/-", " 729 ret obj_cmp -> Ok(0)": "cpu:127071941", - " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@b8fd81b7", + " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@34a8de00", " 731 ret get_ledger_network_id -> Ok(Bytes(obj#851))": "cpu:127075096, mem:80812978, objs:-/426@6669f65a", " 732 ret create_contract -> Ok(Address(obj#853))": "cpu:127192147, mem:80825644, objs:-/427@3c471c07, store:-/62@73159901, foot:62@a247f604, auth:-/1@fa10c746", " 733 call bytes_new_from_slice(1723)": "cpu:127192402, auth:-/-", @@ -741,7 +741,7 @@ " 739 call create_contract(Address(obj#859), Bytes(obj#857), Bytes(obj#861))": "", " 740 call obj_cmp(Address(obj#863), Address(obj#859))": "cpu:129192690, mem:82143448, objs:-/432@a056c54, auth:1@dab38220/-", " 741 ret obj_cmp -> Ok(0)": "cpu:129193376", - " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@2a1916d6", + " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@f239515f", " 743 ret get_ledger_network_id -> Ok(Bytes(obj#865))": "cpu:129196531, mem:82143560, objs:-/433@b3ad8ff", " 744 ret create_contract -> Ok(Address(obj#867))": "cpu:129314644, mem:82156412, objs:-/434@e4eb33a, store:-/63@1b326826, foot:63@9801e88b, auth:-/1@a03e84e", " 745 call bytes_new_from_slice(1723)": "cpu:129314899, auth:-/-", @@ -753,7 +753,7 @@ " 751 call create_contract(Address(obj#873), Bytes(obj#871), Bytes(obj#875))": "", " 752 call obj_cmp(Address(obj#877), Address(obj#873))": "cpu:131315187, mem:83474216, objs:-/439@1aa2c5f6, auth:1@99c0fb6c/-", " 753 ret obj_cmp -> Ok(0)": "cpu:131315873", - " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@c35bd167", + " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@7ea4443e", " 755 ret get_ledger_network_id -> Ok(Bytes(obj#879))": "cpu:131319028, mem:83474328, objs:-/440@799c85ba", " 756 ret create_contract -> Ok(Address(obj#881))": "cpu:131438281, mem:83487366, objs:-/441@ca7fc40a, store:-/64@e7079371, foot:64@cc9b651b, auth:-/1@337ead98", " 757 call bytes_new_from_slice(1723)": "cpu:131438536, auth:-/-", @@ -765,7 +765,7 @@ " 763 call create_contract(Address(obj#887), Bytes(obj#885), Bytes(obj#889))": "", " 764 call obj_cmp(Address(obj#891), Address(obj#887))": "cpu:133438846, mem:84805170, objs:-/446@10069c6f, auth:1@15a8a357/-", " 765 ret obj_cmp -> Ok(0)": "cpu:133439532", - " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@a355308d", + " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@3a0544d3", " 767 ret get_ledger_network_id -> Ok(Bytes(obj#893))": "cpu:133442687, mem:84805282, objs:-/447@c3c2a480", " 768 ret create_contract -> Ok(Address(obj#895))": "cpu:133563026, mem:84818506, objs:-/448@75aa9a70, store:-/65@14bef7e4, foot:65@d9000a8e, auth:-/1@f4cff7fe", " 769 call bytes_new_from_slice(1723)": "cpu:133563281, auth:-/-", @@ -777,7 +777,7 @@ " 775 call create_contract(Address(obj#901), Bytes(obj#899), Bytes(obj#903))": "", " 776 call obj_cmp(Address(obj#905), Address(obj#901))": "cpu:135563591, mem:86136310, objs:-/453@9e1d13db, auth:1@740cbc46/-", " 777 ret obj_cmp -> Ok(0)": "cpu:135564277", - " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@d0e5f2d9", + " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@3bfe883", " 779 ret get_ledger_network_id -> Ok(Bytes(obj#907))": "cpu:135567432, mem:86136422, objs:-/454@2140adea", " 780 ret create_contract -> Ok(Address(obj#909))": "cpu:135687059, mem:86149832, objs:-/455@cc45d327, store:-/66@cd903d3e, foot:66@bfdb0e98, auth:-/1@bd7b355c", " 781 call bytes_new_from_slice(1723)": "cpu:135687314, auth:-/-", @@ -789,7 +789,7 @@ " 787 call create_contract(Address(obj#915), Bytes(obj#913), Bytes(obj#917))": "", " 788 call obj_cmp(Address(obj#919), Address(obj#915))": "cpu:137687624, mem:87467636, objs:-/460@b03c0f83, auth:1@2da9c65/-", " 789 ret obj_cmp -> Ok(0)": "cpu:137688310", - " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@b0c0571b", + " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@c4c1070f", " 791 ret get_ledger_network_id -> Ok(Bytes(obj#921))": "cpu:137691465, mem:87467748, objs:-/461@def87377", " 792 ret create_contract -> Ok(Address(obj#923))": "cpu:137813932, mem:87481344, objs:-/462@45120f6c, store:-/67@6584c2ff, foot:67@4ca4b4cb, auth:-/1@43d4f17b", " 793 call bytes_new_from_slice(1723)": "cpu:137814187, auth:-/-", @@ -801,7 +801,7 @@ " 799 call create_contract(Address(obj#929), Bytes(obj#927), Bytes(obj#931))": "", " 800 call obj_cmp(Address(obj#933), Address(obj#929))": "cpu:139814497, mem:88799148, objs:-/467@93a33041, auth:1@29f88d0f/-", " 801 ret obj_cmp -> Ok(0)": "cpu:139815183", - " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@979f25ad", + " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@fd3ae29e", " 803 ret get_ledger_network_id -> Ok(Bytes(obj#935))": "cpu:139818338, mem:88799260, objs:-/468@a5e532e9", " 804 ret create_contract -> Ok(Address(obj#937))": "cpu:139940093, mem:88813042, objs:-/469@f1730e5f, store:-/68@a95aaa61, foot:68@7b107c0e, auth:-/1@c7687a6f", " 805 call bytes_new_from_slice(1723)": "cpu:139940348, auth:-/-", @@ -813,7 +813,7 @@ " 811 call create_contract(Address(obj#943), Bytes(obj#941), Bytes(obj#945))": "", " 812 call obj_cmp(Address(obj#947), Address(obj#943))": "cpu:141940658, mem:90130846, objs:-/474@443ed4bb, auth:1@6d00ea2a/-", " 813 ret obj_cmp -> Ok(0)": "cpu:141941344", - " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@280957fb", + " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@bda0a2b", " 815 ret get_ledger_network_id -> Ok(Bytes(obj#949))": "cpu:141944499, mem:90130958, objs:-/475@cf814756", " 816 ret create_contract -> Ok(Address(obj#951))": "cpu:142067314, mem:90144926, objs:-/476@de85786d, store:-/69@2950663e, foot:69@6894b0a2, auth:-/1@12151c8e", " 817 call bytes_new_from_slice(1723)": "cpu:142067569, auth:-/-", @@ -825,7 +825,7 @@ " 823 call create_contract(Address(obj#957), Bytes(obj#955), Bytes(obj#959))": "", " 824 call obj_cmp(Address(obj#961), Address(obj#957))": "cpu:144067879, mem:91462730, objs:-/481@b0c8321a, auth:1@c0c7e5a8/-", " 825 ret obj_cmp -> Ok(0)": "cpu:144068565", - " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@4841adf2", + " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@9608c96e", " 827 ret get_ledger_network_id -> Ok(Bytes(obj#963))": "cpu:144071720, mem:91462842, objs:-/482@846aa98e", " 828 ret create_contract -> Ok(Address(obj#965))": "cpu:144189505, mem:91476996, objs:-/483@4fbf53ac, store:-/70@adf2fc99, foot:70@821ad073, auth:-/1@44e6f004", " 829 call bytes_new_from_slice(1723)": "cpu:144189760, auth:-/-", @@ -837,7 +837,7 @@ " 835 call create_contract(Address(obj#971), Bytes(obj#969), Bytes(obj#973))": "", " 836 call obj_cmp(Address(obj#975), Address(obj#971))": "cpu:146190070, mem:92794800, objs:-/488@b085e7d1, auth:1@e5ccf8c7/-", " 837 ret obj_cmp -> Ok(0)": "cpu:146190756", - " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@793dfb0a", + " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@dcd47906", " 839 ret get_ledger_network_id -> Ok(Bytes(obj#977))": "cpu:146193911, mem:92794912, objs:-/489@6913398b", " 840 ret create_contract -> Ok(Address(obj#979))": "cpu:146320630, mem:92809252, objs:-/490@1c8cace9, store:-/71@79757366, foot:71@92e5e652, auth:-/1@d1d73ad0", " 841 call bytes_new_from_slice(1723)": "cpu:146320885, auth:-/-", @@ -849,7 +849,7 @@ " 847 call create_contract(Address(obj#985), Bytes(obj#983), Bytes(obj#987))": "", " 848 call obj_cmp(Address(obj#989), Address(obj#985))": "cpu:148321195, mem:94127056, objs:-/495@a9b31ca, auth:1@8b9c1d75/-", " 849 ret obj_cmp -> Ok(0)": "cpu:148321881", - " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@a045f7fb", + " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@590c504f", " 851 ret get_ledger_network_id -> Ok(Bytes(obj#991))": "cpu:148325036, mem:94127168, objs:-/496@485ec8a7", " 852 ret create_contract -> Ok(Address(obj#993))": "cpu:148452827, mem:94141694, objs:-/497@2be4913d, store:-/72@f8a2e954, foot:72@131e5b52, auth:-/1@869a312d", " 853 call bytes_new_from_slice(1723)": "cpu:148453082, auth:-/-", @@ -861,7 +861,7 @@ " 859 call create_contract(Address(obj#999), Bytes(obj#997), Bytes(obj#1001))": "", " 860 call obj_cmp(Address(obj#1003), Address(obj#999))": "cpu:150453392, mem:95459498, objs:-/502@ef352cdd, auth:1@324ce1b0/-", " 861 ret obj_cmp -> Ok(0)": "cpu:150454078", - " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@1840bfcb", + " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@a5100b10", " 863 ret get_ledger_network_id -> Ok(Bytes(obj#1005))": "cpu:150457233, mem:95459610, objs:-/503@944ab8d9", " 864 ret create_contract -> Ok(Address(obj#1007))": "cpu:150582528, mem:95474322, objs:-/504@92c7111e, store:-/73@65800019, foot:73@74126ae0, auth:-/1@7b064a9e", " 865 call bytes_new_from_slice(1723)": "cpu:150582783, auth:-/-", @@ -873,7 +873,7 @@ " 871 call create_contract(Address(obj#1013), Bytes(obj#1011), Bytes(obj#1015))": "", " 872 call obj_cmp(Address(obj#1017), Address(obj#1013))": "cpu:152583093, mem:96792126, objs:-/509@c07bd221, auth:1@7da7fbb6/-", " 873 ret obj_cmp -> Ok(0)": "cpu:152583779", - " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@9bc13e6a", + " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@1e202147", " 875 ret get_ledger_network_id -> Ok(Bytes(obj#1019))": "cpu:152586934, mem:96792238, objs:-/510@6b7222e6", " 876 ret create_contract -> Ok(Address(obj#1021))": "cpu:152719645, mem:96807136, objs:-/511@2d880cb3, store:-/74@6da01545, foot:74@98a244b2, auth:-/1@7fbd7918", " 877 call bytes_new_from_slice(1723)": "cpu:152719900, auth:-/-", @@ -885,7 +885,7 @@ " 883 call create_contract(Address(obj#1027), Bytes(obj#1025), Bytes(obj#1029))": "", " 884 call obj_cmp(Address(obj#1031), Address(obj#1027))": "cpu:154720210, mem:98124940, objs:-/516@f5623ffa, auth:1@f873a88c/-", " 885 ret obj_cmp -> Ok(0)": "cpu:154720896", - " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@450e1f0b", + " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@742ef726", " 887 ret get_ledger_network_id -> Ok(Bytes(obj#1033))": "cpu:154724051, mem:98125052, objs:-/517@c1e547af", " 888 ret create_contract -> Ok(Address(obj#1035))": "cpu:154855028, mem:98140136, objs:-/518@ed0b6fa3, store:-/75@2640d275, foot:75@e1edfb8, auth:-/1@7bd1b1ac", " 889 call bytes_new_from_slice(1723)": "cpu:154855283, auth:-/-", @@ -897,7 +897,7 @@ " 895 call create_contract(Address(obj#1041), Bytes(obj#1039), Bytes(obj#1043))": "", " 896 call obj_cmp(Address(obj#1045), Address(obj#1041))": "cpu:156855593, mem:99457940, objs:-/523@afbfaeca, auth:1@a98e3a0c/-", " 897 ret obj_cmp -> Ok(0)": "cpu:156856279", - " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@97ab07bc", + " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@3314c4f4", " 899 ret get_ledger_network_id -> Ok(Bytes(obj#1047))": "cpu:156859434, mem:99458052, objs:-/524@ae0a83cb", " 900 ret create_contract -> Ok(Address(obj#1049))": "cpu:156994271, mem:99473322, objs:-/525@90f0b7e, store:-/76@b3fee76, foot:76@17ea103, auth:-/1@cd0c113", " 901 call bytes_new_from_slice(1723)": "cpu:156994526, auth:-/-", @@ -909,7 +909,7 @@ " 907 call create_contract(Address(obj#1055), Bytes(obj#1053), Bytes(obj#1057))": "", " 908 call obj_cmp(Address(obj#1059), Address(obj#1055))": "cpu:158994836, mem:100791126, objs:-/530@79ae528, auth:1@2722a0e9/-", " 909 ret obj_cmp -> Ok(0)": "cpu:158995522", - " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@b37297e1", + " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@2fc267a0", " 911 ret get_ledger_network_id -> Ok(Bytes(obj#1061))": "cpu:158998677, mem:100791238, objs:-/531@c299807e", " 912 ret create_contract -> Ok(Address(obj#1063))": "cpu:159130004, mem:100806694, objs:-/532@cd9f8aed, store:-/77@657b3ea7, foot:77@e7ae520f, auth:-/1@cd4623d1", " 913 call bytes_new_from_slice(1723)": "cpu:159130259, auth:-/-", @@ -921,7 +921,7 @@ " 919 call create_contract(Address(obj#1069), Bytes(obj#1067), Bytes(obj#1071))": "", " 920 call obj_cmp(Address(obj#1073), Address(obj#1069))": "cpu:161130569, mem:102124498, objs:-/537@e5fd859b, auth:1@d3342891/-", " 921 ret obj_cmp -> Ok(0)": "cpu:161131255", - " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@ac15408a", + " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@572a7bcf", " 923 ret get_ledger_network_id -> Ok(Bytes(obj#1075))": "cpu:161134410, mem:102124610, objs:-/538@373a6e1f", " 924 ret create_contract -> Ok(Address(obj#1077))": "cpu:161269597, mem:102140252, objs:-/539@a2bba411, store:-/78@be444a78, foot:78@92931e2e, auth:-/1@ffdde4e3", " 925 call bytes_new_from_slice(1723)": "cpu:161269852, auth:-/-", @@ -933,7 +933,7 @@ " 931 call create_contract(Address(obj#1083), Bytes(obj#1081), Bytes(obj#1085))": "", " 932 call obj_cmp(Address(obj#1087), Address(obj#1083))": "cpu:163270162, mem:103458056, objs:-/544@9b41b8e0, auth:1@dd609a88/-", " 933 ret obj_cmp -> Ok(0)": "cpu:163270848", - " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@8b52e45b", + " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@d4dbf130", " 935 ret get_ledger_network_id -> Ok(Bytes(obj#1089))": "cpu:163274003, mem:103458168, objs:-/545@1c155cdd", " 936 ret create_contract -> Ok(Address(obj#1091))": "cpu:163407456, mem:103473996, objs:-/546@6b1fddc7, store:-/79@1ff42e32, foot:79@b2da7f6f, auth:-/1@36361e6e", " 937 call bytes_new_from_slice(1723)": "cpu:163407711, auth:-/-", @@ -945,7 +945,7 @@ " 943 call create_contract(Address(obj#1097), Bytes(obj#1095), Bytes(obj#1099))": "", " 944 call obj_cmp(Address(obj#1101), Address(obj#1097))": "cpu:165408021, mem:104791800, objs:-/551@d1f85514, auth:1@2b6dc135/-", " 945 ret obj_cmp -> Ok(0)": "cpu:165408707", - " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@7c3fc9da", + " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@41e7877", " 947 ret get_ledger_network_id -> Ok(Bytes(obj#1103))": "cpu:165411862, mem:104791912, objs:-/552@904f5f5", " 948 ret create_contract -> Ok(Address(obj#1105))": "cpu:165543845, mem:104807926, objs:-/553@2b94afe6, store:-/80@5e14adc2, foot:80@f059281b, auth:-/1@1f118c6c", " 949 call bytes_new_from_slice(1723)": "cpu:165544100, auth:-/-", @@ -957,7 +957,7 @@ " 955 call create_contract(Address(obj#1111), Bytes(obj#1109), Bytes(obj#1113))": "", " 956 call obj_cmp(Address(obj#1115), Address(obj#1111))": "cpu:167544410, mem:106125730, objs:-/558@b9bcce70, auth:1@70e49983/-", " 957 ret obj_cmp -> Ok(0)": "cpu:167545096", - " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@d48ad31d", + " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@8b829207", " 959 ret get_ledger_network_id -> Ok(Bytes(obj#1117))": "cpu:167548251, mem:106125842, objs:-/559@db2ec1f1", " 960 ret create_contract -> Ok(Address(obj#1119))": "cpu:167688408, mem:106142042, objs:-/560@41ccfcc2, store:-/81@f81ad7da, foot:81@15685e3b, auth:-/1@6a69f567", " 961 call bytes_new_from_slice(1723)": "cpu:167688663, auth:-/-", @@ -969,7 +969,7 @@ " 967 call create_contract(Address(obj#1125), Bytes(obj#1123), Bytes(obj#1127))": "", " 968 call obj_cmp(Address(obj#1129), Address(obj#1125))": "cpu:169688973, mem:107459846, objs:-/565@1cad2db4, auth:1@2123cf2b/-", " 969 ret obj_cmp -> Ok(0)": "cpu:169689659", - " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@94e13f1", + " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@83e05267", " 971 ret get_ledger_network_id -> Ok(Bytes(obj#1131))": "cpu:169692814, mem:107459958, objs:-/566@56ce3a87", " 972 ret create_contract -> Ok(Address(obj#1133))": "cpu:169829465, mem:107476344, objs:-/567@3c1a2bca, store:-/82@768815a, foot:82@1f4b7a36, auth:-/1@27facc4a", " 973 call bytes_new_from_slice(1723)": "cpu:169829720, auth:-/-", @@ -981,7 +981,7 @@ " 979 call create_contract(Address(obj#1139), Bytes(obj#1137), Bytes(obj#1141))": "", " 980 call obj_cmp(Address(obj#1143), Address(obj#1139))": "cpu:171830030, mem:108794148, objs:-/572@1665aa07, auth:1@97298f20/-", " 981 ret obj_cmp -> Ok(0)": "cpu:171830716", - " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@e23f270a", + " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@4021cf1a", " 983 ret get_ledger_network_id -> Ok(Bytes(obj#1145))": "cpu:171833871, mem:108794260, objs:-/573@6e3f538d", " 984 ret create_contract -> Ok(Address(obj#1147))": "cpu:171974378, mem:108810832, objs:-/574@3ab5a9ff, store:-/83@92fc960e, foot:83@99dcf372, auth:-/1@3dfa80d3", " 985 call bytes_new_from_slice(1723)": "cpu:171974633, auth:-/-", @@ -993,7 +993,7 @@ " 991 call create_contract(Address(obj#1153), Bytes(obj#1151), Bytes(obj#1155))": "", " 992 call obj_cmp(Address(obj#1157), Address(obj#1153))": "cpu:173974943, mem:110128636, objs:-/579@cce4f991, auth:1@48cd29c5/-", " 993 ret obj_cmp -> Ok(0)": "cpu:173975629", - " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@89073d7b", + " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@b8360dff", " 995 ret get_ledger_network_id -> Ok(Bytes(obj#1159))": "cpu:173978784, mem:110128748, objs:-/580@bc994841", " 996 ret create_contract -> Ok(Address(obj#1161))": "cpu:174119339, mem:110145506, objs:-/581@35af42cf, store:-/84@9f307726, foot:84@c027a220, auth:-/1@9c275ce6", " 997 call bytes_new_from_slice(1723)": "cpu:174119594, auth:-/-", @@ -1065,7 +1065,7 @@ "10057 ret vec_push_back -> Ok(Vec(obj#3739))": "cpu:313693324, mem:190283501, objs:6@ef522ddf/1870@6ed24015", "10058 call symbol_new_from_slice(12)": "", "10059 ret symbol_new_from_slice -> Ok(Symbol(obj#3741))": "cpu:313696361, mem:190283593, objs:6@ef522ddf/1871@bfad1d5e", - "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@15a30448", + "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@f1502f98", "10060 push VM:88663680:sym#3741(Bytes(obj#3729), Vec(obj#2297), Vec(obj#3739))": "cpu:315844562, mem:191614012, objs:-/1872@73d15c45, vm:1114112@a6f378b8/7@ae192e85, stk:43@33e62a94, auth:43@19b6ddf8/57@36041343", "10061 call symbol_len(Symbol(obj#3741))": "cpu:315850760, mem:191614162, objs:3@1559e48f/1872@73d15c45, stk:43@6d86f991", "10062 ret symbol_len -> Ok(U32(12))": "cpu:315850976", @@ -1197,7 +1197,7 @@ "10177 ret obj_cmp -> Ok(1)": "cpu:315903555", "10178 call obj_cmp(Address(obj#2891), Address(obj#2295))": "", "10179 ret obj_cmp -> Ok(-1)": "cpu:315904241", - "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@99e0911a", + "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@ddecb92e", "10180 call obj_cmp(Address(obj#2903), Address(obj#2295))": "", "10181 ret obj_cmp -> Ok(1)": "cpu:315904927", "10182 call obj_cmp(Address(obj#2915), Address(obj#2295))": "", @@ -1329,7 +1329,7 @@ "10297 ret obj_cmp -> Ok(-1)": "cpu:318143228", "10298 call obj_cmp(Address(obj#2699), Address(obj#2307))": "", "10299 ret obj_cmp -> Ok(-1)": "cpu:318143914", - "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@d900f2b9", + "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@ef460cff", "10300 call obj_cmp(Address(obj#2711), Address(obj#2307))": "", "10301 ret obj_cmp -> Ok(1)": "cpu:318144600", "10302 call obj_cmp(Address(obj#2723), Address(obj#2307))": "", @@ -1461,7 +1461,7 @@ "10417 ret obj_cmp -> Ok(-1)": "cpu:320373514", "10418 call obj_cmp(Address(obj#2519), Address(obj#2319))": "", "10419 ret obj_cmp -> Ok(1)": "cpu:320374200", - "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@8cf28d27", + "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@7a1f2db2", "10420 call obj_cmp(Address(obj#2531), Address(obj#2319))": "", "10421 ret obj_cmp -> Ok(1)": "cpu:320374886", "10422 call obj_cmp(Address(obj#2543), Address(obj#2319))": "", @@ -1593,7 +1593,7 @@ "10537 ret obj_cmp -> Ok(0)": "cpu:322605081", "10538 call obj_cmp(Address(obj#2351), Address(obj#2331))": "", "10539 ret obj_cmp -> Ok(1)": "cpu:322605767", - "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@adb776b7", + "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@914bc040", "10540 call obj_cmp(Address(obj#2363), Address(obj#2331))": "", "10541 ret obj_cmp -> Ok(-1)": "cpu:322606453", "10542 call obj_cmp(Address(obj#2375), Address(obj#2331))": "", @@ -1725,7 +1725,7 @@ "10657 ret map_new_from_slices -> Ok(Map(obj#3807))": "cpu:322677281, mem:195611073, objs:6@3b308096/1904@838beb6f", "10658 call vec_new_from_slice(2)": "", "10659 ret vec_new_from_slice -> Ok(Vec(obj#3809))": "cpu:322680176, mem:195611169, objs:6@3b308096/1905@6247841f", - "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@3b733ec9", + "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@daca6b74", "10660 call vec_push_back(Vec(obj#3803), Vec(obj#3809))": "", "10661 ret vec_push_back -> Ok(Vec(obj#3811))": "cpu:322683394, mem:195611257, objs:6@3b308096/1906@ab044db9", "10662 call symbol_new_from_slice(12)": "", @@ -1857,7 +1857,7 @@ "10777 ret obj_cmp -> Ok(-1)": "cpu:324876041", "10778 call obj_cmp(Address(obj#2915), Address(obj#2343))": "", "10779 ret obj_cmp -> Ok(-1)": "cpu:324876727", - "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@f3b99202", + "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@4e66162c", "10780 call obj_cmp(Address(obj#2927), Address(obj#2343))": "", "10781 ret obj_cmp -> Ok(1)": "cpu:324877413", "10782 call obj_cmp(Address(obj#2939), Address(obj#2343))": "", @@ -1989,7 +1989,7 @@ "10897 ret obj_cmp -> Ok(1)": "cpu:327105598", "10898 call obj_cmp(Address(obj#2771), Address(obj#2355))": "", "10899 ret obj_cmp -> Ok(1)": "cpu:327106284", - "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@c40502a7", + "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@95eeba1e", "10900 call obj_cmp(Address(obj#2783), Address(obj#2355))": "", "10901 ret obj_cmp -> Ok(1)": "cpu:327106970", "10902 call obj_cmp(Address(obj#2795), Address(obj#2355))": "", @@ -2121,7 +2121,7 @@ "11017 ret obj_cmp -> Ok(1)": "cpu:329325768", "11018 call obj_cmp(Address(obj#2639), Address(obj#2367))": "", "11019 ret obj_cmp -> Ok(1)": "cpu:329326454", - "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@69ae4ce3", + "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@7b807866", "11020 call obj_cmp(Address(obj#2651), Address(obj#2367))": "", "11021 ret obj_cmp -> Ok(1)": "cpu:329327140", "11022 call obj_cmp(Address(obj#2663), Address(obj#2367))": "", @@ -2253,7 +2253,7 @@ "11137 ret obj_cmp -> Ok(-1)": "cpu:331547219", "11138 call obj_cmp(Address(obj#2519), Address(obj#2379))": "", "11139 ret obj_cmp -> Ok(1)": "cpu:331547905", - "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@c6d564e3", + "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@6ffec27e", "11140 call obj_cmp(Address(obj#2531), Address(obj#2379))": "", "11141 ret obj_cmp -> Ok(1)": "cpu:331548591", "11142 call obj_cmp(Address(obj#2543), Address(obj#2379))": "", @@ -2385,7 +2385,7 @@ "11257 ret obj_cmp -> Ok(0)": "cpu:333766903", "11258 call obj_cmp(Address(obj#2411), Address(obj#2391))": "", "11259 ret obj_cmp -> Ok(-1)": "cpu:333767589", - "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@19000368", + "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@eba6b1af", "11260 call obj_cmp(Address(obj#2423), Address(obj#2391))": "", "11261 ret obj_cmp -> Ok(1)": "cpu:333768275", "11262 call obj_cmp(Address(obj#2435), Address(obj#2391))": "", @@ -2517,7 +2517,7 @@ "11377 call symbol_copy_to_slice(Symbol(obj#3903), U32(0), 12)": "", "11378 ret symbol_copy_to_slice -> Ok(())": "cpu:335970178", "11379 call bytes_len(Bytes(obj#3891))": " vm:-/-", - "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@165a018e", + "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@97aba755", "11380 ret bytes_len -> Ok(U32(32))": "cpu:335975847", "11381 call vec_len(Vec(obj#2405))": "", "11382 ret vec_len -> Ok(U32(2))": "cpu:335976326", @@ -2649,7 +2649,7 @@ "11497 ret bytes_new_from_slice -> Ok(Bytes(obj#3909))": "cpu:336050143, mem:203601211, objs:6@e4a5b938/1955@5ff15157", "11498 call vec_new()": "", "11499 ret vec_new -> Ok(Vec(obj#3911))": "cpu:336051392, mem:203601275, objs:6@e4a5b938/1956@957f5c63", - "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@598eacaa", + "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@bed7d447", "11500 call vec_new_from_slice(0)": "", "11501 ret vec_new_from_slice -> Ok(Vec(obj#3913))": "cpu:336054177, mem:203601355, objs:6@e4a5b938/1957@9ca53d3c", "11502 call map_new_from_slices(3)": "", @@ -2781,7 +2781,7 @@ "11617 ret obj_cmp -> Ok(-1)": "cpu:338234510", "11618 call obj_cmp(Address(obj#2951), Address(obj#2415))": "", "11619 ret obj_cmp -> Ok(-1)": "cpu:338235196", - "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@a93552d0", + "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@978a819", "11620 call obj_cmp(Address(obj#2963), Address(obj#2415))": "", "11621 ret obj_cmp -> Ok(-1)": "cpu:338235882", "11622 call obj_cmp(Address(obj#2975), Address(obj#2415))": "", @@ -2913,7 +2913,7 @@ "11737 ret obj_cmp -> Ok(-1)": "cpu:340441273", "11738 call obj_cmp(Address(obj#2879), Address(obj#2427))": "", "11739 ret obj_cmp -> Ok(-1)": "cpu:340441959", - "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@5f366658", + "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@af6ca8a", "11740 call obj_cmp(Address(obj#2891), Address(obj#2427))": "", "11741 ret obj_cmp -> Ok(-1)": "cpu:340442645", "11742 call obj_cmp(Address(obj#2903), Address(obj#2427))": "", @@ -3045,7 +3045,7 @@ "11857 ret obj_cmp -> Ok(1)": "cpu:342646269", "11858 call obj_cmp(Address(obj#2819), Address(obj#2439))": "", "11859 ret obj_cmp -> Ok(-1)": "cpu:342646955", - "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@68507614", + "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@c5cbfcbf", "11860 call obj_cmp(Address(obj#2831), Address(obj#2439))": "", "11861 ret obj_cmp -> Ok(1)": "cpu:342647641", "11862 call obj_cmp(Address(obj#2843), Address(obj#2439))": "", @@ -3177,7 +3177,7 @@ "11977 ret obj_cmp -> Ok(-1)": "cpu:344844926", "11978 call obj_cmp(Address(obj#2771), Address(obj#2451))": "", "11979 ret obj_cmp -> Ok(-1)": "cpu:344845612", - "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@73687fbb", + "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@c8d5c457", "11980 call obj_cmp(Address(obj#2783), Address(obj#2451))": "", "11981 ret obj_cmp -> Ok(-1)": "cpu:344846298", "11982 call obj_cmp(Address(obj#2795), Address(obj#2451))": "", @@ -7452,223 +7452,223 @@ "15863 call serialize_to_bytes(Vec(obj#4969))": "cpu:438438345, mem:267483563, objs:104@6715a8d5/2485@74315e8c, stk:100@cfe7671", "15864 ret serialize_to_bytes -> Ok(Bytes(obj#4971))": "cpu:438915879, mem:267500563, objs:104@6715a8d5/2486@9b063ba3", "15865 pop VM:88663680:sym#4767 -> Ok(Void)": "cpu:438917128, mem:267500587, objs:105@b6426906/2486@9b063ba3, vm:1114112@7145ddc8/7@ae192e85, stk:100@e013e4a", - "15866 ret require_auth_for_args -> Ok(Void)": "cpu:439054493, mem:267520031, objs:6@2f306315/2486@9b063ba3, vm:-/-, store:-/102@b1d08e23, foot:102@efe3074b, stk:99@fc4fda83, auth:99@f0706ecf/1@9755a5e", + "15866 ret require_auth_for_args -> Ok(Void)": "cpu:439054493, mem:267520031, objs:6@2f306315/2486@9b063ba3, vm:-/-, store:-/102@b1d08e23, foot:102@efe3074b, stk:99@fc4fda83, auth:99@f0706ecf/1@a8030e58", "15867 pop VM:88663680:sym#4749 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15868 ret require_auth_for_args -> Ok(Void)": "cpu:439192920, mem:267539661, objs:6@be96fd4c/2486@9b063ba3, vm:-/-, store:-/103@f7257a79, foot:103@769cc87d, stk:98@41a336d, auth:98@5cdcd89/2@37010194", + "15868 ret require_auth_for_args -> Ok(Void)": "cpu:439192920, mem:267539661, objs:6@be96fd4c/2486@9b063ba3, vm:-/-, store:-/103@f7257a79, foot:103@769cc87d, stk:98@41a336d, auth:98@5cdcd89/2@561bb1eb", "15869 pop VM:88663680:sym#4731 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1587 call vec_new_from_slice(2)": "", - "15870 ret require_auth_for_args -> Ok(Void)": "cpu:439330385, mem:267559477, objs:6@8dfed99/2486@9b063ba3, vm:-/-, store:-/104@e071c244, foot:104@2817233b, stk:97@ec84df8c, auth:97@d20ed928/3@743f2935", + "15870 ret require_auth_for_args -> Ok(Void)": "cpu:439330385, mem:267559477, objs:6@8dfed99/2486@9b063ba3, vm:-/-, store:-/104@e071c244, foot:104@2817233b, stk:97@ec84df8c, auth:97@d20ed928/3@c617946c", "15871 pop VM:88663680:sym#4713 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15872 ret require_auth_for_args -> Ok(Void)": "cpu:439470942, mem:267579479, objs:6@487c936c/2486@9b063ba3, vm:-/-, store:-/105@8aa3c856, foot:105@da7cd189, stk:96@f299c907, auth:96@5788d49c/4@9a0f79b1", + "15872 ret require_auth_for_args -> Ok(Void)": "cpu:439470942, mem:267579479, objs:6@487c936c/2486@9b063ba3, vm:-/-, store:-/105@8aa3c856, foot:105@da7cd189, stk:96@f299c907, auth:96@5788d49c/4@31229850", "15873 pop VM:88663680:sym#4695 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15874 ret require_auth_for_args -> Ok(Void)": "cpu:439610533, mem:267599667, objs:6@91f61715/2486@9b063ba3, vm:-/-, store:-/106@8b819550, foot:106@11e4cade, stk:95@4bb6f033, auth:95@1eee3b18/5@3c101ffe", + "15874 ret require_auth_for_args -> Ok(Void)": "cpu:439610533, mem:267599667, objs:6@91f61715/2486@9b063ba3, vm:-/-, store:-/106@8b819550, foot:106@11e4cade, stk:95@4bb6f033, auth:95@1eee3b18/5@2fd1a3cb", "15875 pop VM:88663680:sym#4677 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15876 ret require_auth_for_args -> Ok(Void)": "cpu:439753216, mem:267620041, objs:6@2cc86d87/2486@9b063ba3, vm:-/-, store:-/107@3cd86c6e, foot:107@a5d6c26e, stk:94@3d0dd83a, auth:94@179ecd46/6@86dc3231", + "15876 ret require_auth_for_args -> Ok(Void)": "cpu:439753216, mem:267620041, objs:6@2cc86d87/2486@9b063ba3, vm:-/-, store:-/107@3cd86c6e, foot:107@a5d6c26e, stk:94@3d0dd83a, auth:94@179ecd46/6@59e6ddd6", "15877 pop VM:88663680:sym#4659 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15878 ret require_auth_for_args -> Ok(Void)": "cpu:439892903, mem:267640601, objs:6@8b1c1cbb/2486@9b063ba3, vm:-/-, store:-/108@87adcb38, foot:108@8d176abc, stk:93@fd778b0f, auth:93@ce449c1c/7@457eec48", + "15878 ret require_auth_for_args -> Ok(Void)": "cpu:439892903, mem:267640601, objs:6@8b1c1cbb/2486@9b063ba3, vm:-/-, store:-/108@87adcb38, foot:108@8d176abc, stk:93@fd778b0f, auth:93@ce449c1c/7@b657c3be", "15879 pop VM:88663680:sym#4641 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1588 ret vec_new_from_slice -> Ok(Vec(obj#1787))": "cpu:211769106, mem:132898749, objs:-/894@8d937797", - "15880 ret require_auth_for_args -> Ok(Void)": "cpu:440032634, mem:267661347, objs:6@9efac0ce/2486@9b063ba3, vm:-/-, store:-/109@9507b7f5, foot:109@856ca146, stk:92@5fe6b20, auth:92@ffe001d4/8@d23092b7", + "15880 ret require_auth_for_args -> Ok(Void)": "cpu:440032634, mem:267661347, objs:6@9efac0ce/2486@9b063ba3, vm:-/-, store:-/109@9507b7f5, foot:109@856ca146, stk:92@5fe6b20, auth:92@ffe001d4/8@f1344943", "15881 pop VM:88663680:sym#4623 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15882 ret require_auth_for_args -> Ok(Void)": "cpu:440177495, mem:267682279, objs:6@576c1ac0/2486@9b063ba3, vm:-/-, store:-/110@85d777fe, foot:110@faafa909, stk:91@802938c7, auth:91@7e4754d8/9@592bcb75", + "15882 ret require_auth_for_args -> Ok(Void)": "cpu:440177495, mem:267682279, objs:6@576c1ac0/2486@9b063ba3, vm:-/-, store:-/110@85d777fe, foot:110@faafa909, stk:91@802938c7, auth:91@7e4754d8/9@3c2ca5d0", "15883 pop VM:88663680:sym#4605 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15884 ret require_auth_for_args -> Ok(Void)": "cpu:440323416, mem:267703397, objs:6@79910dc4/2486@9b063ba3, vm:-/-, store:-/111@f79b4ab6, foot:111@84f8a6c4, stk:90@271e48c1, auth:90@96513e7d/10@3f03beff", + "15884 ret require_auth_for_args -> Ok(Void)": "cpu:440323416, mem:267703397, objs:6@79910dc4/2486@9b063ba3, vm:-/-, store:-/111@f79b4ab6, foot:111@84f8a6c4, stk:90@271e48c1, auth:90@96513e7d/10@9dc16032", "15885 pop VM:88663680:sym#4587 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15886 ret require_auth_for_args -> Ok(Void)": "cpu:440469391, mem:267724701, objs:6@856c0671/2486@9b063ba3, vm:-/-, store:-/112@1a4bfb91, foot:112@89e25b7f, stk:89@bc847335, auth:89@d0812138/11@ec406755", + "15886 ret require_auth_for_args -> Ok(Void)": "cpu:440469391, mem:267724701, objs:6@856c0671/2486@9b063ba3, vm:-/-, store:-/112@1a4bfb91, foot:112@89e25b7f, stk:89@bc847335, auth:89@d0812138/11@cc4f540e", "15887 pop VM:88663680:sym#4569 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15888 ret require_auth_for_args -> Ok(Void)": "cpu:440617446, mem:267746191, objs:6@61c8aadd/2486@9b063ba3, vm:-/-, store:-/113@403d426d, foot:113@bd83e286, stk:88@752c42f3, auth:88@cd5771bf/12@e8b1ff57", + "15888 ret require_auth_for_args -> Ok(Void)": "cpu:440617446, mem:267746191, objs:6@61c8aadd/2486@9b063ba3, vm:-/-, store:-/113@403d426d, foot:113@bd83e286, stk:88@752c42f3, auth:88@cd5771bf/12@6180f29e", "15889 pop VM:88663680:sym#4551 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1589 call symbol_new_from_slice(15)": "cpu:211773714, mem:132898924", - "15890 ret require_auth_for_args -> Ok(Void)": "cpu:440766565, mem:267767867, objs:6@fccf6da5/2486@9b063ba3, vm:-/-, store:-/114@7b78e872, foot:114@2002e2a6, stk:87@acbebf51, auth:87@2bf3ee8e/13@c8145e9a", + "15890 ret require_auth_for_args -> Ok(Void)": "cpu:440766565, mem:267767867, objs:6@fccf6da5/2486@9b063ba3, vm:-/-, store:-/114@7b78e872, foot:114@2002e2a6, stk:87@acbebf51, auth:87@2bf3ee8e/13@46c42cee", "15891 pop VM:88663680:sym#4533 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15892 ret require_auth_for_args -> Ok(Void)": "cpu:440915730, mem:267789729, objs:6@8327b1cd/2486@9b063ba3, vm:-/-, store:-/115@74a6d29b, foot:115@dba9d26f, stk:86@18b08045, auth:86@5a169b63/14@e465b8ad", + "15892 ret require_auth_for_args -> Ok(Void)": "cpu:440915730, mem:267789729, objs:6@8327b1cd/2486@9b063ba3, vm:-/-, store:-/115@74a6d29b, foot:115@dba9d26f, stk:86@18b08045, auth:86@5a169b63/14@67301006", "15893 pop VM:88663680:sym#4515 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15894 ret require_auth_for_args -> Ok(Void)": "cpu:441065959, mem:267811777, objs:6@554ab114/2486@9b063ba3, vm:-/-, store:-/116@73ba2e11, foot:116@7c838b63, stk:85@d5146bf9, auth:85@fcc167f9/15@66571ded", + "15894 ret require_auth_for_args -> Ok(Void)": "cpu:441065959, mem:267811777, objs:6@554ab114/2486@9b063ba3, vm:-/-, store:-/116@73ba2e11, foot:116@7c838b63, stk:85@d5146bf9, auth:85@fcc167f9/15@c22f634e", "15895 pop VM:88663680:sym#4497 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15896 ret require_auth_for_args -> Ok(Void)": "cpu:441218266, mem:267834011, objs:6@69aac432/2486@9b063ba3, vm:-/-, store:-/117@685fb0dc, foot:117@319a1fa4, stk:84@79a5472d, auth:84@9c5abac/16@a516892b", + "15896 ret require_auth_for_args -> Ok(Void)": "cpu:441218266, mem:267834011, objs:6@69aac432/2486@9b063ba3, vm:-/-, store:-/117@685fb0dc, foot:117@319a1fa4, stk:84@79a5472d, auth:84@9c5abac/16@7f2d3217", "15897 pop VM:88663680:sym#4479 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15898 ret require_auth_for_args -> Ok(Void)": "cpu:441371639, mem:267856431, objs:6@993d330b/2486@9b063ba3, vm:-/-, store:-/118@707f0e69, foot:118@74e1b664, stk:83@a18ec701, auth:83@fc052fd7/17@f04222f2", + "15898 ret require_auth_for_args -> Ok(Void)": "cpu:441371639, mem:267856431, objs:6@993d330b/2486@9b063ba3, vm:-/-, store:-/118@707f0e69, foot:118@74e1b664, stk:83@a18ec701, auth:83@fc052fd7/17@2242ad23", "15899 pop VM:88663680:sym#4461 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1590 ret symbol_new_from_slice -> Ok(Symbol(obj#1789))": "cpu:211776751, mem:132899019, objs:-/895@64ccbc3e", - "15900 ret require_auth_for_args -> Ok(Void)": "cpu:441520994, mem:267879037, objs:6@27b619dd/2486@9b063ba3, vm:-/-, store:-/119@9bcd3217, foot:119@efda2ba5, stk:82@b9ed446f, auth:82@4dbaaa39/18@1763c812", + "15900 ret require_auth_for_args -> Ok(Void)": "cpu:441520994, mem:267879037, objs:6@27b619dd/2486@9b063ba3, vm:-/-, store:-/119@9bcd3217, foot:119@efda2ba5, stk:82@b9ed446f, auth:82@4dbaaa39/18@3fd30e54", "15901 pop VM:88663680:sym#4443 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15902 ret require_auth_for_args -> Ok(Void)": "cpu:441671417, mem:267901829, objs:6@cb7fc33c/2486@9b063ba3, vm:-/-, store:-/120@5b8ec879, foot:120@9be73ac4, stk:81@325f9dbb, auth:81@6a63417a/19@a0c69f02", + "15902 ret require_auth_for_args -> Ok(Void)": "cpu:441671417, mem:267901829, objs:6@cb7fc33c/2486@9b063ba3, vm:-/-, store:-/120@5b8ec879, foot:120@9be73ac4, stk:81@325f9dbb, auth:81@6a63417a/19@3139b4ff", "15903 pop VM:88663680:sym#4425 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15904 ret require_auth_for_args -> Ok(Void)": "cpu:441824934, mem:267924807, objs:6@ff0a27c3/2486@9b063ba3, vm:-/-, store:-/121@bc89a5f3, foot:121@847e5f7e, stk:80@b3ff9be3, auth:80@94ce8370/20@36f6c9c0", + "15904 ret require_auth_for_args -> Ok(Void)": "cpu:441824934, mem:267924807, objs:6@ff0a27c3/2486@9b063ba3, vm:-/-, store:-/121@bc89a5f3, foot:121@847e5f7e, stk:80@b3ff9be3, auth:80@94ce8370/20@2935da81", "15905 pop VM:88663680:sym#4407 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15906 ret require_auth_for_args -> Ok(Void)": "cpu:441983579, mem:267947971, objs:6@4987334c/2486@9b063ba3, vm:-/-, store:-/122@e9211d26, foot:122@da1f74c, stk:79@afc1ca7, auth:79@dd79bf55/21@bda6f5be", + "15906 ret require_auth_for_args -> Ok(Void)": "cpu:441983579, mem:267947971, objs:6@4987334c/2486@9b063ba3, vm:-/-, store:-/122@e9211d26, foot:122@da1f74c, stk:79@afc1ca7, auth:79@dd79bf55/21@b57706e5", "15907 pop VM:88663680:sym#4389 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15908 ret require_auth_for_args -> Ok(Void)": "cpu:442143288, mem:267971321, objs:6@3ef88c71/2486@9b063ba3, vm:-/-, store:-/123@66722c9b, foot:123@c7348ef7, stk:78@74e7f76b, auth:78@2ba65d18/22@6af9ba5c", + "15908 ret require_auth_for_args -> Ok(Void)": "cpu:442143288, mem:267971321, objs:6@3ef88c71/2486@9b063ba3, vm:-/-, store:-/123@66722c9b, foot:123@c7348ef7, stk:78@74e7f76b, auth:78@2ba65d18/22@39b120ee", "15909 pop VM:88663680:sym#4371 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1591 call vec_new_from_slice(2)": "", - "15910 ret require_auth_for_args -> Ok(Void)": "cpu:442303045, mem:267994857, objs:6@748e1257/2486@9b063ba3, vm:-/-, store:-/124@2d56c858, foot:124@94894be6, stk:77@bc325567, auth:77@701162dd/23@955ae303", + "15910 ret require_auth_for_args -> Ok(Void)": "cpu:442303045, mem:267994857, objs:6@748e1257/2486@9b063ba3, vm:-/-, store:-/124@2d56c858, foot:124@94894be6, stk:77@bc325567, auth:77@701162dd/23@2e36c393", "15911 pop VM:88663680:sym#4353 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15912 ret require_auth_for_args -> Ok(Void)": "cpu:442463864, mem:268018579, objs:6@ff539af3/2486@9b063ba3, vm:-/-, store:-/125@a6d135a4, foot:125@d78bccea, stk:76@9bc53a83, auth:76@2d055e71/24@7bafcb78", + "15912 ret require_auth_for_args -> Ok(Void)": "cpu:442463864, mem:268018579, objs:6@ff539af3/2486@9b063ba3, vm:-/-, store:-/125@a6d135a4, foot:125@d78bccea, stk:76@9bc53a83, auth:76@2d055e71/24@f35f73d", "15913 pop VM:88663680:sym#4335 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15914 ret require_auth_for_args -> Ok(Void)": "cpu:442625747, mem:268042487, objs:6@b365d1e5/2486@9b063ba3, vm:-/-, store:-/126@4f8ec32f, foot:126@96f0f231, stk:75@82c186b6, auth:75@ed119b0d/25@7c253990", + "15914 ret require_auth_for_args -> Ok(Void)": "cpu:442625747, mem:268042487, objs:6@b365d1e5/2486@9b063ba3, vm:-/-, store:-/126@4f8ec32f, foot:126@96f0f231, stk:75@82c186b6, auth:75@ed119b0d/25@49804c5f", "15915 pop VM:88663680:sym#4317 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15916 ret require_auth_for_args -> Ok(Void)": "cpu:442789708, mem:268066581, objs:6@269732e2/2486@9b063ba3, vm:-/-, store:-/127@619e93a0, foot:127@d74148d, stk:74@a37ed7e, auth:74@1c34a7fa/26@17e34315", + "15916 ret require_auth_for_args -> Ok(Void)": "cpu:442789708, mem:268066581, objs:6@269732e2/2486@9b063ba3, vm:-/-, store:-/127@619e93a0, foot:127@d74148d, stk:74@a37ed7e, auth:74@1c34a7fa/26@7118dadd", "15917 pop VM:88663680:sym#4299 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15918 ret require_auth_for_args -> Ok(Void)": "cpu:442954763, mem:268090861, objs:6@6e767f1d/2486@9b063ba3, vm:-/-, store:-/128@2a134092, foot:128@d564a574, stk:73@8f0bb50e, auth:73@206df3d8/27@76903c1c", + "15918 ret require_auth_for_args -> Ok(Void)": "cpu:442954763, mem:268090861, objs:6@6e767f1d/2486@9b063ba3, vm:-/-, store:-/128@2a134092, foot:128@d564a574, stk:73@8f0bb50e, auth:73@206df3d8/27@9a4f4bef", "15919 pop VM:88663680:sym#4281 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1592 ret vec_new_from_slice -> Ok(Vec(obj#1791))": "cpu:211779754, mem:132899115, objs:-/896@1e8bb7e5", - "15920 ret require_auth_for_args -> Ok(Void)": "cpu:443120900, mem:268115327, objs:6@c062b03/2486@9b063ba3, vm:-/-, store:-/129@be1eb12d, foot:129@3f25db7e, stk:72@c7ca6a86, auth:72@645944bd/28@77d6de3d", + "15920 ret require_auth_for_args -> Ok(Void)": "cpu:443120900, mem:268115327, objs:6@c062b03/2486@9b063ba3, vm:-/-, store:-/129@be1eb12d, foot:129@3f25db7e, stk:72@c7ca6a86, auth:72@645944bd/28@c1f171d0", "15921 pop VM:88663680:sym#4263 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15922 ret require_auth_for_args -> Ok(Void)": "cpu:443287087, mem:268139979, objs:6@fd6ba954/2486@9b063ba3, vm:-/-, store:-/130@fffd9d09, foot:130@e38d7487, stk:71@f2a32de7, auth:71@8827defa/29@9fbd5128", + "15922 ret require_auth_for_args -> Ok(Void)": "cpu:443287087, mem:268139979, objs:6@fd6ba954/2486@9b063ba3, vm:-/-, store:-/130@fffd9d09, foot:130@e38d7487, stk:71@f2a32de7, auth:71@8827defa/29@385613a4", "15923 pop VM:88663680:sym#4245 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15924 ret require_auth_for_args -> Ok(Void)": "cpu:443456366, mem:268164817, objs:6@aa065753/2486@9b063ba3, vm:-/-, store:-/131@e1b1ffa6, foot:131@88b7b533, stk:70@935a3adf, auth:70@a98bd75d/30@be85ca24", + "15924 ret require_auth_for_args -> Ok(Void)": "cpu:443456366, mem:268164817, objs:6@aa065753/2486@9b063ba3, vm:-/-, store:-/131@e1b1ffa6, foot:131@88b7b533, stk:70@935a3adf, auth:70@a98bd75d/30@74720e8a", "15925 pop VM:88663680:sym#4227 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15926 ret require_auth_for_args -> Ok(Void)": "cpu:443625695, mem:268189841, objs:6@f967a675/2486@9b063ba3, vm:-/-, store:-/132@2f4bddd4, foot:132@d66e3b89, stk:69@f519486f, auth:69@fa30289b/31@f2ea2613", + "15926 ret require_auth_for_args -> Ok(Void)": "cpu:443625695, mem:268189841, objs:6@f967a675/2486@9b063ba3, vm:-/-, store:-/132@2f4bddd4, foot:132@d66e3b89, stk:69@f519486f, auth:69@fa30289b/31@c400c1d4", "15927 pop VM:88663680:sym#4209 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15928 ret require_auth_for_args -> Ok(Void)": "cpu:443793036, mem:268215051, objs:6@1be79e3d/2486@9b063ba3, vm:-/-, store:-/133@56d6b51e, foot:133@48b3d668, stk:68@460323a9, auth:68@8aace2b/32@e8b33edf", + "15928 ret require_auth_for_args -> Ok(Void)": "cpu:443793036, mem:268215051, objs:6@1be79e3d/2486@9b063ba3, vm:-/-, store:-/133@56d6b51e, foot:133@48b3d668, stk:68@460323a9, auth:68@8aace2b/32@c0b0123e", "15929 pop VM:88663680:sym#4191 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1593 call symbol_new_from_slice(14)": "cpu:211784362, mem:132899290", - "15930 ret require_auth_for_args -> Ok(Void)": "cpu:443964493, mem:268240447, objs:6@92b07a43/2486@9b063ba3, vm:-/-, store:-/134@d724d9f4, foot:134@87b874c6, stk:67@4b0c99ef, auth:67@e1fa2e12/33@ef82d160", + "15930 ret require_auth_for_args -> Ok(Void)": "cpu:443964493, mem:268240447, objs:6@92b07a43/2486@9b063ba3, vm:-/-, store:-/134@d724d9f4, foot:134@87b874c6, stk:67@4b0c99ef, auth:67@e1fa2e12/33@82f7380f", "15931 pop VM:88663680:sym#4173 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15932 ret require_auth_for_args -> Ok(Void)": "cpu:444134978, mem:268266029, objs:6@86c4a6fe/2486@9b063ba3, vm:-/-, store:-/135@69b9dc37, foot:135@f4743bf6, stk:66@3f690fa0, auth:66@9f383a8/34@9e4bd287", + "15932 ret require_auth_for_args -> Ok(Void)": "cpu:444134978, mem:268266029, objs:6@86c4a6fe/2486@9b063ba3, vm:-/-, store:-/135@69b9dc37, foot:135@f4743bf6, stk:66@3f690fa0, auth:66@9f383a8/34@6bae787c", "15933 pop VM:88663680:sym#4155 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15934 ret require_auth_for_args -> Ok(Void)": "cpu:444307549, mem:268291797, objs:6@104fadd1/2486@9b063ba3, vm:-/-, store:-/136@e9d4c066, foot:136@570d27e5, stk:65@72cc5b18, auth:65@b9a97767/35@1d602c7b", + "15934 ret require_auth_for_args -> Ok(Void)": "cpu:444307549, mem:268291797, objs:6@104fadd1/2486@9b063ba3, vm:-/-, store:-/136@e9d4c066, foot:136@570d27e5, stk:65@72cc5b18, auth:65@b9a97767/35@5dc9da47", "15935 pop VM:88663680:sym#4137 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15936 ret require_auth_for_args -> Ok(Void)": "cpu:444481180, mem:268317751, objs:6@466419e8/2486@9b063ba3, vm:-/-, store:-/137@3a26c321, foot:137@3ba31400, stk:64@dca47100, auth:64@84fed67e/36@863e570c", + "15936 ret require_auth_for_args -> Ok(Void)": "cpu:444481180, mem:268317751, objs:6@466419e8/2486@9b063ba3, vm:-/-, store:-/137@3a26c321, foot:137@3ba31400, stk:64@dca47100, auth:64@84fed67e/36@fb9d5dd3", "15937 pop VM:88663680:sym#4119 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15938 ret require_auth_for_args -> Ok(Void)": "cpu:444655877, mem:268343891, objs:6@4df742f/2486@9b063ba3, vm:-/-, store:-/138@2b17b7af, foot:138@d628a523, stk:63@e916dcab, auth:63@2216aa93/37@85ed9051", + "15938 ret require_auth_for_args -> Ok(Void)": "cpu:444655877, mem:268343891, objs:6@4df742f/2486@9b063ba3, vm:-/-, store:-/138@2b17b7af, foot:138@d628a523, stk:63@e916dcab, auth:63@2216aa93/37@78e17677", "15939 pop VM:88663680:sym#4101 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1594 ret symbol_new_from_slice -> Ok(Symbol(obj#1793))": "cpu:211787399, mem:132899384, objs:-/897@54d42e0e", - "15940 ret require_auth_for_args -> Ok(Void)": "cpu:444831636, mem:268370217, objs:6@83b1493c/2486@9b063ba3, vm:-/-, store:-/139@1632db77, foot:139@c3504ff5, stk:62@7c98fafd, auth:62@f610ad3d/38@d5079e3f", + "15940 ret require_auth_for_args -> Ok(Void)": "cpu:444831636, mem:268370217, objs:6@83b1493c/2486@9b063ba3, vm:-/-, store:-/139@1632db77, foot:139@c3504ff5, stk:62@7c98fafd, auth:62@f610ad3d/38@126eac2d", "15941 pop VM:88663680:sym#4083 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15942 ret require_auth_for_args -> Ok(Void)": "cpu:445007445, mem:268396729, objs:6@e0770dc8/2486@9b063ba3, vm:-/-, store:-/140@47b2aa26, foot:140@afab1eca, stk:61@97bad9a9, auth:61@97ccc004/39@e3c26476", + "15942 ret require_auth_for_args -> Ok(Void)": "cpu:445007445, mem:268396729, objs:6@e0770dc8/2486@9b063ba3, vm:-/-, store:-/140@47b2aa26, foot:140@afab1eca, stk:61@97bad9a9, auth:61@97ccc004/39@8926e0e5", "15943 pop VM:88663680:sym#4065 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15944 ret require_auth_for_args -> Ok(Void)": "cpu:445187362, mem:268423427, objs:6@754b7cb9/2486@9b063ba3, vm:-/-, store:-/141@df483321, foot:141@85f5fd1c, stk:60@e1940b4d, auth:60@bb22e4a2/40@57755428", + "15944 ret require_auth_for_args -> Ok(Void)": "cpu:445187362, mem:268423427, objs:6@754b7cb9/2486@9b063ba3, vm:-/-, store:-/141@df483321, foot:141@85f5fd1c, stk:60@e1940b4d, auth:60@bb22e4a2/40@45643acb", "15945 pop VM:88663680:sym#4047 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15946 ret require_auth_for_args -> Ok(Void)": "cpu:445365297, mem:268450311, objs:6@9b7d4019/2486@9b063ba3, vm:-/-, store:-/142@6055a0b9, foot:142@614951e6, stk:59@a8487e74, auth:59@4ba8f486/41@2fd32cf3", + "15946 ret require_auth_for_args -> Ok(Void)": "cpu:445365297, mem:268450311, objs:6@9b7d4019/2486@9b063ba3, vm:-/-, store:-/142@6055a0b9, foot:142@614951e6, stk:59@a8487e74, auth:59@4ba8f486/41@73d089a9", "15947 pop VM:88663680:sym#4029 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15948 ret require_auth_for_args -> Ok(Void)": "cpu:445544292, mem:268477381, objs:6@4fab9232/2486@9b063ba3, vm:-/-, store:-/143@3e0ef8a6, foot:143@554b5dee, stk:58@7968333d, auth:58@4c87870c/42@7f59744a", + "15948 ret require_auth_for_args -> Ok(Void)": "cpu:445544292, mem:268477381, objs:6@4fab9232/2486@9b063ba3, vm:-/-, store:-/143@3e0ef8a6, foot:143@554b5dee, stk:58@7968333d, auth:58@4c87870c/42@65f4ff56", "15949 pop VM:88663680:sym#4011 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1595 call vec_new_from_slice(1)": "", - "15950 ret require_auth_for_args -> Ok(Void)": "cpu:445726391, mem:268504637, objs:6@babc8503/2486@9b063ba3, vm:-/-, store:-/144@7fa7d3a3, foot:144@20a0b997, stk:57@425ea4d9, auth:57@211b21d0/43@58d7ee93", + "15950 ret require_auth_for_args -> Ok(Void)": "cpu:445726391, mem:268504637, objs:6@babc8503/2486@9b063ba3, vm:-/-, store:-/144@7fa7d3a3, foot:144@20a0b997, stk:57@425ea4d9, auth:57@211b21d0/43@e3394469", "15951 pop VM:88663680:sym#3993 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15952 ret require_auth_for_args -> Ok(Void)": "cpu:445909552, mem:268532079, objs:6@279ddd63/2486@9b063ba3, vm:-/-, store:-/145@caa509e, foot:145@557b2dbf, stk:56@eaa51ca3, auth:56@5a778782/44@87860e2a", + "15952 ret require_auth_for_args -> Ok(Void)": "cpu:445909552, mem:268532079, objs:6@279ddd63/2486@9b063ba3, vm:-/-, store:-/145@caa509e, foot:145@557b2dbf, stk:56@eaa51ca3, auth:56@5a778782/44@2171467f", "15953 pop VM:88663680:sym#3975 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15954 ret require_auth_for_args -> Ok(Void)": "cpu:446093777, mem:268559707, objs:6@691172a/2486@9b063ba3, vm:-/-, store:-/146@7478b285, foot:146@80efcd5f, stk:55@3b74cdab, auth:55@8edaf67e/45@d281bb3d", + "15954 ret require_auth_for_args -> Ok(Void)": "cpu:446093777, mem:268559707, objs:6@691172a/2486@9b063ba3, vm:-/-, store:-/146@7478b285, foot:146@80efcd5f, stk:55@3b74cdab, auth:55@8edaf67e/45@b897065a", "15955 pop VM:88663680:sym#3957 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15956 ret require_auth_for_args -> Ok(Void)": "cpu:446279064, mem:268587521, objs:6@70a5fcde/2486@9b063ba3, vm:-/-, store:-/147@a5c6d3f8, foot:147@4f09b4d4, stk:54@a5c1955b, auth:54@d04d0718/46@e0d2203c", + "15956 ret require_auth_for_args -> Ok(Void)": "cpu:446279064, mem:268587521, objs:6@70a5fcde/2486@9b063ba3, vm:-/-, store:-/147@a5c6d3f8, foot:147@4f09b4d4, stk:54@a5c1955b, auth:54@d04d0718/46@3792cdd2", "15957 pop VM:88663680:sym#3939 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15958 ret require_auth_for_args -> Ok(Void)": "cpu:446465415, mem:268615521, objs:6@e6edbdae/2486@9b063ba3, vm:-/-, store:-/148@560b21b8, foot:148@6c00f647, stk:53@eaf5cbe, auth:53@5f88b02f/47@545a0a03", + "15958 ret require_auth_for_args -> Ok(Void)": "cpu:446465415, mem:268615521, objs:6@e6edbdae/2486@9b063ba3, vm:-/-, store:-/148@560b21b8, foot:148@6c00f647, stk:53@eaf5cbe, auth:53@5f88b02f/47@9941367f", "15959 pop VM:88663680:sym#3921 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1596 ret vec_new_from_slice -> Ok(Vec(obj#1795))": "cpu:211790293, mem:132899472, objs:-/898@521c0ee", - "15960 ret require_auth_for_args -> Ok(Void)": "cpu:446654862, mem:268643707, objs:6@e4a5b938/2486@9b063ba3, vm:-/-, store:-/149@849af3b6, foot:149@fe790212, stk:52@c8ec08ac, auth:52@784dc0bf/48@7ea871b7", + "15960 ret require_auth_for_args -> Ok(Void)": "cpu:446654862, mem:268643707, objs:6@e4a5b938/2486@9b063ba3, vm:-/-, store:-/149@849af3b6, foot:149@fe790212, stk:52@c8ec08ac, auth:52@784dc0bf/48@5c438bb", "15961 pop VM:88663680:sym#3903 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15962 ret require_auth_for_args -> Ok(Void)": "cpu:446840293, mem:268672079, objs:6@23ac3da5/2486@9b063ba3, vm:-/-, store:-/150@66c90d44, foot:150@277e326, stk:51@d6a2ba41, auth:51@522c6456/49@4bb72f45", + "15962 ret require_auth_for_args -> Ok(Void)": "cpu:446840293, mem:268672079, objs:6@23ac3da5/2486@9b063ba3, vm:-/-, store:-/150@66c90d44, foot:150@277e326, stk:51@d6a2ba41, auth:51@522c6456/49@2093c2a5", "15963 pop VM:88663680:sym#3885 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15964 ret require_auth_for_args -> Ok(Void)": "cpu:447028818, mem:268700637, objs:6@225b41eb/2486@9b063ba3, vm:-/-, store:-/151@b6237924, foot:151@16524781, stk:50@c36baee0, auth:50@2cfdfd38/50@76eec6ce", + "15964 ret require_auth_for_args -> Ok(Void)": "cpu:447028818, mem:268700637, objs:6@225b41eb/2486@9b063ba3, vm:-/-, store:-/151@b6237924, foot:151@16524781, stk:50@c36baee0, auth:50@2cfdfd38/50@d5750e70", "15965 pop VM:88663680:sym#3867 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15966 ret require_auth_for_args -> Ok(Void)": "cpu:447219427, mem:268729381, objs:6@8afb327b/2486@9b063ba3, vm:-/-, store:-/152@a82efd8d, foot:152@14c20009, stk:49@4006840e, auth:49@a59e1027/51@6b964b6a", + "15966 ret require_auth_for_args -> Ok(Void)": "cpu:447219427, mem:268729381, objs:6@8afb327b/2486@9b063ba3, vm:-/-, store:-/152@a82efd8d, foot:152@14c20009, stk:49@4006840e, auth:49@a59e1027/51@ff7dda02", "15967 pop VM:88663680:sym#3849 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15968 ret require_auth_for_args -> Ok(Void)": "cpu:447410082, mem:268758311, objs:6@ce7697c8/2486@9b063ba3, vm:-/-, store:-/153@569798c0, foot:153@c1844a57, stk:48@6b3d2e5d, auth:48@fbdba925/52@89b934a3", + "15968 ret require_auth_for_args -> Ok(Void)": "cpu:447410082, mem:268758311, objs:6@ce7697c8/2486@9b063ba3, vm:-/-, store:-/153@569798c0, foot:153@c1844a57, stk:48@6b3d2e5d, auth:48@fbdba925/52@9915ac91", "15969 pop VM:88663680:sym#3831 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1597 call vec_new_from_slice(1)": "cpu:211794530, mem:132899582", - "15970 ret require_auth_for_args -> Ok(Void)": "cpu:447602819, mem:268787427, objs:6@d4867aea/2486@9b063ba3, vm:-/-, store:-/154@e3c45f6b, foot:154@5c9a8728, stk:47@7d8754d5, auth:47@b5bf038b/53@6139ba40", + "15970 ret require_auth_for_args -> Ok(Void)": "cpu:447602819, mem:268787427, objs:6@d4867aea/2486@9b063ba3, vm:-/-, store:-/154@e3c45f6b, foot:154@5c9a8728, stk:47@7d8754d5, auth:47@b5bf038b/53@ca5c7ed7", "15971 pop VM:88663680:sym#3813 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15972 ret require_auth_for_args -> Ok(Void)": "cpu:447797634, mem:268816729, objs:6@3b308096/2486@9b063ba3, vm:-/-, store:-/155@ab3db220, foot:155@1cf6a54a, stk:46@53978afd, auth:46@56765c20/54@8231d61a", + "15972 ret require_auth_for_args -> Ok(Void)": "cpu:447797634, mem:268816729, objs:6@3b308096/2486@9b063ba3, vm:-/-, store:-/155@ab3db220, foot:155@1cf6a54a, stk:46@53978afd, auth:46@56765c20/54@c6e84e22", "15973 pop VM:88663680:sym#3795 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15974 ret require_auth_for_args -> Ok(Void)": "cpu:447992497, mem:268846217, objs:6@7770ba1/2486@9b063ba3, vm:-/-, store:-/156@1e0c26f3, foot:156@3d4ffd8d, stk:45@f0ea740e, auth:45@1e95ccd9/55@c030e698", + "15974 ret require_auth_for_args -> Ok(Void)": "cpu:447992497, mem:268846217, objs:6@7770ba1/2486@9b063ba3, vm:-/-, store:-/156@1e0c26f3, foot:156@3d4ffd8d, stk:45@f0ea740e, auth:45@1e95ccd9/55@f14371d7", "15975 pop VM:88663680:sym#3777 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15976 ret require_auth_for_args -> Ok(Void)": "cpu:448188422, mem:268875891, objs:6@71bc235c/2486@9b063ba3, vm:-/-, store:-/157@7808be73, foot:157@d4eb7004, stk:44@88314a80, auth:44@9c848851/56@baae9a06", + "15976 ret require_auth_for_args -> Ok(Void)": "cpu:448188422, mem:268875891, objs:6@71bc235c/2486@9b063ba3, vm:-/-, store:-/157@7808be73, foot:157@d4eb7004, stk:44@88314a80, auth:44@9c848851/56@f33c26a9", "15977 pop VM:88663680:sym#3759 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15978 ret require_auth_for_args -> Ok(Void)": "cpu:448384395, mem:268905751, objs:6@5da1fe15/2486@9b063ba3, vm:-/-, store:-/158@6f653b1e, foot:158@d7373fbb, stk:43@27319209, auth:43@19b6ddf8/57@7c17d3d0", + "15978 ret require_auth_for_args -> Ok(Void)": "cpu:448384395, mem:268905751, objs:6@5da1fe15/2486@9b063ba3, vm:-/-, store:-/158@6f653b1e, foot:158@d7373fbb, stk:43@27319209, auth:43@19b6ddf8/57@6bc9f28d", "15979 pop VM:88663680:sym#3741 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1598 ret vec_new_from_slice -> Ok(Vec(obj#1797))": "cpu:211797316, mem:132899670, objs:-/899@671e12e7", - "15980 ret require_auth_for_args -> Ok(Void)": "cpu:448584480, mem:268935797, objs:6@ef522ddf/2486@9b063ba3, vm:-/-, store:-/159@a0396917, foot:159@cdf1a941, stk:42@1fcaf193, auth:42@88d2da86/58@c9d3dfdf", + "15980 ret require_auth_for_args -> Ok(Void)": "cpu:448584480, mem:268935797, objs:6@ef522ddf/2486@9b063ba3, vm:-/-, store:-/159@a0396917, foot:159@cdf1a941, stk:42@1fcaf193, auth:42@88d2da86/58@c45342d0", "15981 pop VM:88663680:sym#3723 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15982 ret require_auth_for_args -> Ok(Void)": "cpu:448780555, mem:268966029, objs:6@74ef15e2/2486@9b063ba3, vm:-/-, store:-/160@27130eb2, foot:160@2b8bd2a0, stk:41@c4c2eece, auth:41@a6bed382/59@484b33e6", + "15982 ret require_auth_for_args -> Ok(Void)": "cpu:448780555, mem:268966029, objs:6@74ef15e2/2486@9b063ba3, vm:-/-, store:-/160@27130eb2, foot:160@2b8bd2a0, stk:41@c4c2eece, auth:41@a6bed382/59@f87ad261", "15983 pop VM:88663680:sym#3705 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15984 ret require_auth_for_args -> Ok(Void)": "cpu:448979722, mem:268996447, objs:6@1f6c36fd/2486@9b063ba3, vm:-/-, store:-/161@1dc19bf0, foot:161@c6031db3, stk:40@829087d7, auth:40@82ad913a/60@df4e4c98", + "15984 ret require_auth_for_args -> Ok(Void)": "cpu:448979722, mem:268996447, objs:6@1f6c36fd/2486@9b063ba3, vm:-/-, store:-/161@1dc19bf0, foot:161@c6031db3, stk:40@829087d7, auth:40@82ad913a/60@323a965a", "15985 pop VM:88663680:sym#3687 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15986 ret require_auth_for_args -> Ok(Void)": "cpu:449180971, mem:269027051, objs:6@a6ab80fe/2486@9b063ba3, vm:-/-, store:-/162@8b8a07d2, foot:162@144099b4, stk:39@d8648589, auth:39@72a2863a/61@bb623d5c", + "15986 ret require_auth_for_args -> Ok(Void)": "cpu:449180971, mem:269027051, objs:6@a6ab80fe/2486@9b063ba3, vm:-/-, store:-/162@8b8a07d2, foot:162@144099b4, stk:39@d8648589, auth:39@72a2863a/61@20095be2", "15987 pop VM:88663680:sym#3669 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15988 ret require_auth_for_args -> Ok(Void)": "cpu:449384296, mem:269057841, objs:6@946449c7/2486@9b063ba3, vm:-/-, store:-/163@37b9d4a0, foot:163@e24a5277, stk:38@e3787f59, auth:38@be72f42c/62@9805b979", + "15988 ret require_auth_for_args -> Ok(Void)": "cpu:449384296, mem:269057841, objs:6@946449c7/2486@9b063ba3, vm:-/-, store:-/163@37b9d4a0, foot:163@e24a5277, stk:38@e3787f59, auth:38@be72f42c/62@319e98b1", "15989 pop VM:88663680:sym#3651 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1599 call call(Address(obj#1399), Symbol(set_depth), Vec(obj#1797))": "", - "15990 ret require_auth_for_args -> Ok(Void)": "cpu:449587673, mem:269088817, objs:6@e7b45293/2486@9b063ba3, vm:-/-, store:-/164@2bfee940, foot:164@419edb8e, stk:37@97b8f775, auth:37@bc299701/63@c655a35f", + "15990 ret require_auth_for_args -> Ok(Void)": "cpu:449587673, mem:269088817, objs:6@e7b45293/2486@9b063ba3, vm:-/-, store:-/164@2bfee940, foot:164@419edb8e, stk:37@97b8f775, auth:37@bc299701/63@63325433", "15991 pop VM:88663680:sym#3633 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15992 ret require_auth_for_args -> Ok(Void)": "cpu:449794142, mem:269119979, objs:6@76d22f38/2486@9b063ba3, vm:-/-, store:-/165@3502a3d1, foot:165@4511f522, stk:36@94c239b5, auth:36@52d76081/64@9d267215", + "15992 ret require_auth_for_args -> Ok(Void)": "cpu:449794142, mem:269119979, objs:6@76d22f38/2486@9b063ba3, vm:-/-, store:-/165@3502a3d1, foot:165@4511f522, stk:36@94c239b5, auth:36@52d76081/64@3038565f", "15993 pop VM:88663680:sym#3615 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15994 ret require_auth_for_args -> Ok(Void)": "cpu:449999645, mem:269151327, objs:6@d3cf250f/2486@9b063ba3, vm:-/-, store:-/166@eae35bdf, foot:166@608f28be, stk:35@e6b53a8a, auth:35@6ac911da/65@d847a3f8", + "15994 ret require_auth_for_args -> Ok(Void)": "cpu:449999645, mem:269151327, objs:6@d3cf250f/2486@9b063ba3, vm:-/-, store:-/166@eae35bdf, foot:166@608f28be, stk:35@e6b53a8a, auth:35@6ac911da/65@f30d25ba", "15995 pop VM:88663680:sym#3597 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15996 ret require_auth_for_args -> Ok(Void)": "cpu:450208240, mem:269182861, objs:6@18e531fd/2486@9b063ba3, vm:-/-, store:-/167@230b702e, foot:167@52a7cbb4, stk:34@8c19a21b, auth:34@3f742c7d/66@5413083e", + "15996 ret require_auth_for_args -> Ok(Void)": "cpu:450208240, mem:269182861, objs:6@18e531fd/2486@9b063ba3, vm:-/-, store:-/167@230b702e, foot:167@52a7cbb4, stk:34@8c19a21b, auth:34@3f742c7d/66@c8dc5628", "15997 pop VM:88663680:sym#3579 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15998 ret require_auth_for_args -> Ok(Void)": "cpu:450415873, mem:269214581, objs:6@6dde3166/2486@9b063ba3, vm:-/-, store:-/168@eb3bdb9d, foot:168@42eac7ad, stk:33@7b9ac45b, auth:33@69141765/67@de51db9b", + "15998 ret require_auth_for_args -> Ok(Void)": "cpu:450415873, mem:269214581, objs:6@6dde3166/2486@9b063ba3, vm:-/-, store:-/168@eb3bdb9d, foot:168@42eac7ad, stk:33@7b9ac45b, auth:33@69141765/67@b9f677b", "15999 pop VM:88663680:sym#3561 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1600 push VM:88663680:set_depth(U32(99))": "cpu:213758104, mem:134223065, objs:-/900@12285569, vm:1114112@a6f378b8/7@ae192e85, stk:1@259ea564, auth:1@cd859a28/-", - "16000 ret require_auth_for_args -> Ok(Void)": "cpu:450625584, mem:269246487, objs:6@dd40fc5b/2486@9b063ba3, vm:-/-, store:-/169@d6322277, foot:169@286def02, stk:32@608b5b54, auth:32@824c08cd/68@42a709a9", + "16000 ret require_auth_for_args -> Ok(Void)": "cpu:450625584, mem:269246487, objs:6@dd40fc5b/2486@9b063ba3, vm:-/-, store:-/169@d6322277, foot:169@286def02, stk:32@608b5b54, auth:32@824c08cd/68@8b06761", "16001 pop VM:88663680:sym#3543 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16002 ret require_auth_for_args -> Ok(Void)": "cpu:450835345, mem:269278579, objs:6@669b031/2486@9b063ba3, vm:-/-, store:-/170@60a3379a, foot:170@b530784e, stk:31@be93a280, auth:31@a2c8cd3d/69@a364916a", + "16002 ret require_auth_for_args -> Ok(Void)": "cpu:450835345, mem:269278579, objs:6@669b031/2486@9b063ba3, vm:-/-, store:-/170@60a3379a, foot:170@b530784e, stk:31@be93a280, auth:31@a2c8cd3d/69@a85d4d90", "16003 pop VM:88663680:sym#3525 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16004 ret require_auth_for_args -> Ok(Void)": "cpu:451046166, mem:269310857, objs:6@e67fe44f/2486@9b063ba3, vm:-/-, store:-/171@713824f8, foot:171@35693e0c, stk:30@806451ff, auth:30@9a437baf/70@b161f27f", + "16004 ret require_auth_for_args -> Ok(Void)": "cpu:451046166, mem:269310857, objs:6@e67fe44f/2486@9b063ba3, vm:-/-, store:-/171@713824f8, foot:171@35693e0c, stk:30@806451ff, auth:30@9a437baf/70@d5769233", "16005 pop VM:88663680:sym#3507 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16006 ret require_auth_for_args -> Ok(Void)": "cpu:451258053, mem:269343321, objs:6@b279b2ca/2486@9b063ba3, vm:-/-, store:-/172@6b0b9628, foot:172@28bce183, stk:29@a89f1b0a, auth:29@b886d50f/71@6df58e0a", + "16006 ret require_auth_for_args -> Ok(Void)": "cpu:451258053, mem:269343321, objs:6@b279b2ca/2486@9b063ba3, vm:-/-, store:-/172@6b0b9628, foot:172@28bce183, stk:29@a89f1b0a, auth:29@b886d50f/71@14bc5fcb", "16007 pop VM:88663680:sym#3489 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16008 ret require_auth_for_args -> Ok(Void)": "cpu:451473032, mem:269375971, objs:6@694e3561/2486@9b063ba3, vm:-/-, store:-/173@d2c23a45, foot:173@1ae00582, stk:28@e0f6d023, auth:28@3ff20958/72@4146b5a4", + "16008 ret require_auth_for_args -> Ok(Void)": "cpu:451473032, mem:269375971, objs:6@694e3561/2486@9b063ba3, vm:-/-, store:-/173@d2c23a45, foot:173@1ae00582, stk:28@e0f6d023, auth:28@3ff20958/72@293163ab", "16009 pop VM:88663680:sym#3471 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1601 call put_contract_data(Symbol(d), U32(99), Instance)": "cpu:213760875, mem:134223111, vm:-/-", - "16010 ret require_auth_for_args -> Ok(Void)": "cpu:451686029, mem:269408807, objs:6@a5e72634/2486@9b063ba3, vm:-/-, store:-/174@ec640ea4, foot:174@566f2a4b, stk:27@a45a4b74, auth:27@e7b679f1/73@f4bc0cae", + "16010 ret require_auth_for_args -> Ok(Void)": "cpu:451686029, mem:269408807, objs:6@a5e72634/2486@9b063ba3, vm:-/-, store:-/174@ec640ea4, foot:174@566f2a4b, stk:27@a45a4b74, auth:27@e7b679f1/73@50197e6d", "16011 pop VM:88663680:sym#3453 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16012 ret require_auth_for_args -> Ok(Void)": "cpu:451896024, mem:269441829, objs:6@847afa42/2486@9b063ba3, vm:-/-, store:-/175@f31a5833, foot:175@cfca1598, stk:26@6fe03fbf, auth:26@c7dd0c4/74@adaa0c86", + "16012 ret require_auth_for_args -> Ok(Void)": "cpu:451896024, mem:269441829, objs:6@847afa42/2486@9b063ba3, vm:-/-, store:-/175@f31a5833, foot:175@cfca1598, stk:26@6fe03fbf, auth:26@c7dd0c4/74@e3f22d99", "16013 pop VM:88663680:sym#3435 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16014 ret require_auth_for_args -> Ok(Void)": "cpu:452112169, mem:269475037, objs:6@bcf9ca3c/2486@9b063ba3, vm:-/-, store:-/176@ce1a0aa8, foot:176@8b50931b, stk:25@cc2b3ad, auth:25@4bad9d16/75@d19f24b", + "16014 ret require_auth_for_args -> Ok(Void)": "cpu:452112169, mem:269475037, objs:6@bcf9ca3c/2486@9b063ba3, vm:-/-, store:-/176@ce1a0aa8, foot:176@8b50931b, stk:25@cc2b3ad, auth:25@4bad9d16/75@afce6251", "16015 pop VM:88663680:sym#3417 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16016 ret require_auth_for_args -> Ok(Void)": "cpu:452331408, mem:269508431, objs:6@ec04d4f8/2486@9b063ba3, vm:-/-, store:-/177@c2f750aa, foot:177@8d784fd5, stk:24@6df6ebb6, auth:24@48cb09aa/76@18fac17", + "16016 ret require_auth_for_args -> Ok(Void)": "cpu:452331408, mem:269508431, objs:6@ec04d4f8/2486@9b063ba3, vm:-/-, store:-/177@c2f750aa, foot:177@8d784fd5, stk:24@6df6ebb6, auth:24@48cb09aa/76@f86e64a0", "16017 pop VM:88663680:sym#3399 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16018 ret require_auth_for_args -> Ok(Void)": "cpu:452546631, mem:269542011, objs:6@a8b336b9/2486@9b063ba3, vm:-/-, store:-/178@c8d1c3b, foot:178@7d6bafa1, stk:23@254a143, auth:23@d1a25bf/77@1bc0e4b8", + "16018 ret require_auth_for_args -> Ok(Void)": "cpu:452546631, mem:269542011, objs:6@a8b336b9/2486@9b063ba3, vm:-/-, store:-/178@c8d1c3b, foot:178@7d6bafa1, stk:23@254a143, auth:23@d1a25bf/77@a046fa1a", "16019 pop VM:88663680:sym#3381 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1602 ret put_contract_data -> Ok(Void)": "cpu:213764142, mem:134223151, store:1@2367e9b/101@45d5c29c, stk:1@2872e024", - "16020 ret require_auth_for_args -> Ok(Void)": "cpu:452763932, mem:269575777, objs:6@319f85fe/2486@9b063ba3, vm:-/-, store:-/179@656c1bf9, foot:179@e1907180, stk:22@2da86981, auth:22@16c05aab/78@1a9262a", + "16020 ret require_auth_for_args -> Ok(Void)": "cpu:452763932, mem:269575777, objs:6@319f85fe/2486@9b063ba3, vm:-/-, store:-/179@656c1bf9, foot:179@e1907180, stk:22@2da86981, auth:22@16c05aab/78@9afe314b", "16021 pop VM:88663680:sym#3363 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16022 ret require_auth_for_args -> Ok(Void)": "cpu:452986363, mem:269609729, objs:6@2ec953d5/2486@9b063ba3, vm:-/-, store:-/180@47c1de1d, foot:180@e88bb955, stk:21@59a3b76f, auth:21@3b832e86/79@7d13c18b", + "16022 ret require_auth_for_args -> Ok(Void)": "cpu:452986363, mem:269609729, objs:6@2ec953d5/2486@9b063ba3, vm:-/-, store:-/180@47c1de1d, foot:180@e88bb955, stk:21@59a3b76f, auth:21@3b832e86/79@b4df9152", "16023 pop VM:88663680:sym#3345 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16024 ret require_auth_for_args -> Ok(Void)": "cpu:453205792, mem:269643867, objs:6@5574659/2486@9b063ba3, vm:-/-, store:-/181@f125d7c7, foot:181@1a58b65, stk:20@c65f5f6d, auth:20@5f1067df/80@dea0208e", + "16024 ret require_auth_for_args -> Ok(Void)": "cpu:453205792, mem:269643867, objs:6@5574659/2486@9b063ba3, vm:-/-, store:-/181@f125d7c7, foot:181@1a58b65, stk:20@c65f5f6d, auth:20@5f1067df/80@785c806c", "16025 pop VM:88663680:sym#3327 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16026 ret require_auth_for_args -> Ok(Void)": "cpu:453428317, mem:269678191, objs:6@95b6c1c9/2486@9b063ba3, vm:-/-, store:-/182@ee8fe642, foot:182@2cc7929, stk:19@221d4706, auth:19@58fdc3c6/81@12ea2f50", + "16026 ret require_auth_for_args -> Ok(Void)": "cpu:453428317, mem:269678191, objs:6@95b6c1c9/2486@9b063ba3, vm:-/-, store:-/182@ee8fe642, foot:182@2cc7929, stk:19@221d4706, auth:19@58fdc3c6/81@16792f0b", "16027 pop VM:88663680:sym#3309 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16028 ret require_auth_for_args -> Ok(Void)": "cpu:453650888, mem:269712701, objs:6@4f77163d/2486@9b063ba3, vm:-/-, store:-/183@48378a25, foot:183@eacf199b, stk:18@72d53227, auth:18@fdee93cd/82@d0613fa4", + "16028 ret require_auth_for_args -> Ok(Void)": "cpu:453650888, mem:269712701, objs:6@4f77163d/2486@9b063ba3, vm:-/-, store:-/183@48378a25, foot:183@eacf199b, stk:18@72d53227, auth:18@fdee93cd/82@99000569", "16029 pop VM:88663680:sym#3291 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1603 pop VM:88663680:set_depth -> Ok(Void)": "cpu:213816079, mem:134230587, vm:1114112@a6f378b8/7@ae192e85, store:1@2367e9b/101@3330a77", - "16030 ret require_auth_for_args -> Ok(Void)": "cpu:453875543, mem:269747397, objs:6@96ea94fc/2486@9b063ba3, vm:-/-, store:-/184@accc9d9f, foot:184@c0181c1b, stk:17@a74f2b43, auth:17@aaf504d6/83@ba0ac64d", + "16030 ret require_auth_for_args -> Ok(Void)": "cpu:453875543, mem:269747397, objs:6@96ea94fc/2486@9b063ba3, vm:-/-, store:-/184@accc9d9f, foot:184@c0181c1b, stk:17@a74f2b43, auth:17@aaf504d6/83@e21dede4", "16031 pop VM:88663680:sym#3273 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16032 ret require_auth_for_args -> Ok(Void)": "cpu:454103294, mem:269782279, objs:6@174ec902/2486@9b063ba3, vm:-/-, store:-/185@9a99b046, foot:185@403b392c, stk:16@24a957f6, auth:16@ab47d532/84@9dc456f7", + "16032 ret require_auth_for_args -> Ok(Void)": "cpu:454103294, mem:269782279, objs:6@174ec902/2486@9b063ba3, vm:-/-, store:-/185@9a99b046, foot:185@403b392c, stk:16@24a957f6, auth:16@ab47d532/84@60d76458", "16033 pop VM:88663680:sym#3255 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16034 ret require_auth_for_args -> Ok(Void)": "cpu:454331093, mem:269817347, objs:6@fbb54dd0/2486@9b063ba3, vm:-/-, store:-/186@23ff5f10, foot:186@541ab73d, stk:15@8d52440e, auth:15@b9d655c6/85@4f27cc6d", + "16034 ret require_auth_for_args -> Ok(Void)": "cpu:454331093, mem:269817347, objs:6@fbb54dd0/2486@9b063ba3, vm:-/-, store:-/186@23ff5f10, foot:186@541ab73d, stk:15@8d52440e, auth:15@b9d655c6/85@d1c9f463", "16035 pop VM:88663680:sym#3237 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16036 ret require_auth_for_args -> Ok(Void)": "cpu:454557922, mem:269852601, objs:6@c0084507/2486@9b063ba3, vm:-/-, store:-/187@83491d7, foot:187@24b0fb8a, stk:14@2427ad45, auth:14@b810afca/86@e6a07f89", + "16036 ret require_auth_for_args -> Ok(Void)": "cpu:454557922, mem:269852601, objs:6@c0084507/2486@9b063ba3, vm:-/-, store:-/187@83491d7, foot:187@24b0fb8a, stk:14@2427ad45, auth:14@b810afca/86@b602457a", "16037 pop VM:88663680:sym#3219 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16038 ret require_auth_for_args -> Ok(Void)": "cpu:454783783, mem:269888041, objs:6@632ee95a/2486@9b063ba3, vm:-/-, store:-/188@391b9615, foot:188@4925b650, stk:13@a7783a2e, auth:13@dbd3a68b/87@21b111d8", + "16038 ret require_auth_for_args -> Ok(Void)": "cpu:454783783, mem:269888041, objs:6@632ee95a/2486@9b063ba3, vm:-/-, store:-/188@391b9615, foot:188@4925b650, stk:13@a7783a2e, auth:13@dbd3a68b/87@7c1de17", "16039 pop VM:88663680:sym#3201 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1604 ret call -> Ok(Void)": " vm:-/-, store:-/101@3330a77, stk:-, auth:-/-", - "16040 ret require_auth_for_args -> Ok(Void)": "cpu:455015786, mem:269923667, objs:6@e3cb0536/2486@9b063ba3, vm:-/-, store:-/189@d60fb3fd, foot:189@8471cf22, stk:12@4d535f3d, auth:12@88878566/88@eb0e8264", + "16040 ret require_auth_for_args -> Ok(Void)": "cpu:455015786, mem:269923667, objs:6@e3cb0536/2486@9b063ba3, vm:-/-, store:-/189@d60fb3fd, foot:189@8471cf22, stk:12@4d535f3d, auth:12@88878566/88@90c51187", "16041 pop VM:88663680:sym#3183 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16042 ret require_auth_for_args -> Ok(Void)": "cpu:455241743, mem:269959479, objs:6@abde23a3/2486@9b063ba3, vm:-/-, store:-/190@de874dba, foot:190@e8306fc4, stk:11@fff8ac9f, auth:11@a85d5b0e/89@8f7ff7b4", + "16042 ret require_auth_for_args -> Ok(Void)": "cpu:455241743, mem:269959479, objs:6@abde23a3/2486@9b063ba3, vm:-/-, store:-/190@de874dba, foot:190@e8306fc4, stk:11@fff8ac9f, auth:11@a85d5b0e/89@e76569ee", "16043 pop VM:88663680:sym#3165 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16044 ret require_auth_for_args -> Ok(Void)": "cpu:455472826, mem:269995477, objs:6@1bc0a661/2486@9b063ba3, vm:-/-, store:-/191@59c0bded, foot:191@72ce8bdb, stk:10@4b9e5ca7, auth:10@e7bd3540/90@f65efe57", + "16044 ret require_auth_for_args -> Ok(Void)": "cpu:455472826, mem:269995477, objs:6@1bc0a661/2486@9b063ba3, vm:-/-, store:-/191@59c0bded, foot:191@72ce8bdb, stk:10@4b9e5ca7, auth:10@e7bd3540/90@82707f86", "16045 pop VM:88663680:sym#3147 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16046 ret require_auth_for_args -> Ok(Void)": "cpu:455704979, mem:270031661, objs:6@c24c5fa0/2486@9b063ba3, vm:-/-, store:-/192@2eab6a95, foot:192@d1fef564, stk:9@2c5b6269, auth:9@ec33f68f/91@5584c68", + "16046 ret require_auth_for_args -> Ok(Void)": "cpu:455704979, mem:270031661, objs:6@c24c5fa0/2486@9b063ba3, vm:-/-, store:-/192@2eab6a95, foot:192@d1fef564, stk:9@2c5b6269, auth:9@ec33f68f/91@c11d0226", "16047 pop VM:88663680:sym#3129 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16048 ret require_auth_for_args -> Ok(Void)": "cpu:455940224, mem:270068031, objs:6@30fa1991/2486@9b063ba3, vm:-/-, store:-/193@aa835346, foot:193@b0b03a90, stk:8@650e7c7f, auth:8@8160ef64/92@cdb03d29", + "16048 ret require_auth_for_args -> Ok(Void)": "cpu:455940224, mem:270068031, objs:6@30fa1991/2486@9b063ba3, vm:-/-, store:-/193@aa835346, foot:193@b0b03a90, stk:8@650e7c7f, auth:8@8160ef64/92@b2fefa4e", "16049 pop VM:88663680:sym#3111 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1605 call symbol_new_from_slice(12)": "cpu:213844211, mem:134254385, objs:-/910@59f85d0b", - "16050 ret require_auth_for_args -> Ok(Void)": "cpu:456175519, mem:270104587, objs:6@8859fc46/2486@9b063ba3, vm:-/-, store:-/194@2e195388, foot:194@b8784d11, stk:7@152dd782, auth:7@ebcc31f8/93@3728bab6", + "16050 ret require_auth_for_args -> Ok(Void)": "cpu:456175519, mem:270104587, objs:6@8859fc46/2486@9b063ba3, vm:-/-, store:-/194@2e195388, foot:194@b8784d11, stk:7@152dd782, auth:7@ebcc31f8/93@dde72174", "16051 pop VM:88663680:sym#3093 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16052 ret require_auth_for_args -> Ok(Void)": "cpu:456410860, mem:270141329, objs:6@16611e67/2486@9b063ba3, vm:-/-, store:-/195@c7fef963, foot:195@49ddf428, stk:6@f8fe60ee, auth:6@9fcc9592/94@feaf8f69", + "16052 ret require_auth_for_args -> Ok(Void)": "cpu:456410860, mem:270141329, objs:6@16611e67/2486@9b063ba3, vm:-/-, store:-/195@c7fef963, foot:195@49ddf428, stk:6@f8fe60ee, auth:6@9fcc9592/94@c69304ad", "16053 pop VM:88663680:sym#3075 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16054 ret require_auth_for_args -> Ok(Void)": "cpu:456648283, mem:270178257, objs:6@bd34f05e/2486@9b063ba3, vm:-/-, store:-/196@82614f8a, foot:196@ae398e39, stk:5@e026c75, auth:5@c8b580f0/95@c474496c", + "16054 ret require_auth_for_args -> Ok(Void)": "cpu:456648283, mem:270178257, objs:6@bd34f05e/2486@9b063ba3, vm:-/-, store:-/196@82614f8a, foot:196@ae398e39, stk:5@e026c75, auth:5@c8b580f0/95@d4a2e0e", "16055 pop VM:88663680:sym#3057 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16056 ret require_auth_for_args -> Ok(Void)": "cpu:456885750, mem:270215371, objs:6@55f3d793/2486@9b063ba3, vm:-/-, store:-/197@dffc151d, foot:197@121e6090, stk:4@b659ecf6, auth:4@9306758a/96@c42edd4a", + "16056 ret require_auth_for_args -> Ok(Void)": "cpu:456885750, mem:270215371, objs:6@55f3d793/2486@9b063ba3, vm:-/-, store:-/197@dffc151d, foot:197@121e6090, stk:4@b659ecf6, auth:4@9306758a/96@8d5097e5", "16057 pop VM:88663680:sym#3039 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16058 ret require_auth_for_args -> Ok(Void)": "cpu:457127331, mem:270252671, objs:6@a24509a/2486@9b063ba3, vm:-/-, store:-/198@c4f69e1e, foot:198@800ba589, stk:3@32826e62, auth:3@af82ce81/97@fcc8a86b", + "16058 ret require_auth_for_args -> Ok(Void)": "cpu:457127331, mem:270252671, objs:6@a24509a/2486@9b063ba3, vm:-/-, store:-/198@c4f69e1e, foot:198@800ba589, stk:3@32826e62, auth:3@af82ce81/97@3eb7e393", "16059 pop VM:88663680:sym#3021 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1606 ret symbol_new_from_slice -> Ok(Symbol(obj#1821))": "cpu:213847248, mem:134254477, objs:-/911@28120db8", - "16060 ret require_auth_for_args -> Ok(Void)": "cpu:457366924, mem:270290157, objs:6@c9babc95/2486@9b063ba3, vm:-/-, store:-/199@8c768cd4, foot:199@d862e423, stk:2@fd322ad, auth:2@898e1e4c/98@193ec04a", + "16060 ret require_auth_for_args -> Ok(Void)": "cpu:457366924, mem:270290157, objs:6@c9babc95/2486@9b063ba3, vm:-/-, store:-/199@8c768cd4, foot:199@d862e423, stk:2@fd322ad, auth:2@898e1e4c/98@ab61a145", "16061 pop VM:88663680:sym#3003 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "16062 ret require_auth_for_args -> Ok(Void)": "cpu:457608605, mem:270327829, objs:2@389fc46f/2486@9b063ba3, vm:-/-, store:-/200@6754e375, foot:200@4d259774, stk:1@db4954c8, auth:1@b97e1980/99@5f3a9541", + "16062 ret require_auth_for_args -> Ok(Void)": "cpu:457608605, mem:270327829, objs:2@389fc46f/2486@9b063ba3, vm:-/-, store:-/200@6754e375, foot:200@4d259774, stk:1@db4954c8, auth:1@b97e1980/99@8c4478ee", "16063 pop VM:88663680:call -> Ok(Void)": " vm:1114112@a6f378b8/7@ae192e85", "16064 ret call -> Ok(Void)": " objs:-/2486@9b063ba3, vm:-/-, stk:-, auth:-/-", "16065 end": "cpu:457608605, mem:270327829, prngs:-/9b4a753, objs:-/2486@9b063ba3, vm:-/-, evt:-, store:-/200@6754e375, foot:200@4d259774, stk:-, auth:-/-", diff --git a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit_with_xdr_deserialization.json b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit_with_xdr_deserialization.json index d291052dc..9835585a0 100644 --- a/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit_with_xdr_deserialization.json +++ b/soroban-env-host/observations/test__hostile_opt__test_deep_stack_call_succeeds_near_limit_with_xdr_deserialization.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2011761, mem:1318326, objs:-/5@a60269d1, auth:1@6c2ade56/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2012447", - " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@525240f7", + " 10 call get_ledger_network_id()": "cpu:2012705, auth:1@6c2ade56/1@72b99d18", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2015602, mem:1318438, objs:-/6@a06c2cba", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2053467, mem:1319944, objs:-/7@77a0a1db, store:-/2@ca7bd8a8, foot:2@c7956e9e, auth:-/1@c716b1ea", " 13 call bytes_new_from_slice(1723)": "cpu:2053722, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4053930, mem:2637748, objs:-/12@546c0606, auth:1@a7879343/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4054616", - " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@c690470a", + " 22 call get_ledger_network_id()": "cpu:4054874, auth:1@a7879343/1@a19a51b4", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4057771, mem:2637860, objs:-/13@8641253d", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4099512, mem:2639552, objs:-/14@20711f65, store:-/3@cd31c995, foot:3@fb973c1e, auth:-/1@f39d17e5", " 25 call bytes_new_from_slice(1723)": "cpu:4099767, auth:-/-", @@ -33,7 +33,7 @@ " 31 call create_contract(Address(obj#33), Bytes(obj#31), Bytes(obj#35))": "", " 32 call obj_cmp(Address(obj#37), Address(obj#33))": "cpu:6099975, mem:3957356, objs:-/19@51e48355, auth:1@cbbd7837/-", " 33 ret obj_cmp -> Ok(0)": "cpu:6100661", - " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@a4cf6e03", + " 34 call get_ledger_network_id()": "cpu:6100919, auth:1@cbbd7837/1@47f29939", " 35 ret get_ledger_network_id -> Ok(Bytes(obj#39))": "cpu:6103816, mem:3957468, objs:-/20@81732572", " 36 ret create_contract -> Ok(Address(obj#41))": "cpu:6144911, mem:3959346, objs:-/21@69ad5c25, store:-/4@b3a15027, foot:4@fa0f6bfc, auth:-/1@f7095008", " 37 call bytes_new_from_slice(1723)": "cpu:6145166, auth:-/-", @@ -45,7 +45,7 @@ " 43 call create_contract(Address(obj#47), Bytes(obj#45), Bytes(obj#49))": "", " 44 call obj_cmp(Address(obj#51), Address(obj#47))": "cpu:8145395, mem:5277150, objs:-/26@a092b5f, auth:1@67261b2f/-", " 45 ret obj_cmp -> Ok(0)": "cpu:8146081", - " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@11a86388", + " 46 call get_ledger_network_id()": "cpu:8146339, auth:1@67261b2f/1@24809fc3", " 47 ret get_ledger_network_id -> Ok(Bytes(obj#53))": "cpu:8149236, mem:5277262, objs:-/27@a7bff74e", " 48 ret create_contract -> Ok(Address(obj#55))": "cpu:8197003, mem:5279326, objs:-/28@9670d0cc, store:-/5@58e9c9eb, foot:5@81d1a3bf, auth:-/1@83ee389", " 49 call bytes_new_from_slice(1723)": "cpu:8197258, auth:-/-", @@ -57,7 +57,7 @@ " 55 call create_contract(Address(obj#61), Bytes(obj#59), Bytes(obj#63))": "", " 56 call obj_cmp(Address(obj#65), Address(obj#61))": "cpu:10197487, mem:6597130, objs:-/33@9dddfe41, auth:1@2aa08219/-", " 57 ret obj_cmp -> Ok(0)": "cpu:10198173", - " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@c0063591", + " 58 call get_ledger_network_id()": "cpu:10198431, auth:1@2aa08219/1@63a8e160", " 59 ret get_ledger_network_id -> Ok(Bytes(obj#67))": "cpu:10201328, mem:6597242, objs:-/34@6254c4ce", " 60 ret create_contract -> Ok(Address(obj#69))": "cpu:10249147, mem:6599492, objs:-/35@be977224, store:-/6@889e1830, foot:6@364e4b9c, auth:-/1@47f4d18a", " 61 call bytes_new_from_slice(1723)": "cpu:10249402, auth:-/-", @@ -69,7 +69,7 @@ " 67 call create_contract(Address(obj#75), Bytes(obj#73), Bytes(obj#77))": "", " 68 call obj_cmp(Address(obj#79), Address(obj#75))": "cpu:12249631, mem:7917296, objs:-/40@2f55f569, auth:1@e8341f65/-", " 69 ret obj_cmp -> Ok(0)": "cpu:12250317", - " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@ebc115d9", + " 70 call get_ledger_network_id()": "cpu:12250575, auth:1@e8341f65/1@9c248d", " 71 ret get_ledger_network_id -> Ok(Bytes(obj#81))": "cpu:12253472, mem:7917408, objs:-/41@b3ed0b57", " 72 ret create_contract -> Ok(Address(obj#83))": "cpu:12303367, mem:7919844, objs:-/42@cd5ce2c6, store:-/7@b061db62, foot:7@9320c72c, auth:-/1@1b3d937c", " 73 call bytes_new_from_slice(1723)": "cpu:12303622, auth:-/-", @@ -81,7 +81,7 @@ " 79 call create_contract(Address(obj#89), Bytes(obj#87), Bytes(obj#91))": "", " 80 call obj_cmp(Address(obj#93), Address(obj#89))": "cpu:14303851, mem:9237648, objs:-/47@92c2cfa5, auth:1@b20998ae/-", " 81 ret obj_cmp -> Ok(0)": "cpu:14304537", - " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@59dea197", + " 82 call get_ledger_network_id()": "cpu:14304795, auth:1@b20998ae/1@f80b6a67", " 83 ret get_ledger_network_id -> Ok(Bytes(obj#95))": "cpu:14307692, mem:9237760, objs:-/48@149b423f", " 84 ret create_contract -> Ok(Address(obj#97))": "cpu:14358717, mem:9240382, objs:-/49@3bf0a33b, store:-/8@786ebbf2, foot:8@ee264d76, auth:-/1@221f74c6", " 85 call bytes_new_from_slice(1723)": "cpu:14358972, auth:-/-", @@ -93,7 +93,7 @@ " 91 call create_contract(Address(obj#103), Bytes(obj#101), Bytes(obj#105))": "", " 92 call obj_cmp(Address(obj#107), Address(obj#103))": "cpu:16359220, mem:10558186, objs:-/54@da02b960, auth:1@48d6a5b6/-", " 93 ret obj_cmp -> Ok(0)": "cpu:16359906", - " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@219d787c", + " 94 call get_ledger_network_id()": "cpu:16360164, auth:1@48d6a5b6/1@81156bb8", " 95 ret get_ledger_network_id -> Ok(Bytes(obj#109))": "cpu:16363061, mem:10558298, objs:-/55@bb3ae225", " 96 ret create_contract -> Ok(Address(obj#111))": "cpu:16412374, mem:10561106, objs:-/56@51ce6ca1, store:-/9@f38d0f95, foot:9@5c828c77, auth:-/1@a42343f5", " 97 call bytes_new_from_slice(1723)": "cpu:16412629, auth:-/-", @@ -105,7 +105,7 @@ " 103 call create_contract(Address(obj#117), Bytes(obj#115), Bytes(obj#119))": "", " 104 call obj_cmp(Address(obj#121), Address(obj#117))": "cpu:18412877, mem:11878910, objs:-/61@61c34d4e, auth:1@f96e0eaf/-", " 105 ret obj_cmp -> Ok(0)": "cpu:18413563", - " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@cc6b59fa", + " 106 call get_ledger_network_id()": "cpu:18413821, auth:1@f96e0eaf/1@8cefe257", " 107 ret get_ledger_network_id -> Ok(Bytes(obj#123))": "cpu:18416718, mem:11879022, objs:-/62@99cabf3b", " 108 ret create_contract -> Ok(Address(obj#125))": "cpu:18472685, mem:11882016, objs:-/63@7f4b322d, store:-/10@ef434c8d, foot:10@317c61e3, auth:-/1@d0418fbc", " 109 call bytes_new_from_slice(1723)": "cpu:18472940, auth:-/-", @@ -117,7 +117,7 @@ " 115 call create_contract(Address(obj#131), Bytes(obj#129), Bytes(obj#133))": "", " 116 call obj_cmp(Address(obj#135), Address(obj#131))": "cpu:20473188, mem:13199820, objs:-/68@7f9f7f94, auth:1@5cc0479e/-", " 117 ret obj_cmp -> Ok(0)": "cpu:20473874", - " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@b017d899", + " 118 call get_ledger_network_id()": "cpu:20474132, auth:1@5cc0479e/1@d336881f", " 119 ret get_ledger_network_id -> Ok(Bytes(obj#137))": "cpu:20477029, mem:13199932, objs:-/69@80e69e15", " 120 ret create_contract -> Ok(Address(obj#139))": "cpu:20534058, mem:13203112, objs:-/70@1ab41456, store:-/11@e6b97191, foot:11@bd373101, auth:-/1@6fd7cdbe", " 121 call bytes_new_from_slice(1723)": "cpu:20534313, auth:-/-", @@ -129,7 +129,7 @@ " 127 call create_contract(Address(obj#145), Bytes(obj#143), Bytes(obj#147))": "", " 128 call obj_cmp(Address(obj#149), Address(obj#145))": "cpu:22534561, mem:14520916, objs:-/75@942af2dd, auth:1@4d46cea6/-", " 129 ret obj_cmp -> Ok(0)": "cpu:22535247", - " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@c791f0c8", + " 130 call get_ledger_network_id()": "cpu:22535505, auth:1@4d46cea6/1@7324855f", " 131 ret get_ledger_network_id -> Ok(Bytes(obj#151))": "cpu:22538402, mem:14521028, objs:-/76@f11550b8", " 132 ret create_contract -> Ok(Address(obj#153))": "cpu:22596497, mem:14524394, objs:-/77@9f3fd10e, store:-/12@7c2f9ba3, foot:12@35d2fc7a, auth:-/1@3eabf35c", " 133 call bytes_new_from_slice(1723)": "cpu:22596752, auth:-/-", @@ -141,7 +141,7 @@ " 139 call create_contract(Address(obj#159), Bytes(obj#157), Bytes(obj#161))": "", " 140 call obj_cmp(Address(obj#163), Address(obj#159))": "cpu:24597000, mem:15842198, objs:-/82@21bbc84c, auth:1@9e1b78d/-", " 141 ret obj_cmp -> Ok(0)": "cpu:24597686", - " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@6f759f1a", + " 142 call get_ledger_network_id()": "cpu:24597944, auth:1@9e1b78d/1@44fbf6bc", " 143 ret get_ledger_network_id -> Ok(Bytes(obj#165))": "cpu:24600841, mem:15842310, objs:-/83@e08739a8", " 144 ret create_contract -> Ok(Address(obj#167))": "cpu:24659996, mem:15845862, objs:-/84@ae4d6e4e, store:-/13@2b941c36, foot:13@62a1620d, auth:-/1@aee68f92", " 145 call bytes_new_from_slice(1723)": "cpu:24660251, auth:-/-", @@ -153,7 +153,7 @@ " 151 call create_contract(Address(obj#173), Bytes(obj#171), Bytes(obj#175))": "", " 152 call obj_cmp(Address(obj#177), Address(obj#173))": "cpu:26660499, mem:17163666, objs:-/89@5858b5f0, auth:1@445de93b/-", " 153 ret obj_cmp -> Ok(0)": "cpu:26661185", - " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@3ba9ffd2", + " 154 call get_ledger_network_id()": "cpu:26661443, auth:1@445de93b/1@ca57c8bc", " 155 ret get_ledger_network_id -> Ok(Bytes(obj#179))": "cpu:26664340, mem:17163778, objs:-/90@5826fb63", " 156 ret create_contract -> Ok(Address(obj#181))": "cpu:26722783, mem:17167516, objs:-/91@cd1cc65f, store:-/14@c33862ef, foot:14@4ba8b225, auth:-/1@617a1eda", " 157 call bytes_new_from_slice(1723)": "cpu:26723038, auth:-/-", @@ -165,7 +165,7 @@ " 163 call create_contract(Address(obj#187), Bytes(obj#185), Bytes(obj#189))": "", " 164 call obj_cmp(Address(obj#191), Address(obj#187))": "cpu:28723286, mem:18485320, objs:-/96@d11f253b, auth:1@225cfc41/-", " 165 ret obj_cmp -> Ok(0)": "cpu:28723972", - " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@2cc903b5", + " 166 call get_ledger_network_id()": "cpu:28724230, auth:1@225cfc41/1@a1637ff7", " 167 ret get_ledger_network_id -> Ok(Bytes(obj#193))": "cpu:28727127, mem:18485432, objs:-/97@dd3834b9", " 168 ret create_contract -> Ok(Address(obj#195))": "cpu:28788408, mem:18489356, objs:-/98@ddc288ce, store:-/15@8f2e00df, foot:15@85a5128f, auth:-/1@84c703c7", " 169 call bytes_new_from_slice(1723)": "cpu:28788663, auth:-/-", @@ -177,7 +177,7 @@ " 175 call create_contract(Address(obj#201), Bytes(obj#199), Bytes(obj#203))": "", " 176 call obj_cmp(Address(obj#205), Address(obj#201))": "cpu:30788911, mem:19807160, objs:-/103@6ee6745e, auth:1@f8067266/-", " 177 ret obj_cmp -> Ok(0)": "cpu:30789597", - " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@1c1b5ee3", + " 178 call get_ledger_network_id()": "cpu:30789855, auth:1@f8067266/1@e817f19c", " 179 ret get_ledger_network_id -> Ok(Bytes(obj#207))": "cpu:30792752, mem:19807272, objs:-/104@da675632", " 180 ret create_contract -> Ok(Address(obj#209))": "cpu:30855171, mem:19811382, objs:-/105@3c250e80, store:-/16@56a18dab, foot:16@3031c757, auth:-/1@6c77c0c9", " 181 call bytes_new_from_slice(1723)": "cpu:30855426, auth:-/-", @@ -189,7 +189,7 @@ " 187 call create_contract(Address(obj#215), Bytes(obj#213), Bytes(obj#217))": "", " 188 call obj_cmp(Address(obj#219), Address(obj#215))": "cpu:32855695, mem:21129186, objs:-/110@3460445f, auth:1@6f395edd/-", " 189 ret obj_cmp -> Ok(0)": "cpu:32856381", - " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@d3530f4c", + " 190 call get_ledger_network_id()": "cpu:32856639, auth:1@6f395edd/1@1357ae2d", " 191 ret get_ledger_network_id -> Ok(Bytes(obj#221))": "cpu:32859536, mem:21129298, objs:-/111@88602a33", " 192 ret create_contract -> Ok(Address(obj#223))": "cpu:32925835, mem:21133594, objs:-/112@1a30dd19, store:-/17@a1cdad8, foot:17@e114d7d6, auth:-/1@37251ff7", " 193 call bytes_new_from_slice(1723)": "cpu:32926090, auth:-/-", @@ -201,7 +201,7 @@ " 199 call create_contract(Address(obj#229), Bytes(obj#227), Bytes(obj#231))": "", " 200 call obj_cmp(Address(obj#233), Address(obj#229))": "cpu:34926359, mem:22451398, objs:-/117@f769caeb, auth:1@93079846/-", " 201 ret obj_cmp -> Ok(0)": "cpu:34927045", - " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@80a698b9", + " 202 call get_ledger_network_id()": "cpu:34927303, auth:1@93079846/1@507bf132", " 203 ret get_ledger_network_id -> Ok(Bytes(obj#235))": "cpu:34930200, mem:22451510, objs:-/118@a79d010f", " 204 ret create_contract -> Ok(Address(obj#237))": "cpu:34991975, mem:22455992, objs:-/119@faf87716, store:-/18@284aadf3, foot:18@4481d0f6, auth:-/1@79adba34", " 205 call bytes_new_from_slice(1723)": "cpu:34992230, auth:-/-", @@ -213,7 +213,7 @@ " 211 call create_contract(Address(obj#243), Bytes(obj#241), Bytes(obj#245))": "", " 212 call obj_cmp(Address(obj#247), Address(obj#243))": "cpu:36992499, mem:23773796, objs:-/124@ddd780c4, auth:1@3e29297a/-", " 213 ret obj_cmp -> Ok(0)": "cpu:36993185", - " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@e22dec68", + " 214 call get_ledger_network_id()": "cpu:36993443, auth:1@3e29297a/1@9a48546", " 215 ret get_ledger_network_id -> Ok(Bytes(obj#249))": "cpu:36996340, mem:23773908, objs:-/125@510120e0", " 216 ret create_contract -> Ok(Address(obj#251))": "cpu:37060193, mem:23778576, objs:-/126@c484c412, store:-/19@5d26a578, foot:19@fbbb733f, auth:-/1@43f44fbb", " 217 call bytes_new_from_slice(1723)": "cpu:37060448, auth:-/-", @@ -225,7 +225,7 @@ " 223 call create_contract(Address(obj#257), Bytes(obj#255), Bytes(obj#259))": "", " 224 call obj_cmp(Address(obj#261), Address(obj#257))": "cpu:39060717, mem:25096380, objs:-/131@e4c001b6, auth:1@399056d1/-", " 225 ret obj_cmp -> Ok(0)": "cpu:39061403", - " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@fc1a6912", + " 226 call get_ledger_network_id()": "cpu:39061661, auth:1@399056d1/1@20d8425c", " 227 ret get_ledger_network_id -> Ok(Bytes(obj#263))": "cpu:39064558, mem:25096492, objs:-/132@18805d31", " 228 ret create_contract -> Ok(Address(obj#265))": "cpu:39131253, mem:25101346, objs:-/133@daaee86c, store:-/20@6d147ad1, foot:20@f939d50c, auth:-/1@a9273ecb", " 229 call bytes_new_from_slice(1723)": "cpu:39131508, auth:-/-", @@ -237,7 +237,7 @@ " 235 call create_contract(Address(obj#271), Bytes(obj#269), Bytes(obj#273))": "", " 236 call obj_cmp(Address(obj#275), Address(obj#271))": "cpu:41131777, mem:26419150, objs:-/138@8a39b9a5, auth:1@aea0b0c0/-", " 237 ret obj_cmp -> Ok(0)": "cpu:41132463", - " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@f1da0dd5", + " 238 call get_ledger_network_id()": "cpu:41132721, auth:1@aea0b0c0/1@e3b3557c", " 239 ret get_ledger_network_id -> Ok(Bytes(obj#277))": "cpu:41135618, mem:26419262, objs:-/139@ce76e6fb", " 240 ret create_contract -> Ok(Address(obj#279))": "cpu:41205155, mem:26424302, objs:-/140@737416ce, store:-/21@cac04bf9, foot:21@435f9792, auth:-/1@48a20b51", " 241 call bytes_new_from_slice(1723)": "cpu:41205410, auth:-/-", @@ -249,7 +249,7 @@ " 247 call create_contract(Address(obj#285), Bytes(obj#283), Bytes(obj#287))": "", " 248 call obj_cmp(Address(obj#289), Address(obj#285))": "cpu:43205679, mem:27742106, objs:-/145@74331567, auth:1@330b1c67/-", " 249 ret obj_cmp -> Ok(0)": "cpu:43206365", - " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@9a165117", + " 250 call get_ledger_network_id()": "cpu:43206623, auth:1@330b1c67/1@c480bd80", " 251 ret get_ledger_network_id -> Ok(Bytes(obj#291))": "cpu:43209520, mem:27742218, objs:-/146@d168c7a7", " 252 ret create_contract -> Ok(Address(obj#293))": "cpu:43278343, mem:27747444, objs:-/147@16f6005c, store:-/22@33195a82, foot:22@b33a0417, auth:-/1@b7d59a15", " 253 call bytes_new_from_slice(1723)": "cpu:43278598, auth:-/-", @@ -261,7 +261,7 @@ " 259 call create_contract(Address(obj#299), Bytes(obj#297), Bytes(obj#301))": "", " 260 call obj_cmp(Address(obj#303), Address(obj#299))": "cpu:45278867, mem:29065248, objs:-/152@e53b83e3, auth:1@785996a7/-", " 261 ret obj_cmp -> Ok(0)": "cpu:45279553", - " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@fe7b423e", + " 262 call get_ledger_network_id()": "cpu:45279811, auth:1@785996a7/1@7f8bbf70", " 263 ret get_ledger_network_id -> Ok(Bytes(obj#305))": "cpu:45282708, mem:29065360, objs:-/153@9f17ddc6", " 264 ret create_contract -> Ok(Address(obj#307))": "cpu:45355387, mem:29070772, objs:-/154@cf228652, store:-/23@300f245c, foot:23@27540f12, auth:-/1@cefa2a75", " 265 call bytes_new_from_slice(1723)": "cpu:45355642, auth:-/-", @@ -273,7 +273,7 @@ " 271 call create_contract(Address(obj#313), Bytes(obj#311), Bytes(obj#315))": "", " 272 call obj_cmp(Address(obj#317), Address(obj#313))": "cpu:47355911, mem:30388576, objs:-/159@63a78bd4, auth:1@da0afee7/-", " 273 ret obj_cmp -> Ok(0)": "cpu:47356597", - " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@9dbef6d4", + " 274 call get_ledger_network_id()": "cpu:47356855, auth:1@da0afee7/1@6aa8b510", " 275 ret get_ledger_network_id -> Ok(Bytes(obj#319))": "cpu:47359752, mem:30388688, objs:-/160@4af09aee", " 276 ret create_contract -> Ok(Address(obj#321))": "cpu:47430705, mem:30394286, objs:-/161@92ee88ed, store:-/24@101e4564, foot:24@c9aaea41, auth:-/1@84386fec", " 277 call bytes_new_from_slice(1723)": "cpu:47430960, auth:-/-", @@ -285,7 +285,7 @@ " 283 call create_contract(Address(obj#327), Bytes(obj#325), Bytes(obj#329))": "", " 284 call obj_cmp(Address(obj#331), Address(obj#327))": "cpu:49431229, mem:31712090, objs:-/166@7fccca03, auth:1@aa9fae3a/-", " 285 ret obj_cmp -> Ok(0)": "cpu:49431915", - " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@f33a894d", + " 286 call get_ledger_network_id()": "cpu:49432173, auth:1@aa9fae3a/1@d871ba2c", " 287 ret get_ledger_network_id -> Ok(Bytes(obj#333))": "cpu:49435070, mem:31712202, objs:-/167@a32ae8a9", " 288 ret create_contract -> Ok(Address(obj#335))": "cpu:49509879, mem:31717986, objs:-/168@2aafa42f, store:-/25@8e92a30e, foot:25@3b46cff6, auth:-/1@96704b35", " 289 call bytes_new_from_slice(1723)": "cpu:49510134, auth:-/-", @@ -297,7 +297,7 @@ " 295 call create_contract(Address(obj#341), Bytes(obj#339), Bytes(obj#343))": "", " 296 call obj_cmp(Address(obj#345), Address(obj#341))": "cpu:51510403, mem:33035790, objs:-/173@81268679, auth:1@3dec2490/-", " 297 ret obj_cmp -> Ok(0)": "cpu:51511089", - " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@71ebc84a", + " 298 call get_ledger_network_id()": "cpu:51511347, auth:1@3dec2490/1@121df96c", " 299 ret get_ledger_network_id -> Ok(Bytes(obj#347))": "cpu:51514244, mem:33035902, objs:-/174@86b62e4b", " 300 ret create_contract -> Ok(Address(obj#349))": "cpu:51590119, mem:33041872, objs:-/175@1dabe68a, store:-/26@f151c33b, foot:26@1cf63df0, auth:-/1@302de960", " 301 call bytes_new_from_slice(1723)": "cpu:51590374, auth:-/-", @@ -309,7 +309,7 @@ " 307 call create_contract(Address(obj#355), Bytes(obj#353), Bytes(obj#357))": "", " 308 call obj_cmp(Address(obj#359), Address(obj#355))": "cpu:53590643, mem:34359676, objs:-/180@8b3d9cc8, auth:1@6b4de48e/-", " 309 ret obj_cmp -> Ok(0)": "cpu:53591329", - " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@e71ff6d6", + " 310 call get_ledger_network_id()": "cpu:53591587, auth:1@6b4de48e/1@3202ab93", " 311 ret get_ledger_network_id -> Ok(Bytes(obj#361))": "cpu:53594484, mem:34359788, objs:-/181@7d2def3b", " 312 ret create_contract -> Ok(Address(obj#363))": "cpu:53671421, mem:34365944, objs:-/182@4ac4bd9e, store:-/27@8340ee6d, foot:27@fba9c4de, auth:-/1@95751d48", " 313 call bytes_new_from_slice(1723)": "cpu:53671676, auth:-/-", @@ -321,7 +321,7 @@ " 319 call create_contract(Address(obj#369), Bytes(obj#367), Bytes(obj#371))": "", " 320 call obj_cmp(Address(obj#373), Address(obj#369))": "cpu:55671945, mem:35683748, objs:-/187@41f59b8a, auth:1@6b4c8d3e/-", " 321 ret obj_cmp -> Ok(0)": "cpu:55672631", - " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@1287fb5c", + " 322 call get_ledger_network_id()": "cpu:55672889, auth:1@6b4c8d3e/1@a8b01321", " 323 ret get_ledger_network_id -> Ok(Bytes(obj#375))": "cpu:55675786, mem:35683860, objs:-/188@acf77cba", " 324 ret create_contract -> Ok(Address(obj#377))": "cpu:55753787, mem:35690202, objs:-/189@4ae78034, store:-/28@fb432119, foot:28@dbaee220, auth:-/1@ebc38f0b", " 325 call bytes_new_from_slice(1723)": "cpu:55754042, auth:-/-", @@ -333,7 +333,7 @@ " 331 call create_contract(Address(obj#383), Bytes(obj#381), Bytes(obj#385))": "", " 332 call obj_cmp(Address(obj#387), Address(obj#383))": "cpu:57754311, mem:37008006, objs:-/194@41937dac, auth:1@6a2c4396/-", " 333 ret obj_cmp -> Ok(0)": "cpu:57754997", - " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@6e63ce88", + " 334 call get_ledger_network_id()": "cpu:57755255, auth:1@6a2c4396/1@d85d3c27", " 335 ret get_ledger_network_id -> Ok(Bytes(obj#389))": "cpu:57758152, mem:37008118, objs:-/195@c7b31bd4", " 336 ret create_contract -> Ok(Address(obj#391))": "cpu:57833659, mem:37014646, objs:-/196@630be1a, store:-/29@f2b2ba33, foot:29@86207dba, auth:-/1@8030be25", " 337 call bytes_new_from_slice(1723)": "cpu:57833914, auth:-/-", @@ -345,7 +345,7 @@ " 343 call create_contract(Address(obj#397), Bytes(obj#395), Bytes(obj#399))": "", " 344 call obj_cmp(Address(obj#401), Address(obj#397))": "cpu:59834183, mem:38332450, objs:-/201@e7013f13, auth:1@efff116e/-", " 345 ret obj_cmp -> Ok(0)": "cpu:59834869", - " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@717266a3", + " 346 call get_ledger_network_id()": "cpu:59835127, auth:1@efff116e/1@6b349df9", " 347 ret get_ledger_network_id -> Ok(Bytes(obj#403))": "cpu:59838024, mem:38332562, objs:-/202@b6091744", " 348 ret create_contract -> Ok(Address(obj#405))": "cpu:59918151, mem:38339276, objs:-/203@fcd408de, store:-/30@7b349abd, foot:30@39863402, auth:-/1@eed4bb1e", " 349 call bytes_new_from_slice(1723)": "cpu:59918406, auth:-/-", @@ -357,7 +357,7 @@ " 355 call create_contract(Address(obj#411), Bytes(obj#409), Bytes(obj#413))": "", " 356 call obj_cmp(Address(obj#415), Address(obj#411))": "cpu:61918675, mem:39657080, objs:-/208@bef8f250, auth:1@4d2b336a/-", " 357 ret obj_cmp -> Ok(0)": "cpu:61919361", - " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@c6b91a0a", + " 358 call get_ledger_network_id()": "cpu:61919619, auth:1@4d2b336a/1@74393111", " 359 ret get_ledger_network_id -> Ok(Bytes(obj#417))": "cpu:61922516, mem:39657192, objs:-/209@5a6a7d5d", " 360 ret create_contract -> Ok(Address(obj#419))": "cpu:62001929, mem:39664092, objs:-/210@1ac1704e, store:-/31@4fa3e91b, foot:31@305062e7, auth:-/1@7a19b357", " 361 call bytes_new_from_slice(1723)": "cpu:62002184, auth:-/-", @@ -369,7 +369,7 @@ " 367 call create_contract(Address(obj#425), Bytes(obj#423), Bytes(obj#427))": "", " 368 call obj_cmp(Address(obj#429), Address(obj#425))": "cpu:64002453, mem:40981896, objs:-/215@a1746993, auth:1@f7013137/-", " 369 ret obj_cmp -> Ok(0)": "cpu:64003139", - " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@1c77542", + " 370 call get_ledger_network_id()": "cpu:64003397, auth:1@f7013137/1@53b8d019", " 371 ret get_ledger_network_id -> Ok(Bytes(obj#431))": "cpu:64006294, mem:40982008, objs:-/216@cf95d889", " 372 ret create_contract -> Ok(Address(obj#433))": "cpu:64088615, mem:40989094, objs:-/217@99f04015, store:-/32@3ddbcca8, foot:32@e907b904, auth:-/1@ef6b177", " 373 call bytes_new_from_slice(1723)": "cpu:64088870, auth:-/-", @@ -381,7 +381,7 @@ " 379 call create_contract(Address(obj#439), Bytes(obj#437), Bytes(obj#441))": "", " 380 call obj_cmp(Address(obj#443), Address(obj#439))": "cpu:66089158, mem:42306898, objs:-/222@9918a39f, auth:1@da3c47d1/-", " 381 ret obj_cmp -> Ok(0)": "cpu:66089844", - " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@2b4da665", + " 382 call get_ledger_network_id()": "cpu:66090102, auth:1@da3c47d1/1@738bcb6e", " 383 ret get_ledger_network_id -> Ok(Bytes(obj#445))": "cpu:66092999, mem:42307010, objs:-/223@f5510b1", " 384 ret create_contract -> Ok(Address(obj#447))": "cpu:66176402, mem:42314282, objs:-/224@29135409, store:-/33@3da44f4f, foot:33@76d72a8d, auth:-/1@d0c5ccbe", " 385 call bytes_new_from_slice(1723)": "cpu:66176657, auth:-/-", @@ -393,7 +393,7 @@ " 391 call create_contract(Address(obj#453), Bytes(obj#451), Bytes(obj#455))": "", " 392 call obj_cmp(Address(obj#457), Address(obj#453))": "cpu:68176945, mem:43632086, objs:-/229@843f1f78, auth:1@fe39debc/-", " 393 ret obj_cmp -> Ok(0)": "cpu:68177631", - " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@7ae07493", + " 394 call get_ledger_network_id()": "cpu:68177889, auth:1@fe39debc/1@cf888e58", " 395 ret get_ledger_network_id -> Ok(Bytes(obj#459))": "cpu:68180786, mem:43632198, objs:-/230@87253b5a", " 396 ret create_contract -> Ok(Address(obj#461))": "cpu:68263477, mem:43639656, objs:-/231@dfe2f621, store:-/34@26269e2a, foot:34@db6f722c, auth:-/1@c5425e98", " 397 call bytes_new_from_slice(1723)": "cpu:68263732, auth:-/-", @@ -405,7 +405,7 @@ " 403 call create_contract(Address(obj#467), Bytes(obj#465), Bytes(obj#469))": "", " 404 call obj_cmp(Address(obj#471), Address(obj#467))": "cpu:70264020, mem:44957460, objs:-/236@8e491acb, auth:1@8758e2be/-", " 405 ret obj_cmp -> Ok(0)": "cpu:70264706", - " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@402732e1", + " 406 call get_ledger_network_id()": "cpu:70264964, auth:1@8758e2be/1@653e6cb8", " 407 ret get_ledger_network_id -> Ok(Bytes(obj#473))": "cpu:70267861, mem:44957572, objs:-/237@e891750f", " 408 ret create_contract -> Ok(Address(obj#475))": "cpu:70354406, mem:44965216, objs:-/238@3c9f9d08, store:-/35@be282ec7, foot:35@ad713040, auth:-/1@c2518348", " 409 call bytes_new_from_slice(1723)": "cpu:70354661, auth:-/-", @@ -417,7 +417,7 @@ " 415 call create_contract(Address(obj#481), Bytes(obj#479), Bytes(obj#483))": "", " 416 call obj_cmp(Address(obj#485), Address(obj#481))": "cpu:72354949, mem:46283020, objs:-/243@f3039fd5, auth:1@7b318976/-", " 417 ret obj_cmp -> Ok(0)": "cpu:72355635", - " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@1e553952", + " 418 call get_ledger_network_id()": "cpu:72355893, auth:1@7b318976/1@c257e53", " 419 ret get_ledger_network_id -> Ok(Bytes(obj#487))": "cpu:72358790, mem:46283132, objs:-/244@cdf88cce", " 420 ret create_contract -> Ok(Address(obj#489))": "cpu:72445387, mem:46290962, objs:-/245@cd6fd0a6, store:-/36@e78fd4ec, foot:36@8d6c62c1, auth:-/1@9be18b7d", " 421 call bytes_new_from_slice(1723)": "cpu:72445642, auth:-/-", @@ -429,7 +429,7 @@ " 427 call create_contract(Address(obj#495), Bytes(obj#493), Bytes(obj#497))": "", " 428 call obj_cmp(Address(obj#499), Address(obj#495))": "cpu:74445930, mem:47608766, objs:-/250@22bd910b, auth:1@740ab5ad/-", " 429 ret obj_cmp -> Ok(0)": "cpu:74446616", - " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@df062d8f", + " 430 call get_ledger_network_id()": "cpu:74446874, auth:1@740ab5ad/1@69a0652", " 431 ret get_ledger_network_id -> Ok(Bytes(obj#501))": "cpu:74449771, mem:47608878, objs:-/251@d6b7a9b4", " 432 ret create_contract -> Ok(Address(obj#503))": "cpu:74535650, mem:47616894, objs:-/252@d5487903, store:-/37@fc568a97, foot:37@409c33df, auth:-/1@d536b686", " 433 call bytes_new_from_slice(1723)": "cpu:74535905, auth:-/-", @@ -441,7 +441,7 @@ " 439 call create_contract(Address(obj#509), Bytes(obj#507), Bytes(obj#511))": "", " 440 call obj_cmp(Address(obj#513), Address(obj#509))": "cpu:76536193, mem:48934698, objs:-/257@2c83362e, auth:1@3a400b33/-", " 441 ret obj_cmp -> Ok(0)": "cpu:76536879", - " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@7fd0cf57", + " 442 call get_ledger_network_id()": "cpu:76537137, auth:1@3a400b33/1@4a2d81a0", " 443 ret get_ledger_network_id -> Ok(Bytes(obj#515))": "cpu:76540034, mem:48934810, objs:-/258@ac579d6d", " 444 ret create_contract -> Ok(Address(obj#517))": "cpu:76628757, mem:48943012, objs:-/259@73d4502, store:-/38@2603f041, foot:38@4169d237, auth:-/1@39e1337c", " 445 call bytes_new_from_slice(1723)": "cpu:76629012, auth:-/-", @@ -453,7 +453,7 @@ " 451 call create_contract(Address(obj#523), Bytes(obj#521), Bytes(obj#525))": "", " 452 call obj_cmp(Address(obj#527), Address(obj#523))": "cpu:78629300, mem:50260816, objs:-/264@e1d329e1, auth:1@26e06ff6/-", " 453 ret obj_cmp -> Ok(0)": "cpu:78629986", - " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@17ee9ef3", + " 454 call get_ledger_network_id()": "cpu:78630244, auth:1@26e06ff6/1@b06070a3", " 455 ret get_ledger_network_id -> Ok(Bytes(obj#529))": "cpu:78633141, mem:50260928, objs:-/265@bafd1a98", " 456 ret create_contract -> Ok(Address(obj#531))": "cpu:78725718, mem:50269316, objs:-/266@1b9213fc, store:-/39@b90d28c3, foot:39@d7e7d033, auth:-/1@b133ac19", " 457 call bytes_new_from_slice(1723)": "cpu:78725973, auth:-/-", @@ -465,7 +465,7 @@ " 463 call create_contract(Address(obj#537), Bytes(obj#535), Bytes(obj#539))": "", " 464 call obj_cmp(Address(obj#541), Address(obj#537))": "cpu:80726261, mem:51587120, objs:-/271@24ad366e, auth:1@b368d5a8/-", " 465 ret obj_cmp -> Ok(0)": "cpu:80726947", - " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@7a22d694", + " 466 call get_ledger_network_id()": "cpu:80727205, auth:1@b368d5a8/1@abb50537", " 467 ret get_ledger_network_id -> Ok(Bytes(obj#543))": "cpu:80730102, mem:51587232, objs:-/272@879628e2", " 468 ret create_contract -> Ok(Address(obj#545))": "cpu:80820955, mem:51595806, objs:-/273@d183d07c, store:-/40@8c6440e7, foot:40@4583666c, auth:-/1@7e5706f4", " 469 call bytes_new_from_slice(1723)": "cpu:80821210, auth:-/-", @@ -477,7 +477,7 @@ " 475 call create_contract(Address(obj#551), Bytes(obj#549), Bytes(obj#553))": "", " 476 call obj_cmp(Address(obj#555), Address(obj#551))": "cpu:82821498, mem:52913610, objs:-/278@7e43461c, auth:1@5ff13591/-", " 477 ret obj_cmp -> Ok(0)": "cpu:82822184", - " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@bb660b30", + " 478 call get_ledger_network_id()": "cpu:82822442, auth:1@5ff13591/1@ef99d99e", " 479 ret get_ledger_network_id -> Ok(Bytes(obj#557))": "cpu:82825339, mem:52913722, objs:-/279@7d5b5e82", " 480 ret create_contract -> Ok(Address(obj#559))": "cpu:82917254, mem:52922482, objs:-/280@a2539e9f, store:-/41@f828b437, foot:41@fe76eb0e, auth:-/1@c3116c2e", " 481 call bytes_new_from_slice(1723)": "cpu:82917509, auth:-/-", @@ -489,7 +489,7 @@ " 487 call create_contract(Address(obj#565), Bytes(obj#563), Bytes(obj#567))": "", " 488 call obj_cmp(Address(obj#569), Address(obj#565))": "cpu:84917797, mem:54240286, objs:-/285@27a76f48, auth:1@6bc42dbe/-", " 489 ret obj_cmp -> Ok(0)": "cpu:84918483", - " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@8487d51b", + " 490 call get_ledger_network_id()": "cpu:84918741, auth:1@6bc42dbe/1@350fe930", " 491 ret get_ledger_network_id -> Ok(Bytes(obj#571))": "cpu:84921638, mem:54240398, objs:-/286@604a8064", " 492 ret create_contract -> Ok(Address(obj#573))": "cpu:85014619, mem:54249344, objs:-/287@5335059f, store:-/42@29905e2d, foot:42@331e35d, auth:-/1@fcc81056", " 493 call bytes_new_from_slice(1723)": "cpu:85014874, auth:-/-", @@ -501,7 +501,7 @@ " 499 call create_contract(Address(obj#579), Bytes(obj#577), Bytes(obj#581))": "", " 500 call obj_cmp(Address(obj#583), Address(obj#579))": "cpu:87015162, mem:55567148, objs:-/292@cae8baf1, auth:1@192a37a7/-", " 501 ret obj_cmp -> Ok(0)": "cpu:87015848", - " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@d0cf342a", + " 502 call get_ledger_network_id()": "cpu:87016106, auth:1@192a37a7/1@92f90a5c", " 503 ret get_ledger_network_id -> Ok(Bytes(obj#585))": "cpu:87019003, mem:55567260, objs:-/293@e43c78b4", " 504 ret create_contract -> Ok(Address(obj#587))": "cpu:87113044, mem:55576392, objs:-/294@bb1ddf18, store:-/43@914b7ccb, foot:43@41d98300, auth:-/1@9dd1b742", " 505 call bytes_new_from_slice(1723)": "cpu:87113299, auth:-/-", @@ -513,7 +513,7 @@ " 511 call create_contract(Address(obj#593), Bytes(obj#591), Bytes(obj#595))": "", " 512 call obj_cmp(Address(obj#597), Address(obj#593))": "cpu:89113587, mem:56894196, objs:-/299@cff36272, auth:1@bac1ba08/-", " 513 ret obj_cmp -> Ok(0)": "cpu:89114273", - " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@ab3f6665", + " 514 call get_ledger_network_id()": "cpu:89114531, auth:1@bac1ba08/1@520c643c", " 515 ret get_ledger_network_id -> Ok(Bytes(obj#599))": "cpu:89117428, mem:56894308, objs:-/300@dd09814f", " 516 ret create_contract -> Ok(Address(obj#601))": "cpu:89212535, mem:56903626, objs:-/301@244f82de, store:-/44@49506f31, foot:44@6bc1feec, auth:-/1@3ecbcd12", " 517 call bytes_new_from_slice(1723)": "cpu:89212790, auth:-/-", @@ -525,7 +525,7 @@ " 523 call create_contract(Address(obj#607), Bytes(obj#605), Bytes(obj#609))": "", " 524 call obj_cmp(Address(obj#611), Address(obj#607))": "cpu:91213078, mem:58221430, objs:-/306@51507416, auth:1@f4a38780/-", " 525 ret obj_cmp -> Ok(0)": "cpu:91213764", - " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@60fa77e0", + " 526 call get_ledger_network_id()": "cpu:91214022, auth:1@f4a38780/1@fc522799", " 527 ret get_ledger_network_id -> Ok(Bytes(obj#613))": "cpu:91216919, mem:58221542, objs:-/307@eba2c5b2", " 528 ret create_contract -> Ok(Address(obj#615))": "cpu:91313086, mem:58231046, objs:-/308@367c7d43, store:-/45@c8a84a2, foot:45@358c3f92, auth:-/1@d6eec3a9", " 529 call bytes_new_from_slice(1723)": "cpu:91313341, auth:-/-", @@ -537,7 +537,7 @@ " 535 call create_contract(Address(obj#621), Bytes(obj#619), Bytes(obj#623))": "", " 536 call obj_cmp(Address(obj#625), Address(obj#621))": "cpu:93313629, mem:59548850, objs:-/313@f39fd860, auth:1@5cc394d/-", " 537 ret obj_cmp -> Ok(0)": "cpu:93314315", - " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@aff33b6b", + " 538 call get_ledger_network_id()": "cpu:93314573, auth:1@5cc394d/1@73031a22", " 539 ret get_ledger_network_id -> Ok(Bytes(obj#627))": "cpu:93317470, mem:59548962, objs:-/314@e817a34d", " 540 ret create_contract -> Ok(Address(obj#629))": "cpu:93417497, mem:59558652, objs:-/315@3c670094, store:-/46@d1e3723, foot:46@8fe6169d, auth:-/1@a662faf6", " 541 call bytes_new_from_slice(1723)": "cpu:93417752, auth:-/-", @@ -549,7 +549,7 @@ " 547 call create_contract(Address(obj#635), Bytes(obj#633), Bytes(obj#637))": "", " 548 call obj_cmp(Address(obj#639), Address(obj#635))": "cpu:95418040, mem:60876456, objs:-/320@8e0c4b9b, auth:1@406c1dae/-", " 549 ret obj_cmp -> Ok(0)": "cpu:95418726", - " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@6600dac1", + " 550 call get_ledger_network_id()": "cpu:95418984, auth:1@406c1dae/1@62235096", " 551 ret get_ledger_network_id -> Ok(Bytes(obj#641))": "cpu:95421881, mem:60876568, objs:-/321@3ae1b4", " 552 ret create_contract -> Ok(Address(obj#643))": "cpu:95514842, mem:60886444, objs:-/322@56ee1b71, store:-/47@df16bbd0, foot:47@3fc83862, auth:-/1@fc69475c", " 553 call bytes_new_from_slice(1723)": "cpu:95515097, auth:-/-", @@ -561,7 +561,7 @@ " 559 call create_contract(Address(obj#649), Bytes(obj#647), Bytes(obj#651))": "", " 560 call obj_cmp(Address(obj#653), Address(obj#649))": "cpu:97515385, mem:62204248, objs:-/327@c9706ded, auth:1@8c26c31b/-", " 561 ret obj_cmp -> Ok(0)": "cpu:97516071", - " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@529ff575", + " 562 call get_ledger_network_id()": "cpu:97516329, auth:1@8c26c31b/1@205f6fb4", " 563 ret get_ledger_network_id -> Ok(Bytes(obj#655))": "cpu:97519226, mem:62204360, objs:-/328@bf53726d", " 564 ret create_contract -> Ok(Address(obj#657))": "cpu:97621385, mem:62214422, objs:-/329@db413350, store:-/48@51de1218, foot:48@556cb318, auth:-/1@25a9c327", " 565 call bytes_new_from_slice(1723)": "cpu:97621640, auth:-/-", @@ -573,7 +573,7 @@ " 571 call create_contract(Address(obj#663), Bytes(obj#661), Bytes(obj#665))": "", " 572 call obj_cmp(Address(obj#667), Address(obj#663))": "cpu:99621928, mem:63532226, objs:-/334@f4f8f41b, auth:1@1fa181ba/-", " 573 ret obj_cmp -> Ok(0)": "cpu:99622614", - " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@cbc29ba9", + " 574 call get_ledger_network_id()": "cpu:99622872, auth:1@1fa181ba/1@9d22f9ed", " 575 ret get_ledger_network_id -> Ok(Bytes(obj#669))": "cpu:99625769, mem:63532338, objs:-/335@237761d2", " 576 ret create_contract -> Ok(Address(obj#671))": "cpu:99726196, mem:63542586, objs:-/336@fa034a59, store:-/49@ea935b52, foot:49@de5dfae4, auth:-/1@ab48dad3", " 577 call bytes_new_from_slice(1723)": "cpu:99726451, auth:-/-", @@ -585,7 +585,7 @@ " 583 call create_contract(Address(obj#677), Bytes(obj#675), Bytes(obj#679))": "", " 584 call obj_cmp(Address(obj#681), Address(obj#677))": "cpu:101726739, mem:64860390, objs:-/341@f9a83a38, auth:1@efefa99b/-", " 585 ret obj_cmp -> Ok(0)": "cpu:101727425", - " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2b02f498", + " 586 call get_ledger_network_id()": "cpu:101727683, auth:1@efefa99b/1@2329e92b", " 587 ret get_ledger_network_id -> Ok(Bytes(obj#683))": "cpu:101730580, mem:64860502, objs:-/342@d1ff7972", " 588 ret create_contract -> Ok(Address(obj#685))": "cpu:101833087, mem:64870936, objs:-/343@b5f757ec, store:-/50@4c522570, foot:50@a0637ff7, auth:-/1@33815c1a", " 589 call bytes_new_from_slice(1723)": "cpu:101833342, auth:-/-", @@ -597,7 +597,7 @@ " 595 call create_contract(Address(obj#691), Bytes(obj#689), Bytes(obj#693))": "", " 596 call obj_cmp(Address(obj#695), Address(obj#691))": "cpu:103833630, mem:66188740, objs:-/348@4f3b30b2, auth:1@a8fcf1a2/-", " 597 ret obj_cmp -> Ok(0)": "cpu:103834316", - " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@2b55c9b5", + " 598 call get_ledger_network_id()": "cpu:103834574, auth:1@a8fcf1a2/1@286b32d9", " 599 ret get_ledger_network_id -> Ok(Bytes(obj#697))": "cpu:103837471, mem:66188852, objs:-/349@d5de81fd", " 600 ret create_contract -> Ok(Address(obj#699))": "cpu:103942818, mem:66199472, objs:-/350@51dc4097, store:-/51@2ecebe32, foot:51@992b52e0, auth:-/1@62240125", " 601 call bytes_new_from_slice(1723)": "cpu:103943073, auth:-/-", @@ -609,7 +609,7 @@ " 607 call create_contract(Address(obj#705), Bytes(obj#703), Bytes(obj#707))": "", " 608 call obj_cmp(Address(obj#709), Address(obj#705))": "cpu:105943361, mem:67517276, objs:-/355@9a456a58, auth:1@df2dbab3/-", " 609 ret obj_cmp -> Ok(0)": "cpu:105944047", - " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@53ebc47d", + " 610 call get_ledger_network_id()": "cpu:105944305, auth:1@df2dbab3/1@9717cba0", " 611 ret get_ledger_network_id -> Ok(Bytes(obj#711))": "cpu:105947202, mem:67517388, objs:-/356@f6faf10c", " 612 ret create_contract -> Ok(Address(obj#713))": "cpu:106053615, mem:67528194, objs:-/357@8f3dfa45, store:-/52@3bc2289d, foot:52@a8174a77, auth:-/1@1ae2d9b9", " 613 call bytes_new_from_slice(1723)": "cpu:106053870, auth:-/-", @@ -621,7 +621,7 @@ " 619 call create_contract(Address(obj#719), Bytes(obj#717), Bytes(obj#721))": "", " 620 call obj_cmp(Address(obj#723), Address(obj#719))": "cpu:108054158, mem:68845998, objs:-/362@2c2a938, auth:1@e4e43523/-", " 621 ret obj_cmp -> Ok(0)": "cpu:108054844", - " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@633ca118", + " 622 call get_ledger_network_id()": "cpu:108055102, auth:1@e4e43523/1@43fdac45", " 623 ret get_ledger_network_id -> Ok(Bytes(obj#725))": "cpu:108057999, mem:68846110, objs:-/363@a163628d", " 624 ret create_contract -> Ok(Address(obj#727))": "cpu:108162680, mem:68857102, objs:-/364@25c619f3, store:-/53@85418455, foot:53@755ca472, auth:-/1@7132248c", " 625 call bytes_new_from_slice(1723)": "cpu:108162935, auth:-/-", @@ -633,7 +633,7 @@ " 631 call create_contract(Address(obj#733), Bytes(obj#731), Bytes(obj#735))": "", " 632 call obj_cmp(Address(obj#737), Address(obj#733))": "cpu:110163223, mem:70174906, objs:-/369@346fee22, auth:1@a8468a5b/-", " 633 ret obj_cmp -> Ok(0)": "cpu:110163909", - " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@5f38f4b4", + " 634 call get_ledger_network_id()": "cpu:110164167, auth:1@a8468a5b/1@ac9afa98", " 635 ret get_ledger_network_id -> Ok(Bytes(obj#739))": "cpu:110167064, mem:70175018, objs:-/370@5f283fed", " 636 ret create_contract -> Ok(Address(obj#741))": "cpu:110273825, mem:70186196, objs:-/371@756dc3dc, store:-/54@d6df1dee, foot:54@6c9db746, auth:-/1@add7894e", " 637 call bytes_new_from_slice(1723)": "cpu:110274080, auth:-/-", @@ -645,7 +645,7 @@ " 643 call create_contract(Address(obj#747), Bytes(obj#745), Bytes(obj#749))": "", " 644 call obj_cmp(Address(obj#751), Address(obj#747))": "cpu:112274368, mem:71504000, objs:-/376@aebe83c3, auth:1@a1dfbdc2/-", " 645 ret obj_cmp -> Ok(0)": "cpu:112275054", - " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@20efa1bf", + " 646 call get_ledger_network_id()": "cpu:112275312, auth:1@a1dfbdc2/1@a0d06fb2", " 647 ret get_ledger_network_id -> Ok(Bytes(obj#753))": "cpu:112278209, mem:71504112, objs:-/377@a5f27cc1", " 648 ret create_contract -> Ok(Address(obj#755))": "cpu:112383238, mem:71515476, objs:-/378@4a2dc9d5, store:-/55@d68f6f6e, foot:55@98d0e060, auth:-/1@6f8d4df0", " 649 call bytes_new_from_slice(1723)": "cpu:112383493, auth:-/-", @@ -657,7 +657,7 @@ " 655 call create_contract(Address(obj#761), Bytes(obj#759), Bytes(obj#763))": "", " 656 call obj_cmp(Address(obj#765), Address(obj#761))": "cpu:114383781, mem:72833280, objs:-/383@ba9bc303, auth:1@7cf8180f/-", " 657 ret obj_cmp -> Ok(0)": "cpu:114384467", - " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@a8a009f0", + " 658 call get_ledger_network_id()": "cpu:114384725, auth:1@7cf8180f/1@9ffc2d1c", " 659 ret get_ledger_network_id -> Ok(Bytes(obj#767))": "cpu:114387622, mem:72833392, objs:-/384@cef90ff5", " 660 ret create_contract -> Ok(Address(obj#769))": "cpu:114498291, mem:72844942, objs:-/385@949e2fa0, store:-/56@bd5ddb43, foot:56@dc185736, auth:-/1@dbeb877e", " 661 call bytes_new_from_slice(1723)": "cpu:114498546, auth:-/-", @@ -669,7 +669,7 @@ " 667 call create_contract(Address(obj#775), Bytes(obj#773), Bytes(obj#777))": "", " 668 call obj_cmp(Address(obj#779), Address(obj#775))": "cpu:116498834, mem:74162746, objs:-/390@ee85fa0, auth:1@5e9c3221/-", " 669 ret obj_cmp -> Ok(0)": "cpu:116499520", - " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@1d9c05cc", + " 670 call get_ledger_network_id()": "cpu:116499778, auth:1@5e9c3221/1@42a87577", " 671 ret get_ledger_network_id -> Ok(Bytes(obj#781))": "cpu:116502675, mem:74162858, objs:-/391@c09aca31", " 672 ret create_contract -> Ok(Address(obj#783))": "cpu:116614408, mem:74174594, objs:-/392@a5b995b8, store:-/57@d10d961, foot:57@962f7174, auth:-/1@b76a8061", " 673 call bytes_new_from_slice(1723)": "cpu:116614663, auth:-/-", @@ -681,7 +681,7 @@ " 679 call create_contract(Address(obj#789), Bytes(obj#787), Bytes(obj#791))": "", " 680 call obj_cmp(Address(obj#793), Address(obj#789))": "cpu:118614951, mem:75492398, objs:-/397@8e52f175, auth:1@ba59cfca/-", " 681 ret obj_cmp -> Ok(0)": "cpu:118615637", - " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@5496e8ba", + " 682 call get_ledger_network_id()": "cpu:118615895, auth:1@ba59cfca/1@fb340186", " 683 ret get_ledger_network_id -> Ok(Bytes(obj#795))": "cpu:118618792, mem:75492510, objs:-/398@12799e50", " 684 ret create_contract -> Ok(Address(obj#797))": "cpu:118728033, mem:75504432, objs:-/399@3db9e662, store:-/58@8b1f0e88, foot:58@5c2834ff, auth:-/1@1693c723", " 685 call bytes_new_from_slice(1723)": "cpu:118728288, auth:-/-", @@ -693,7 +693,7 @@ " 691 call create_contract(Address(obj#803), Bytes(obj#801), Bytes(obj#805))": "", " 692 call obj_cmp(Address(obj#807), Address(obj#803))": "cpu:120728576, mem:76822236, objs:-/404@80b4325, auth:1@3d58dc89/-", " 693 ret obj_cmp -> Ok(0)": "cpu:120729262", - " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@98c21e82", + " 694 call get_ledger_network_id()": "cpu:120729520, auth:1@3d58dc89/1@6f5874f2", " 695 ret get_ledger_network_id -> Ok(Bytes(obj#809))": "cpu:120732417, mem:76822348, objs:-/405@3b999f4b", " 696 ret create_contract -> Ok(Address(obj#811))": "cpu:120838148, mem:76834456, objs:-/406@7fb07dfd, store:-/59@beb21ab6, foot:59@b156a440, auth:-/1@f485e251", " 697 call bytes_new_from_slice(1723)": "cpu:120838403, auth:-/-", @@ -705,7 +705,7 @@ " 703 call create_contract(Address(obj#817), Bytes(obj#815), Bytes(obj#819))": "", " 704 call obj_cmp(Address(obj#821), Address(obj#817))": "cpu:122838691, mem:78152260, objs:-/411@120f1132, auth:1@9615c0a4/-", " 705 ret obj_cmp -> Ok(0)": "cpu:122839377", - " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@2923ec4b", + " 706 call get_ledger_network_id()": "cpu:122839635, auth:1@9615c0a4/1@a21c8e0e", " 707 ret get_ledger_network_id -> Ok(Bytes(obj#823))": "cpu:122842532, mem:78152372, objs:-/412@7e1fcf83", " 708 ret create_contract -> Ok(Address(obj#825))": "cpu:122952121, mem:78164666, objs:-/413@d817a428, store:-/60@48bc1338, foot:60@a33f325d, auth:-/1@90f9a145", " 709 call bytes_new_from_slice(1723)": "cpu:122952376, auth:-/-", @@ -717,7 +717,7 @@ " 715 call create_contract(Address(obj#831), Bytes(obj#829), Bytes(obj#833))": "", " 716 call obj_cmp(Address(obj#835), Address(obj#831))": "cpu:124952664, mem:79482470, objs:-/418@fb16c9f, auth:1@ed66b718/-", " 717 ret obj_cmp -> Ok(0)": "cpu:124953350", - " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@3845c83e", + " 718 call get_ledger_network_id()": "cpu:124953608, auth:1@ed66b718/1@915f7f35", " 719 ret get_ledger_network_id -> Ok(Bytes(obj#837))": "cpu:124956505, mem:79482582, objs:-/419@6c3991f8", " 720 ret create_contract -> Ok(Address(obj#839))": "cpu:125070712, mem:79495062, objs:-/420@7e22a47, store:-/61@39cb0da1, foot:61@9492821c, auth:-/1@1b6774bf", " 721 call bytes_new_from_slice(1723)": "cpu:125070967, auth:-/-", @@ -729,7 +729,7 @@ " 727 call create_contract(Address(obj#845), Bytes(obj#843), Bytes(obj#847))": "", " 728 call obj_cmp(Address(obj#849), Address(obj#845))": "cpu:127071255, mem:80812866, objs:-/425@34c426ec, auth:1@8d4c648/-", " 729 ret obj_cmp -> Ok(0)": "cpu:127071941", - " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@b8fd81b7", + " 730 call get_ledger_network_id()": "cpu:127072199, auth:1@8d4c648/1@34a8de00", " 731 ret get_ledger_network_id -> Ok(Bytes(obj#851))": "cpu:127075096, mem:80812978, objs:-/426@6669f65a", " 732 ret create_contract -> Ok(Address(obj#853))": "cpu:127192147, mem:80825644, objs:-/427@3c471c07, store:-/62@73159901, foot:62@a247f604, auth:-/1@fa10c746", " 733 call bytes_new_from_slice(1723)": "cpu:127192402, auth:-/-", @@ -741,7 +741,7 @@ " 739 call create_contract(Address(obj#859), Bytes(obj#857), Bytes(obj#861))": "", " 740 call obj_cmp(Address(obj#863), Address(obj#859))": "cpu:129192690, mem:82143448, objs:-/432@a056c54, auth:1@dab38220/-", " 741 ret obj_cmp -> Ok(0)": "cpu:129193376", - " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@2a1916d6", + " 742 call get_ledger_network_id()": "cpu:129193634, auth:1@dab38220/1@f239515f", " 743 ret get_ledger_network_id -> Ok(Bytes(obj#865))": "cpu:129196531, mem:82143560, objs:-/433@b3ad8ff", " 744 ret create_contract -> Ok(Address(obj#867))": "cpu:129314644, mem:82156412, objs:-/434@e4eb33a, store:-/63@1b326826, foot:63@9801e88b, auth:-/1@a03e84e", " 745 call bytes_new_from_slice(1723)": "cpu:129314899, auth:-/-", @@ -753,7 +753,7 @@ " 751 call create_contract(Address(obj#873), Bytes(obj#871), Bytes(obj#875))": "", " 752 call obj_cmp(Address(obj#877), Address(obj#873))": "cpu:131315187, mem:83474216, objs:-/439@1aa2c5f6, auth:1@99c0fb6c/-", " 753 ret obj_cmp -> Ok(0)": "cpu:131315873", - " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@c35bd167", + " 754 call get_ledger_network_id()": "cpu:131316131, auth:1@99c0fb6c/1@7ea4443e", " 755 ret get_ledger_network_id -> Ok(Bytes(obj#879))": "cpu:131319028, mem:83474328, objs:-/440@799c85ba", " 756 ret create_contract -> Ok(Address(obj#881))": "cpu:131438281, mem:83487366, objs:-/441@ca7fc40a, store:-/64@e7079371, foot:64@cc9b651b, auth:-/1@337ead98", " 757 call bytes_new_from_slice(1723)": "cpu:131438536, auth:-/-", @@ -765,7 +765,7 @@ " 763 call create_contract(Address(obj#887), Bytes(obj#885), Bytes(obj#889))": "", " 764 call obj_cmp(Address(obj#891), Address(obj#887))": "cpu:133438846, mem:84805170, objs:-/446@10069c6f, auth:1@15a8a357/-", " 765 ret obj_cmp -> Ok(0)": "cpu:133439532", - " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@a355308d", + " 766 call get_ledger_network_id()": "cpu:133439790, auth:1@15a8a357/1@3a0544d3", " 767 ret get_ledger_network_id -> Ok(Bytes(obj#893))": "cpu:133442687, mem:84805282, objs:-/447@c3c2a480", " 768 ret create_contract -> Ok(Address(obj#895))": "cpu:133563026, mem:84818506, objs:-/448@75aa9a70, store:-/65@14bef7e4, foot:65@d9000a8e, auth:-/1@f4cff7fe", " 769 call bytes_new_from_slice(1723)": "cpu:133563281, auth:-/-", @@ -777,7 +777,7 @@ " 775 call create_contract(Address(obj#901), Bytes(obj#899), Bytes(obj#903))": "", " 776 call obj_cmp(Address(obj#905), Address(obj#901))": "cpu:135563591, mem:86136310, objs:-/453@9e1d13db, auth:1@740cbc46/-", " 777 ret obj_cmp -> Ok(0)": "cpu:135564277", - " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@d0e5f2d9", + " 778 call get_ledger_network_id()": "cpu:135564535, auth:1@740cbc46/1@3bfe883", " 779 ret get_ledger_network_id -> Ok(Bytes(obj#907))": "cpu:135567432, mem:86136422, objs:-/454@2140adea", " 780 ret create_contract -> Ok(Address(obj#909))": "cpu:135687059, mem:86149832, objs:-/455@cc45d327, store:-/66@cd903d3e, foot:66@bfdb0e98, auth:-/1@bd7b355c", " 781 call bytes_new_from_slice(1723)": "cpu:135687314, auth:-/-", @@ -789,7 +789,7 @@ " 787 call create_contract(Address(obj#915), Bytes(obj#913), Bytes(obj#917))": "", " 788 call obj_cmp(Address(obj#919), Address(obj#915))": "cpu:137687624, mem:87467636, objs:-/460@b03c0f83, auth:1@2da9c65/-", " 789 ret obj_cmp -> Ok(0)": "cpu:137688310", - " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@b0c0571b", + " 790 call get_ledger_network_id()": "cpu:137688568, auth:1@2da9c65/1@c4c1070f", " 791 ret get_ledger_network_id -> Ok(Bytes(obj#921))": "cpu:137691465, mem:87467748, objs:-/461@def87377", " 792 ret create_contract -> Ok(Address(obj#923))": "cpu:137813932, mem:87481344, objs:-/462@45120f6c, store:-/67@6584c2ff, foot:67@4ca4b4cb, auth:-/1@43d4f17b", " 793 call bytes_new_from_slice(1723)": "cpu:137814187, auth:-/-", @@ -801,7 +801,7 @@ " 799 call create_contract(Address(obj#929), Bytes(obj#927), Bytes(obj#931))": "", " 800 call obj_cmp(Address(obj#933), Address(obj#929))": "cpu:139814497, mem:88799148, objs:-/467@93a33041, auth:1@29f88d0f/-", " 801 ret obj_cmp -> Ok(0)": "cpu:139815183", - " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@979f25ad", + " 802 call get_ledger_network_id()": "cpu:139815441, auth:1@29f88d0f/1@fd3ae29e", " 803 ret get_ledger_network_id -> Ok(Bytes(obj#935))": "cpu:139818338, mem:88799260, objs:-/468@a5e532e9", " 804 ret create_contract -> Ok(Address(obj#937))": "cpu:139940093, mem:88813042, objs:-/469@f1730e5f, store:-/68@a95aaa61, foot:68@7b107c0e, auth:-/1@c7687a6f", " 805 call bytes_new_from_slice(1723)": "cpu:139940348, auth:-/-", @@ -813,7 +813,7 @@ " 811 call create_contract(Address(obj#943), Bytes(obj#941), Bytes(obj#945))": "", " 812 call obj_cmp(Address(obj#947), Address(obj#943))": "cpu:141940658, mem:90130846, objs:-/474@443ed4bb, auth:1@6d00ea2a/-", " 813 ret obj_cmp -> Ok(0)": "cpu:141941344", - " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@280957fb", + " 814 call get_ledger_network_id()": "cpu:141941602, auth:1@6d00ea2a/1@bda0a2b", " 815 ret get_ledger_network_id -> Ok(Bytes(obj#949))": "cpu:141944499, mem:90130958, objs:-/475@cf814756", " 816 ret create_contract -> Ok(Address(obj#951))": "cpu:142067314, mem:90144926, objs:-/476@de85786d, store:-/69@2950663e, foot:69@6894b0a2, auth:-/1@12151c8e", " 817 call bytes_new_from_slice(1723)": "cpu:142067569, auth:-/-", @@ -825,7 +825,7 @@ " 823 call create_contract(Address(obj#957), Bytes(obj#955), Bytes(obj#959))": "", " 824 call obj_cmp(Address(obj#961), Address(obj#957))": "cpu:144067879, mem:91462730, objs:-/481@b0c8321a, auth:1@c0c7e5a8/-", " 825 ret obj_cmp -> Ok(0)": "cpu:144068565", - " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@4841adf2", + " 826 call get_ledger_network_id()": "cpu:144068823, auth:1@c0c7e5a8/1@9608c96e", " 827 ret get_ledger_network_id -> Ok(Bytes(obj#963))": "cpu:144071720, mem:91462842, objs:-/482@846aa98e", " 828 ret create_contract -> Ok(Address(obj#965))": "cpu:144189505, mem:91476996, objs:-/483@4fbf53ac, store:-/70@adf2fc99, foot:70@821ad073, auth:-/1@44e6f004", " 829 call bytes_new_from_slice(1723)": "cpu:144189760, auth:-/-", @@ -837,7 +837,7 @@ " 835 call create_contract(Address(obj#971), Bytes(obj#969), Bytes(obj#973))": "", " 836 call obj_cmp(Address(obj#975), Address(obj#971))": "cpu:146190070, mem:92794800, objs:-/488@b085e7d1, auth:1@e5ccf8c7/-", " 837 ret obj_cmp -> Ok(0)": "cpu:146190756", - " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@793dfb0a", + " 838 call get_ledger_network_id()": "cpu:146191014, auth:1@e5ccf8c7/1@dcd47906", " 839 ret get_ledger_network_id -> Ok(Bytes(obj#977))": "cpu:146193911, mem:92794912, objs:-/489@6913398b", " 840 ret create_contract -> Ok(Address(obj#979))": "cpu:146320630, mem:92809252, objs:-/490@1c8cace9, store:-/71@79757366, foot:71@92e5e652, auth:-/1@d1d73ad0", " 841 call bytes_new_from_slice(1723)": "cpu:146320885, auth:-/-", @@ -849,7 +849,7 @@ " 847 call create_contract(Address(obj#985), Bytes(obj#983), Bytes(obj#987))": "", " 848 call obj_cmp(Address(obj#989), Address(obj#985))": "cpu:148321195, mem:94127056, objs:-/495@a9b31ca, auth:1@8b9c1d75/-", " 849 ret obj_cmp -> Ok(0)": "cpu:148321881", - " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@a045f7fb", + " 850 call get_ledger_network_id()": "cpu:148322139, auth:1@8b9c1d75/1@590c504f", " 851 ret get_ledger_network_id -> Ok(Bytes(obj#991))": "cpu:148325036, mem:94127168, objs:-/496@485ec8a7", " 852 ret create_contract -> Ok(Address(obj#993))": "cpu:148452827, mem:94141694, objs:-/497@2be4913d, store:-/72@f8a2e954, foot:72@131e5b52, auth:-/1@869a312d", " 853 call bytes_new_from_slice(1723)": "cpu:148453082, auth:-/-", @@ -861,7 +861,7 @@ " 859 call create_contract(Address(obj#999), Bytes(obj#997), Bytes(obj#1001))": "", " 860 call obj_cmp(Address(obj#1003), Address(obj#999))": "cpu:150453392, mem:95459498, objs:-/502@ef352cdd, auth:1@324ce1b0/-", " 861 ret obj_cmp -> Ok(0)": "cpu:150454078", - " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@1840bfcb", + " 862 call get_ledger_network_id()": "cpu:150454336, auth:1@324ce1b0/1@a5100b10", " 863 ret get_ledger_network_id -> Ok(Bytes(obj#1005))": "cpu:150457233, mem:95459610, objs:-/503@944ab8d9", " 864 ret create_contract -> Ok(Address(obj#1007))": "cpu:150582528, mem:95474322, objs:-/504@92c7111e, store:-/73@65800019, foot:73@74126ae0, auth:-/1@7b064a9e", " 865 call bytes_new_from_slice(1723)": "cpu:150582783, auth:-/-", @@ -873,7 +873,7 @@ " 871 call create_contract(Address(obj#1013), Bytes(obj#1011), Bytes(obj#1015))": "", " 872 call obj_cmp(Address(obj#1017), Address(obj#1013))": "cpu:152583093, mem:96792126, objs:-/509@c07bd221, auth:1@7da7fbb6/-", " 873 ret obj_cmp -> Ok(0)": "cpu:152583779", - " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@9bc13e6a", + " 874 call get_ledger_network_id()": "cpu:152584037, auth:1@7da7fbb6/1@1e202147", " 875 ret get_ledger_network_id -> Ok(Bytes(obj#1019))": "cpu:152586934, mem:96792238, objs:-/510@6b7222e6", " 876 ret create_contract -> Ok(Address(obj#1021))": "cpu:152719645, mem:96807136, objs:-/511@2d880cb3, store:-/74@6da01545, foot:74@98a244b2, auth:-/1@7fbd7918", " 877 call bytes_new_from_slice(1723)": "cpu:152719900, auth:-/-", @@ -885,7 +885,7 @@ " 883 call create_contract(Address(obj#1027), Bytes(obj#1025), Bytes(obj#1029))": "", " 884 call obj_cmp(Address(obj#1031), Address(obj#1027))": "cpu:154720210, mem:98124940, objs:-/516@f5623ffa, auth:1@f873a88c/-", " 885 ret obj_cmp -> Ok(0)": "cpu:154720896", - " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@450e1f0b", + " 886 call get_ledger_network_id()": "cpu:154721154, auth:1@f873a88c/1@742ef726", " 887 ret get_ledger_network_id -> Ok(Bytes(obj#1033))": "cpu:154724051, mem:98125052, objs:-/517@c1e547af", " 888 ret create_contract -> Ok(Address(obj#1035))": "cpu:154855028, mem:98140136, objs:-/518@ed0b6fa3, store:-/75@2640d275, foot:75@e1edfb8, auth:-/1@7bd1b1ac", " 889 call bytes_new_from_slice(1723)": "cpu:154855283, auth:-/-", @@ -897,7 +897,7 @@ " 895 call create_contract(Address(obj#1041), Bytes(obj#1039), Bytes(obj#1043))": "", " 896 call obj_cmp(Address(obj#1045), Address(obj#1041))": "cpu:156855593, mem:99457940, objs:-/523@afbfaeca, auth:1@a98e3a0c/-", " 897 ret obj_cmp -> Ok(0)": "cpu:156856279", - " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@97ab07bc", + " 898 call get_ledger_network_id()": "cpu:156856537, auth:1@a98e3a0c/1@3314c4f4", " 899 ret get_ledger_network_id -> Ok(Bytes(obj#1047))": "cpu:156859434, mem:99458052, objs:-/524@ae0a83cb", " 900 ret create_contract -> Ok(Address(obj#1049))": "cpu:156994271, mem:99473322, objs:-/525@90f0b7e, store:-/76@b3fee76, foot:76@17ea103, auth:-/1@cd0c113", " 901 call bytes_new_from_slice(1723)": "cpu:156994526, auth:-/-", @@ -909,7 +909,7 @@ " 907 call create_contract(Address(obj#1055), Bytes(obj#1053), Bytes(obj#1057))": "", " 908 call obj_cmp(Address(obj#1059), Address(obj#1055))": "cpu:158994836, mem:100791126, objs:-/530@79ae528, auth:1@2722a0e9/-", " 909 ret obj_cmp -> Ok(0)": "cpu:158995522", - " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@b37297e1", + " 910 call get_ledger_network_id()": "cpu:158995780, auth:1@2722a0e9/1@2fc267a0", " 911 ret get_ledger_network_id -> Ok(Bytes(obj#1061))": "cpu:158998677, mem:100791238, objs:-/531@c299807e", " 912 ret create_contract -> Ok(Address(obj#1063))": "cpu:159130004, mem:100806694, objs:-/532@cd9f8aed, store:-/77@657b3ea7, foot:77@e7ae520f, auth:-/1@cd4623d1", " 913 call bytes_new_from_slice(1723)": "cpu:159130259, auth:-/-", @@ -921,7 +921,7 @@ " 919 call create_contract(Address(obj#1069), Bytes(obj#1067), Bytes(obj#1071))": "", " 920 call obj_cmp(Address(obj#1073), Address(obj#1069))": "cpu:161130569, mem:102124498, objs:-/537@e5fd859b, auth:1@d3342891/-", " 921 ret obj_cmp -> Ok(0)": "cpu:161131255", - " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@ac15408a", + " 922 call get_ledger_network_id()": "cpu:161131513, auth:1@d3342891/1@572a7bcf", " 923 ret get_ledger_network_id -> Ok(Bytes(obj#1075))": "cpu:161134410, mem:102124610, objs:-/538@373a6e1f", " 924 ret create_contract -> Ok(Address(obj#1077))": "cpu:161269597, mem:102140252, objs:-/539@a2bba411, store:-/78@be444a78, foot:78@92931e2e, auth:-/1@ffdde4e3", " 925 call bytes_new_from_slice(1723)": "cpu:161269852, auth:-/-", @@ -933,7 +933,7 @@ " 931 call create_contract(Address(obj#1083), Bytes(obj#1081), Bytes(obj#1085))": "", " 932 call obj_cmp(Address(obj#1087), Address(obj#1083))": "cpu:163270162, mem:103458056, objs:-/544@9b41b8e0, auth:1@dd609a88/-", " 933 ret obj_cmp -> Ok(0)": "cpu:163270848", - " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@8b52e45b", + " 934 call get_ledger_network_id()": "cpu:163271106, auth:1@dd609a88/1@d4dbf130", " 935 ret get_ledger_network_id -> Ok(Bytes(obj#1089))": "cpu:163274003, mem:103458168, objs:-/545@1c155cdd", " 936 ret create_contract -> Ok(Address(obj#1091))": "cpu:163407456, mem:103473996, objs:-/546@6b1fddc7, store:-/79@1ff42e32, foot:79@b2da7f6f, auth:-/1@36361e6e", " 937 call bytes_new_from_slice(1723)": "cpu:163407711, auth:-/-", @@ -945,7 +945,7 @@ " 943 call create_contract(Address(obj#1097), Bytes(obj#1095), Bytes(obj#1099))": "", " 944 call obj_cmp(Address(obj#1101), Address(obj#1097))": "cpu:165408021, mem:104791800, objs:-/551@d1f85514, auth:1@2b6dc135/-", " 945 ret obj_cmp -> Ok(0)": "cpu:165408707", - " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@7c3fc9da", + " 946 call get_ledger_network_id()": "cpu:165408965, auth:1@2b6dc135/1@41e7877", " 947 ret get_ledger_network_id -> Ok(Bytes(obj#1103))": "cpu:165411862, mem:104791912, objs:-/552@904f5f5", " 948 ret create_contract -> Ok(Address(obj#1105))": "cpu:165543845, mem:104807926, objs:-/553@2b94afe6, store:-/80@5e14adc2, foot:80@f059281b, auth:-/1@1f118c6c", " 949 call bytes_new_from_slice(1723)": "cpu:165544100, auth:-/-", @@ -957,7 +957,7 @@ " 955 call create_contract(Address(obj#1111), Bytes(obj#1109), Bytes(obj#1113))": "", " 956 call obj_cmp(Address(obj#1115), Address(obj#1111))": "cpu:167544410, mem:106125730, objs:-/558@b9bcce70, auth:1@70e49983/-", " 957 ret obj_cmp -> Ok(0)": "cpu:167545096", - " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@d48ad31d", + " 958 call get_ledger_network_id()": "cpu:167545354, auth:1@70e49983/1@8b829207", " 959 ret get_ledger_network_id -> Ok(Bytes(obj#1117))": "cpu:167548251, mem:106125842, objs:-/559@db2ec1f1", " 960 ret create_contract -> Ok(Address(obj#1119))": "cpu:167688408, mem:106142042, objs:-/560@41ccfcc2, store:-/81@f81ad7da, foot:81@15685e3b, auth:-/1@6a69f567", " 961 call bytes_new_from_slice(1723)": "cpu:167688663, auth:-/-", @@ -969,7 +969,7 @@ " 967 call create_contract(Address(obj#1125), Bytes(obj#1123), Bytes(obj#1127))": "", " 968 call obj_cmp(Address(obj#1129), Address(obj#1125))": "cpu:169688973, mem:107459846, objs:-/565@1cad2db4, auth:1@2123cf2b/-", " 969 ret obj_cmp -> Ok(0)": "cpu:169689659", - " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@94e13f1", + " 970 call get_ledger_network_id()": "cpu:169689917, auth:1@2123cf2b/1@83e05267", " 971 ret get_ledger_network_id -> Ok(Bytes(obj#1131))": "cpu:169692814, mem:107459958, objs:-/566@56ce3a87", " 972 ret create_contract -> Ok(Address(obj#1133))": "cpu:169829465, mem:107476344, objs:-/567@3c1a2bca, store:-/82@768815a, foot:82@1f4b7a36, auth:-/1@27facc4a", " 973 call bytes_new_from_slice(1723)": "cpu:169829720, auth:-/-", @@ -981,7 +981,7 @@ " 979 call create_contract(Address(obj#1139), Bytes(obj#1137), Bytes(obj#1141))": "", " 980 call obj_cmp(Address(obj#1143), Address(obj#1139))": "cpu:171830030, mem:108794148, objs:-/572@1665aa07, auth:1@97298f20/-", " 981 ret obj_cmp -> Ok(0)": "cpu:171830716", - " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@e23f270a", + " 982 call get_ledger_network_id()": "cpu:171830974, auth:1@97298f20/1@4021cf1a", " 983 ret get_ledger_network_id -> Ok(Bytes(obj#1145))": "cpu:171833871, mem:108794260, objs:-/573@6e3f538d", " 984 ret create_contract -> Ok(Address(obj#1147))": "cpu:171974378, mem:108810832, objs:-/574@3ab5a9ff, store:-/83@92fc960e, foot:83@99dcf372, auth:-/1@3dfa80d3", " 985 call bytes_new_from_slice(1723)": "cpu:171974633, auth:-/-", @@ -993,7 +993,7 @@ " 991 call create_contract(Address(obj#1153), Bytes(obj#1151), Bytes(obj#1155))": "", " 992 call obj_cmp(Address(obj#1157), Address(obj#1153))": "cpu:173974943, mem:110128636, objs:-/579@cce4f991, auth:1@48cd29c5/-", " 993 ret obj_cmp -> Ok(0)": "cpu:173975629", - " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@89073d7b", + " 994 call get_ledger_network_id()": "cpu:173975887, auth:1@48cd29c5/1@b8360dff", " 995 ret get_ledger_network_id -> Ok(Bytes(obj#1159))": "cpu:173978784, mem:110128748, objs:-/580@bc994841", " 996 ret create_contract -> Ok(Address(obj#1161))": "cpu:174119339, mem:110145506, objs:-/581@35af42cf, store:-/84@9f307726, foot:84@c027a220, auth:-/1@9c275ce6", " 997 call bytes_new_from_slice(1723)": "cpu:174119594, auth:-/-", @@ -1065,7 +1065,7 @@ "10057 call symbol_copy_to_slice(Symbol(obj#3741), U32(0), 12)": "", "10058 ret symbol_copy_to_slice -> Ok(())": "cpu:313837705", "10059 call bytes_len(Bytes(obj#3729))": " vm:-/-", - "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@15a30448", + "1006 call get_ledger_network_id()": "cpu:176120848, auth:1@e0b29979/1@f1502f98", "10060 ret bytes_len -> Ok(U32(32))": "cpu:313843374", "10061 call vec_len(Vec(obj#2295))": "", "10062 ret vec_len -> Ok(U32(2))": "cpu:313843853", @@ -1197,7 +1197,7 @@ "10177 ret obj_cmp -> Ok(-1)": "cpu:313891983", "10178 call obj_cmp(Address(obj#2925), Address(obj#2293))": "", "10179 ret obj_cmp -> Ok(1)": "cpu:313892669", - "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@99e0911a", + "1018 call get_ledger_network_id()": "cpu:178265093, auth:1@bffd6a8/1@ddecb92e", "10180 call obj_cmp(Address(obj#2937), Address(obj#2293))": "", "10181 ret obj_cmp -> Ok(-1)": "cpu:313893355", "10182 call obj_cmp(Address(obj#2949), Address(obj#2293))": "", @@ -1329,7 +1329,7 @@ "10297 ret obj_cmp -> Ok(1)": "cpu:316131656", "10298 call obj_cmp(Address(obj#2733), Address(obj#2305))": "", "10299 ret obj_cmp -> Ok(1)": "cpu:316132342", - "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@d900f2b9", + "1030 call get_ledger_network_id()": "cpu:180413196, auth:1@c13706cc/1@ef460cff", "10300 call obj_cmp(Address(obj#2745), Address(obj#2305))": "", "10301 ret obj_cmp -> Ok(-1)": "cpu:316133028", "10302 call obj_cmp(Address(obj#2757), Address(obj#2305))": "", @@ -1461,7 +1461,7 @@ "10417 ret obj_cmp -> Ok(1)": "cpu:318361942", "10418 call obj_cmp(Address(obj#2553), Address(obj#2317))": "", "10419 ret obj_cmp -> Ok(1)": "cpu:318362628", - "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@8cf28d27", + "1042 call get_ledger_network_id()": "cpu:182564139, auth:1@5f9807ba/1@7a1f2db2", "10420 call obj_cmp(Address(obj#2565), Address(obj#2317))": "", "10421 ret obj_cmp -> Ok(1)": "cpu:318363314", "10422 call obj_cmp(Address(obj#2577), Address(obj#2317))": "", @@ -1593,7 +1593,7 @@ "10537 ret obj_cmp -> Ok(1)": "cpu:320593509", "10538 call obj_cmp(Address(obj#2385), Address(obj#2329))": "", "10539 ret obj_cmp -> Ok(1)": "cpu:320594195", - "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@adb776b7", + "1054 call get_ledger_network_id()": "cpu:184712596, auth:1@2258058c/1@914bc040", "10540 call obj_cmp(Address(obj#2397), Address(obj#2329))": "", "10541 ret obj_cmp -> Ok(1)": "cpu:320594881", "10542 call obj_cmp(Address(obj#2409), Address(obj#2329))": "", @@ -1725,7 +1725,7 @@ "10657 ret symbol_new_from_slice -> Ok(Symbol(obj#3813))": "cpu:320672801, mem:194284182, objs:6@c55a0112/1907@24a94857", "10658 push VM:88663680:sym#3813(Bytes(obj#3801), Vec(obj#2343), Vec(obj#3811))": "cpu:322804790, mem:195614441, objs:-/1908@79d4caa1, vm:1114112@a6f378b8/7@ae192e85, stk:47@612ae8f0, auth:47@b5bf038b/53@1b86918d", "10659 call symbol_len(Symbol(obj#3813))": "cpu:322810988, mem:195614591, objs:3@5ad62292/1908@79d4caa1, stk:47@e7fe44c8", - "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@3b733ec9", + "1066 call get_ledger_network_id()": "cpu:186865671, auth:1@ba0729e6/1@daca6b74", "10660 ret symbol_len -> Ok(U32(12))": "cpu:322811204", "10661 call symbol_copy_to_slice(Symbol(obj#3813), U32(0), 12)": "", "10662 ret symbol_copy_to_slice -> Ok(())": "cpu:322811563", @@ -1857,7 +1857,7 @@ "10777 ret obj_cmp -> Ok(-1)": "cpu:322864469", "10778 call obj_cmp(Address(obj#2949), Address(obj#2341))": "", "10779 ret obj_cmp -> Ok(-1)": "cpu:322865155", - "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@f3b99202", + "1078 call get_ledger_network_id()": "cpu:189019810, auth:1@809cdce1/1@4e66162c", "10780 call obj_cmp(Address(obj#2961), Address(obj#2341))": "", "10781 ret obj_cmp -> Ok(1)": "cpu:322865841", "10782 call obj_cmp(Address(obj#2973), Address(obj#2341))": "", @@ -1989,7 +1989,7 @@ "10897 ret obj_cmp -> Ok(1)": "cpu:325094026", "10898 call obj_cmp(Address(obj#2805), Address(obj#2353))": "", "10899 ret obj_cmp -> Ok(1)": "cpu:325094712", - "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@c40502a7", + "1090 call get_ledger_network_id()": "cpu:191175011, auth:1@804e7c90/1@95eeba1e", "10900 call obj_cmp(Address(obj#2817), Address(obj#2353))": "", "10901 ret obj_cmp -> Ok(1)": "cpu:325095398", "10902 call obj_cmp(Address(obj#2829), Address(obj#2353))": "", @@ -2121,7 +2121,7 @@ "11017 ret obj_cmp -> Ok(1)": "cpu:327314196", "11018 call obj_cmp(Address(obj#2673), Address(obj#2365))": "", "11019 ret obj_cmp -> Ok(1)": "cpu:327314882", - "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@69ae4ce3", + "1102 call get_ledger_network_id()": "cpu:193327720, auth:1@70941c/1@7b807866", "11020 call obj_cmp(Address(obj#2685), Address(obj#2365))": "", "11021 ret obj_cmp -> Ok(-1)": "cpu:327315568", "11022 call obj_cmp(Address(obj#2697), Address(obj#2365))": "", @@ -2253,7 +2253,7 @@ "11137 ret obj_cmp -> Ok(1)": "cpu:329535647", "11138 call obj_cmp(Address(obj#2553), Address(obj#2377))": "", "11139 ret obj_cmp -> Ok(1)": "cpu:329536333", - "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@c6d564e3", + "1114 call get_ledger_network_id()": "cpu:195479715, auth:1@6e110816/1@6ffec27e", "11140 call obj_cmp(Address(obj#2565), Address(obj#2377))": "", "11141 ret obj_cmp -> Ok(1)": "cpu:329537019", "11142 call obj_cmp(Address(obj#2577), Address(obj#2377))": "", @@ -2385,7 +2385,7 @@ "11257 ret obj_cmp -> Ok(1)": "cpu:331755331", "11258 call obj_cmp(Address(obj#2445), Address(obj#2389))": "", "11259 ret obj_cmp -> Ok(-1)": "cpu:331756017", - "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@19000368", + "1126 call get_ledger_network_id()": "cpu:197633536, auth:1@9d38099/1@eba6b1af", "11260 call obj_cmp(Address(obj#2457), Address(obj#2389))": "", "11261 ret obj_cmp -> Ok(1)": "cpu:331756703", "11262 call obj_cmp(Address(obj#2469), Address(obj#2389))": "", @@ -2517,7 +2517,7 @@ "11377 call vec_get(Vec(obj#2403), U32(0))": "", "11378 ret vec_get -> Ok(Symbol(obj#2399))": "cpu:333963852", "11379 call symbol_index_in_linear_memory(Symbol(obj#2399), U32(1048664), U32(3))": "cpu:333965101, mem:202273210, objs:4@d70cef75/1953@f5181d6, stk:52@bf289828", - "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@165a018e", + "1138 call get_ledger_network_id()": "cpu:199788419, auth:1@dd61d7c5/1@97aba755", "11380 ret symbol_index_in_linear_memory -> Ok(U32(0))": "cpu:333966832", "11381 call vec_get(Vec(obj#2403), U32(1))": "", "11382 ret vec_get -> Ok(Address(obj#2401))": "cpu:333968054", @@ -2649,7 +2649,7 @@ "11497 ret map_new_from_slices -> Ok(Map(obj#3915))": "cpu:334043924, mem:202274340, objs:6@5280520d/1958@b5f571e7", "11498 call vec_new_from_slice(2)": "", "11499 ret vec_new_from_slice -> Ok(Vec(obj#3917))": "cpu:334046819, mem:202274436, objs:6@5280520d/1959@94dbb658", - "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@598eacaa", + "1150 call get_ledger_network_id()": "cpu:201941832, auth:1@d9e5ec16/1@bed7d447", "11500 call vec_push_back(Vec(obj#3911), Vec(obj#3917))": "", "11501 ret vec_push_back -> Ok(Vec(obj#3919))": "cpu:334050037, mem:202274524, objs:6@5280520d/1960@ece2aeb7", "11502 call symbol_new_from_slice(12)": "", @@ -2781,7 +2781,7 @@ "11617 ret obj_cmp -> Ok(-1)": "cpu:336222938", "11618 call obj_cmp(Address(obj#2421), Address(obj#2413))": " auth:53@5f88b02f/46@f8ccf3e", "11619 ret obj_cmp -> Ok(0)": "cpu:336223624", - "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@a93552d0", + "1162 call get_ledger_network_id()": "cpu:204100623, auth:1@be37f2b1/1@978a819", "11620 call obj_cmp(Address(obj#2429), Address(obj#3923))": "", "11621 ret obj_cmp -> Ok(0)": "cpu:336224310", "11622 call obj_cmp(Symbol(obj#2431), Symbol(obj#3921))": "", @@ -2913,7 +2913,7 @@ "11737 ret obj_cmp -> Ok(1)": "cpu:338429701", "11738 call obj_cmp(Address(obj#2913), Address(obj#2425))": "", "11739 ret obj_cmp -> Ok(-1)": "cpu:338430387", - "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@5f366658", + "1174 call get_ledger_network_id()": "cpu:206256926, auth:1@663900c7/1@af6ca8a", "11740 call obj_cmp(Address(obj#2925), Address(obj#2425))": "", "11741 ret obj_cmp -> Ok(1)": "cpu:338431073", "11742 call obj_cmp(Address(obj#2937), Address(obj#2425))": "", @@ -3045,7 +3045,7 @@ "11857 ret obj_cmp -> Ok(1)": "cpu:340634697", "11858 call obj_cmp(Address(obj#2853), Address(obj#2437))": "", "11859 ret obj_cmp -> Ok(1)": "cpu:340635383", - "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@68507614", + "1186 call get_ledger_network_id()": "cpu:208413527, auth:1@e758d108/1@c5cbfcbf", "11860 call obj_cmp(Address(obj#2865), Address(obj#2437))": "", "11861 ret obj_cmp -> Ok(1)": "cpu:340636069", "11862 call obj_cmp(Address(obj#2877), Address(obj#2437))": "", @@ -3177,7 +3177,7 @@ "11977 ret obj_cmp -> Ok(-1)": "cpu:342833354", "11978 call obj_cmp(Address(obj#2805), Address(obj#2449))": "", "11979 ret obj_cmp -> Ok(-1)": "cpu:342834040", - "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@73687fbb", + "1198 call get_ledger_network_id()": "cpu:210578306, auth:1@ab6fa535/1@c8d5c457", "11980 call obj_cmp(Address(obj#2817), Address(obj#2449))": "", "11981 ret obj_cmp -> Ok(-1)": "cpu:342834726", "11982 call obj_cmp(Address(obj#2829), Address(obj#2449))": "", @@ -7223,223 +7223,223 @@ "15655 call deserialize_from_bytes(Bytes(obj#2977))": "cpu:435882604, mem:266144866, objs:5@688bccae/2385@adf4fcd3, stk:100@abd69abe", "15656 ret deserialize_from_bytes -> Ok(Vec(obj#4967))": "cpu:436160076, mem:266154786, objs:5@688bccae/2484@c58dcadb", "15657 pop VM:88663680:sym#4767 -> Ok(Void)": "cpu:436161325, mem:266154810, objs:6@eb8241f8/2484@c58dcadb, vm:1114112@939ed128/7@ae192e85, stk:100@831dd6bd", - "15658 ret require_auth_for_args -> Ok(Void)": "cpu:436298690, mem:266174254, objs:6@e1a15142/2484@c58dcadb, vm:-/-, store:-/102@90b2e30a, foot:102@efe3074b, stk:99@b480e09, auth:99@f0706ecf/1@b6fb6a79", + "15658 ret require_auth_for_args -> Ok(Void)": "cpu:436298690, mem:266174254, objs:6@e1a15142/2484@c58dcadb, vm:-/-, store:-/102@90b2e30a, foot:102@efe3074b, stk:99@b480e09, auth:99@f0706ecf/1@7bd89bc4", "15659 pop VM:88663680:sym#4749 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1566 ret symbol_new_from_slice -> Ok(Symbol(obj#1765))": "cpu:211712863, mem:132896823, objs:-/883@d847983", - "15660 ret require_auth_for_args -> Ok(Void)": "cpu:436437117, mem:266193884, objs:6@77c0c023/2484@c58dcadb, vm:-/-, store:-/103@eafc7c0c, foot:103@769cc87d, stk:98@a3e1398e, auth:98@5cdcd89/2@af0bc4a9", + "15660 ret require_auth_for_args -> Ok(Void)": "cpu:436437117, mem:266193884, objs:6@77c0c023/2484@c58dcadb, vm:-/-, store:-/103@eafc7c0c, foot:103@769cc87d, stk:98@a3e1398e, auth:98@5cdcd89/2@f4d7fb2f", "15661 pop VM:88663680:sym#4731 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15662 ret require_auth_for_args -> Ok(Void)": "cpu:436574582, mem:266213700, objs:6@a4ca3187/2484@c58dcadb, vm:-/-, store:-/104@2937ec0f, foot:104@2817233b, stk:97@1ff6fc47, auth:97@d20ed928/3@7a573646", + "15662 ret require_auth_for_args -> Ok(Void)": "cpu:436574582, mem:266213700, objs:6@a4ca3187/2484@c58dcadb, vm:-/-, store:-/104@2937ec0f, foot:104@2817233b, stk:97@1ff6fc47, auth:97@d20ed928/3@eb8c695b", "15663 pop VM:88663680:sym#4713 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15664 ret require_auth_for_args -> Ok(Void)": "cpu:436715139, mem:266233702, objs:6@24495b22/2484@c58dcadb, vm:-/-, store:-/105@c61e04bd, foot:105@da7cd189, stk:96@7b8171f2, auth:96@5788d49c/4@3c577c76", + "15664 ret require_auth_for_args -> Ok(Void)": "cpu:436715139, mem:266233702, objs:6@24495b22/2484@c58dcadb, vm:-/-, store:-/105@c61e04bd, foot:105@da7cd189, stk:96@7b8171f2, auth:96@5788d49c/4@ce6de5c7", "15665 pop VM:88663680:sym#4695 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15666 ret require_auth_for_args -> Ok(Void)": "cpu:436854730, mem:266253890, objs:6@ce6f0c34/2484@c58dcadb, vm:-/-, store:-/106@ae0da229, foot:106@11e4cade, stk:95@6fb5fe01, auth:95@1eee3b18/5@4bb0d176", + "15666 ret require_auth_for_args -> Ok(Void)": "cpu:436854730, mem:266253890, objs:6@ce6f0c34/2484@c58dcadb, vm:-/-, store:-/106@ae0da229, foot:106@11e4cade, stk:95@6fb5fe01, auth:95@1eee3b18/5@87615149", "15667 pop VM:88663680:sym#4677 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15668 ret require_auth_for_args -> Ok(Void)": "cpu:436997413, mem:266274264, objs:6@1731f207/2484@c58dcadb, vm:-/-, store:-/107@7de9e478, foot:107@a5d6c26e, stk:94@935ab213, auth:94@179ecd46/6@9dad0635", + "15668 ret require_auth_for_args -> Ok(Void)": "cpu:436997413, mem:266274264, objs:6@1731f207/2484@c58dcadb, vm:-/-, store:-/107@7de9e478, foot:107@a5d6c26e, stk:94@935ab213, auth:94@179ecd46/6@84321d63", "15669 pop VM:88663680:sym#4659 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1567 call vec_new_from_slice(2)": "", - "15670 ret require_auth_for_args -> Ok(Void)": "cpu:437137100, mem:266294824, objs:6@f6b7af8f/2484@c58dcadb, vm:-/-, store:-/108@8c46b2f2, foot:108@8d176abc, stk:93@f10822a3, auth:93@ce449c1c/7@86ce0e4a", + "15670 ret require_auth_for_args -> Ok(Void)": "cpu:437137100, mem:266294824, objs:6@f6b7af8f/2484@c58dcadb, vm:-/-, store:-/108@8c46b2f2, foot:108@8d176abc, stk:93@f10822a3, auth:93@ce449c1c/7@7bad218c", "15671 pop VM:88663680:sym#4641 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15672 ret require_auth_for_args -> Ok(Void)": "cpu:437276831, mem:266315570, objs:6@f8812107/2484@c58dcadb, vm:-/-, store:-/109@73512c1c, foot:109@856ca146, stk:92@a451b1b9, auth:92@ffe001d4/8@e709fb35", + "15672 ret require_auth_for_args -> Ok(Void)": "cpu:437276831, mem:266315570, objs:6@f8812107/2484@c58dcadb, vm:-/-, store:-/109@73512c1c, foot:109@856ca146, stk:92@a451b1b9, auth:92@ffe001d4/8@e2e8aecc", "15673 pop VM:88663680:sym#4623 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15674 ret require_auth_for_args -> Ok(Void)": "cpu:437421692, mem:266336502, objs:6@2ee70ce0/2484@c58dcadb, vm:-/-, store:-/110@8db92163, foot:110@faafa909, stk:91@eb0afd0e, auth:91@7e4754d8/9@3f6a3484", + "15674 ret require_auth_for_args -> Ok(Void)": "cpu:437421692, mem:266336502, objs:6@2ee70ce0/2484@c58dcadb, vm:-/-, store:-/110@8db92163, foot:110@faafa909, stk:91@eb0afd0e, auth:91@7e4754d8/9@2aae08ce", "15675 pop VM:88663680:sym#4605 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15676 ret require_auth_for_args -> Ok(Void)": "cpu:437567613, mem:266357620, objs:6@8c948d82/2484@c58dcadb, vm:-/-, store:-/111@691d4ea5, foot:111@84f8a6c4, stk:90@e74e5995, auth:90@96513e7d/10@b07eedb6", + "15676 ret require_auth_for_args -> Ok(Void)": "cpu:437567613, mem:266357620, objs:6@8c948d82/2484@c58dcadb, vm:-/-, store:-/111@691d4ea5, foot:111@84f8a6c4, stk:90@e74e5995, auth:90@96513e7d/10@6664ed74", "15677 pop VM:88663680:sym#4587 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15678 ret require_auth_for_args -> Ok(Void)": "cpu:437713588, mem:266378924, objs:6@f12ff1b3/2484@c58dcadb, vm:-/-, store:-/112@6a5347ee, foot:112@89e25b7f, stk:89@6604cd6, auth:89@d0812138/11@d0e8b6bf", + "15678 ret require_auth_for_args -> Ok(Void)": "cpu:437713588, mem:266378924, objs:6@f12ff1b3/2484@c58dcadb, vm:-/-, store:-/112@6a5347ee, foot:112@89e25b7f, stk:89@6604cd6, auth:89@d0812138/11@24496c1d", "15679 pop VM:88663680:sym#4569 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1568 ret vec_new_from_slice -> Ok(Vec(obj#1767))": "cpu:211715866, mem:132896919, objs:-/884@34badc4a", - "15680 ret require_auth_for_args -> Ok(Void)": "cpu:437861643, mem:266400414, objs:6@29a8936c/2484@c58dcadb, vm:-/-, store:-/113@de059c1e, foot:113@bd83e286, stk:88@e1efb8d2, auth:88@cd5771bf/12@fe9a4946", + "15680 ret require_auth_for_args -> Ok(Void)": "cpu:437861643, mem:266400414, objs:6@29a8936c/2484@c58dcadb, vm:-/-, store:-/113@de059c1e, foot:113@bd83e286, stk:88@e1efb8d2, auth:88@cd5771bf/12@82f84e6c", "15681 pop VM:88663680:sym#4551 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15682 ret require_auth_for_args -> Ok(Void)": "cpu:438010762, mem:266422090, objs:6@5896f443/2484@c58dcadb, vm:-/-, store:-/114@18839080, foot:114@2002e2a6, stk:87@2d21dbee, auth:87@2bf3ee8e/13@6cfc05db", + "15682 ret require_auth_for_args -> Ok(Void)": "cpu:438010762, mem:266422090, objs:6@5896f443/2484@c58dcadb, vm:-/-, store:-/114@18839080, foot:114@2002e2a6, stk:87@2d21dbee, auth:87@2bf3ee8e/13@bbc910fd", "15683 pop VM:88663680:sym#4533 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15684 ret require_auth_for_args -> Ok(Void)": "cpu:438159927, mem:266443952, objs:6@85ea2de6/2484@c58dcadb, vm:-/-, store:-/115@da493394, foot:115@dba9d26f, stk:86@2d293bcb, auth:86@5a169b63/14@f9475d1e", + "15684 ret require_auth_for_args -> Ok(Void)": "cpu:438159927, mem:266443952, objs:6@85ea2de6/2484@c58dcadb, vm:-/-, store:-/115@da493394, foot:115@dba9d26f, stk:86@2d293bcb, auth:86@5a169b63/14@29c244d2", "15685 pop VM:88663680:sym#4515 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15686 ret require_auth_for_args -> Ok(Void)": "cpu:438310156, mem:266466000, objs:6@c7be36f1/2484@c58dcadb, vm:-/-, store:-/116@d88de8b8, foot:116@7c838b63, stk:85@e7dad090, auth:85@fcc167f9/15@66ca8bca", + "15686 ret require_auth_for_args -> Ok(Void)": "cpu:438310156, mem:266466000, objs:6@c7be36f1/2484@c58dcadb, vm:-/-, store:-/116@d88de8b8, foot:116@7c838b63, stk:85@e7dad090, auth:85@fcc167f9/15@6473f1bb", "15687 pop VM:88663680:sym#4497 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15688 ret require_auth_for_args -> Ok(Void)": "cpu:438462463, mem:266488234, objs:6@8bcbf724/2484@c58dcadb, vm:-/-, store:-/117@83301fc1, foot:117@319a1fa4, stk:84@f5fba549, auth:84@9c5abac/16@bb7485d2", + "15688 ret require_auth_for_args -> Ok(Void)": "cpu:438462463, mem:266488234, objs:6@8bcbf724/2484@c58dcadb, vm:-/-, store:-/117@83301fc1, foot:117@319a1fa4, stk:84@f5fba549, auth:84@9c5abac/16@a73f543c", "15689 pop VM:88663680:sym#4479 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1569 call symbol_new_from_slice(15)": "cpu:211720474, mem:132897094", - "15690 ret require_auth_for_args -> Ok(Void)": "cpu:438615836, mem:266510654, objs:6@ecfef337/2484@c58dcadb, vm:-/-, store:-/118@d5a6410, foot:118@74e1b664, stk:83@5ee120dc, auth:83@fc052fd7/17@7281695", + "15690 ret require_auth_for_args -> Ok(Void)": "cpu:438615836, mem:266510654, objs:6@ecfef337/2484@c58dcadb, vm:-/-, store:-/118@d5a6410, foot:118@74e1b664, stk:83@5ee120dc, auth:83@fc052fd7/17@d35087b9", "15691 pop VM:88663680:sym#4461 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15692 ret require_auth_for_args -> Ok(Void)": "cpu:438765191, mem:266533260, objs:6@1db0bb89/2484@c58dcadb, vm:-/-, store:-/119@5a8368c2, foot:119@efda2ba5, stk:82@6c813208, auth:82@4dbaaa39/18@a7bcc911", + "15692 ret require_auth_for_args -> Ok(Void)": "cpu:438765191, mem:266533260, objs:6@1db0bb89/2484@c58dcadb, vm:-/-, store:-/119@5a8368c2, foot:119@efda2ba5, stk:82@6c813208, auth:82@4dbaaa39/18@2137a1db", "15693 pop VM:88663680:sym#4443 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15694 ret require_auth_for_args -> Ok(Void)": "cpu:438915614, mem:266556052, objs:6@a6eb85eb/2484@c58dcadb, vm:-/-, store:-/120@1aeb8d58, foot:120@9be73ac4, stk:81@ed15a83b, auth:81@6a63417a/19@8c60e12e", + "15694 ret require_auth_for_args -> Ok(Void)": "cpu:438915614, mem:266556052, objs:6@a6eb85eb/2484@c58dcadb, vm:-/-, store:-/120@1aeb8d58, foot:120@9be73ac4, stk:81@ed15a83b, auth:81@6a63417a/19@377e1bab", "15695 pop VM:88663680:sym#4425 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15696 ret require_auth_for_args -> Ok(Void)": "cpu:439069131, mem:266579030, objs:6@42f9edc2/2484@c58dcadb, vm:-/-, store:-/121@366ba1e6, foot:121@847e5f7e, stk:80@bf8cd5bf, auth:80@94ce8370/20@793104d1", + "15696 ret require_auth_for_args -> Ok(Void)": "cpu:439069131, mem:266579030, objs:6@42f9edc2/2484@c58dcadb, vm:-/-, store:-/121@366ba1e6, foot:121@847e5f7e, stk:80@bf8cd5bf, auth:80@94ce8370/20@a5dfa40", "15697 pop VM:88663680:sym#4407 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15698 ret require_auth_for_args -> Ok(Void)": "cpu:439227776, mem:266602194, objs:6@4f69d8a9/2484@c58dcadb, vm:-/-, store:-/122@4289994c, foot:122@da1f74c, stk:79@bb4fffae, auth:79@dd79bf55/21@4fac67a", + "15698 ret require_auth_for_args -> Ok(Void)": "cpu:439227776, mem:266602194, objs:6@4f69d8a9/2484@c58dcadb, vm:-/-, store:-/122@4289994c, foot:122@da1f74c, stk:79@bb4fffae, auth:79@dd79bf55/21@8bcc534d", "15699 pop VM:88663680:sym#4389 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1570 ret symbol_new_from_slice -> Ok(Symbol(obj#1769))": "cpu:211723511, mem:132897189, objs:-/885@30279af3", - "15700 ret require_auth_for_args -> Ok(Void)": "cpu:439387485, mem:266625544, objs:6@8ee9ebd6/2484@c58dcadb, vm:-/-, store:-/123@367369da, foot:123@c7348ef7, stk:78@907f5783, auth:78@2ba65d18/22@498db459", + "15700 ret require_auth_for_args -> Ok(Void)": "cpu:439387485, mem:266625544, objs:6@8ee9ebd6/2484@c58dcadb, vm:-/-, store:-/123@367369da, foot:123@c7348ef7, stk:78@907f5783, auth:78@2ba65d18/22@42fbda15", "15701 pop VM:88663680:sym#4371 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15702 ret require_auth_for_args -> Ok(Void)": "cpu:439547242, mem:266649080, objs:6@435c438a/2484@c58dcadb, vm:-/-, store:-/124@db528cc5, foot:124@94894be6, stk:77@f5261b78, auth:77@701162dd/23@6006c6bf", + "15702 ret require_auth_for_args -> Ok(Void)": "cpu:439547242, mem:266649080, objs:6@435c438a/2484@c58dcadb, vm:-/-, store:-/124@db528cc5, foot:124@94894be6, stk:77@f5261b78, auth:77@701162dd/23@61f38ea5", "15703 pop VM:88663680:sym#4353 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15704 ret require_auth_for_args -> Ok(Void)": "cpu:439708061, mem:266672802, objs:6@94432e06/2484@c58dcadb, vm:-/-, store:-/125@71d917e3, foot:125@d78bccea, stk:76@13588ffa, auth:76@2d055e71/24@d9d5391e", + "15704 ret require_auth_for_args -> Ok(Void)": "cpu:439708061, mem:266672802, objs:6@94432e06/2484@c58dcadb, vm:-/-, store:-/125@71d917e3, foot:125@d78bccea, stk:76@13588ffa, auth:76@2d055e71/24@d5aa02ce", "15705 pop VM:88663680:sym#4335 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15706 ret require_auth_for_args -> Ok(Void)": "cpu:439869944, mem:266696710, objs:6@18ba39df/2484@c58dcadb, vm:-/-, store:-/126@b228a15b, foot:126@96f0f231, stk:75@8672b992, auth:75@ed119b0d/25@557d63c7", + "15706 ret require_auth_for_args -> Ok(Void)": "cpu:439869944, mem:266696710, objs:6@18ba39df/2484@c58dcadb, vm:-/-, store:-/126@b228a15b, foot:126@96f0f231, stk:75@8672b992, auth:75@ed119b0d/25@5326add1", "15707 pop VM:88663680:sym#4317 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15708 ret require_auth_for_args -> Ok(Void)": "cpu:440033905, mem:266720804, objs:6@6046ef1/2484@c58dcadb, vm:-/-, store:-/127@4e6a78d6, foot:127@d74148d, stk:74@2233dd85, auth:74@1c34a7fa/26@52b14937", + "15708 ret require_auth_for_args -> Ok(Void)": "cpu:440033905, mem:266720804, objs:6@6046ef1/2484@c58dcadb, vm:-/-, store:-/127@4e6a78d6, foot:127@d74148d, stk:74@2233dd85, auth:74@1c34a7fa/26@a394a367", "15709 pop VM:88663680:sym#4299 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1571 call vec_new_from_slice(2)": "", - "15710 ret require_auth_for_args -> Ok(Void)": "cpu:440198960, mem:266745084, objs:6@d92fcb83/2484@c58dcadb, vm:-/-, store:-/128@a5f666d3, foot:128@d564a574, stk:73@4a3b13e0, auth:73@206df3d8/27@708b939a", + "15710 ret require_auth_for_args -> Ok(Void)": "cpu:440198960, mem:266745084, objs:6@d92fcb83/2484@c58dcadb, vm:-/-, store:-/128@a5f666d3, foot:128@d564a574, stk:73@4a3b13e0, auth:73@206df3d8/27@3a5716be", "15711 pop VM:88663680:sym#4281 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15712 ret require_auth_for_args -> Ok(Void)": "cpu:440365097, mem:266769550, objs:6@1bc538c/2484@c58dcadb, vm:-/-, store:-/129@49d343b0, foot:129@3f25db7e, stk:72@4cc962d8, auth:72@645944bd/28@95e14737", + "15712 ret require_auth_for_args -> Ok(Void)": "cpu:440365097, mem:266769550, objs:6@1bc538c/2484@c58dcadb, vm:-/-, store:-/129@49d343b0, foot:129@3f25db7e, stk:72@4cc962d8, auth:72@645944bd/28@1da483d4", "15713 pop VM:88663680:sym#4263 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15714 ret require_auth_for_args -> Ok(Void)": "cpu:440531284, mem:266794202, objs:6@59156251/2484@c58dcadb, vm:-/-, store:-/130@21bc615f, foot:130@e38d7487, stk:71@c88d863b, auth:71@8827defa/29@e94b0702", + "15714 ret require_auth_for_args -> Ok(Void)": "cpu:440531284, mem:266794202, objs:6@59156251/2484@c58dcadb, vm:-/-, store:-/130@21bc615f, foot:130@e38d7487, stk:71@c88d863b, auth:71@8827defa/29@af953315", "15715 pop VM:88663680:sym#4245 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15716 ret require_auth_for_args -> Ok(Void)": "cpu:440700563, mem:266819040, objs:6@15016d65/2484@c58dcadb, vm:-/-, store:-/131@240ce56f, foot:131@88b7b533, stk:70@18da574b, auth:70@a98bd75d/30@37b48c08", + "15716 ret require_auth_for_args -> Ok(Void)": "cpu:440700563, mem:266819040, objs:6@15016d65/2484@c58dcadb, vm:-/-, store:-/131@240ce56f, foot:131@88b7b533, stk:70@18da574b, auth:70@a98bd75d/30@13c8e68f", "15717 pop VM:88663680:sym#4227 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15718 ret require_auth_for_args -> Ok(Void)": "cpu:440869892, mem:266844064, objs:6@4b9c5dc3/2484@c58dcadb, vm:-/-, store:-/132@94e21971, foot:132@d66e3b89, stk:69@bbc14103, auth:69@fa30289b/31@6a19a24d", + "15718 ret require_auth_for_args -> Ok(Void)": "cpu:440869892, mem:266844064, objs:6@4b9c5dc3/2484@c58dcadb, vm:-/-, store:-/132@94e21971, foot:132@d66e3b89, stk:69@bbc14103, auth:69@fa30289b/31@a30e8262", "15719 pop VM:88663680:sym#4209 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1572 ret vec_new_from_slice -> Ok(Vec(obj#1771))": "cpu:211726514, mem:132897285, objs:-/886@4126b0bc", - "15720 ret require_auth_for_args -> Ok(Void)": "cpu:441037233, mem:266869274, objs:6@64aa149b/2484@c58dcadb, vm:-/-, store:-/133@e2f43242, foot:133@48b3d668, stk:68@331c3ee5, auth:68@8aace2b/32@5a702bab", + "15720 ret require_auth_for_args -> Ok(Void)": "cpu:441037233, mem:266869274, objs:6@64aa149b/2484@c58dcadb, vm:-/-, store:-/133@e2f43242, foot:133@48b3d668, stk:68@331c3ee5, auth:68@8aace2b/32@ce1d2eed", "15721 pop VM:88663680:sym#4191 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15722 ret require_auth_for_args -> Ok(Void)": "cpu:441208690, mem:266894670, objs:6@e028c957/2484@c58dcadb, vm:-/-, store:-/134@90bd78b5, foot:134@87b874c6, stk:67@911b1b40, auth:67@e1fa2e12/33@407dc61b", + "15722 ret require_auth_for_args -> Ok(Void)": "cpu:441208690, mem:266894670, objs:6@e028c957/2484@c58dcadb, vm:-/-, store:-/134@90bd78b5, foot:134@87b874c6, stk:67@911b1b40, auth:67@e1fa2e12/33@981743c2", "15723 pop VM:88663680:sym#4173 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15724 ret require_auth_for_args -> Ok(Void)": "cpu:441379175, mem:266920252, objs:6@6814f707/2484@c58dcadb, vm:-/-, store:-/135@d200c041, foot:135@f4743bf6, stk:66@70ff85dd, auth:66@9f383a8/34@a256f88f", + "15724 ret require_auth_for_args -> Ok(Void)": "cpu:441379175, mem:266920252, objs:6@6814f707/2484@c58dcadb, vm:-/-, store:-/135@d200c041, foot:135@f4743bf6, stk:66@70ff85dd, auth:66@9f383a8/34@826e8979", "15725 pop VM:88663680:sym#4155 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15726 ret require_auth_for_args -> Ok(Void)": "cpu:441551746, mem:266946020, objs:6@ea604735/2484@c58dcadb, vm:-/-, store:-/136@a2f2f8da, foot:136@570d27e5, stk:65@e0301773, auth:65@b9a97767/35@7bde3863", + "15726 ret require_auth_for_args -> Ok(Void)": "cpu:441551746, mem:266946020, objs:6@ea604735/2484@c58dcadb, vm:-/-, store:-/136@a2f2f8da, foot:136@570d27e5, stk:65@e0301773, auth:65@b9a97767/35@1c312d75", "15727 pop VM:88663680:sym#4137 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15728 ret require_auth_for_args -> Ok(Void)": "cpu:441725377, mem:266971974, objs:6@a39ceda3/2484@c58dcadb, vm:-/-, store:-/137@92d99b1a, foot:137@3ba31400, stk:64@2b4c7a4d, auth:64@84fed67e/36@634c626e", + "15728 ret require_auth_for_args -> Ok(Void)": "cpu:441725377, mem:266971974, objs:6@a39ceda3/2484@c58dcadb, vm:-/-, store:-/137@92d99b1a, foot:137@3ba31400, stk:64@2b4c7a4d, auth:64@84fed67e/36@e00ac4f3", "15729 pop VM:88663680:sym#4119 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1573 call symbol_new_from_slice(15)": "cpu:211731122, mem:132897460", - "15730 ret require_auth_for_args -> Ok(Void)": "cpu:441900074, mem:266998114, objs:6@9e738a1d/2484@c58dcadb, vm:-/-, store:-/138@d0c3433a, foot:138@d628a523, stk:63@e69c8709, auth:63@2216aa93/37@65551e63", + "15730 ret require_auth_for_args -> Ok(Void)": "cpu:441900074, mem:266998114, objs:6@9e738a1d/2484@c58dcadb, vm:-/-, store:-/138@d0c3433a, foot:138@d628a523, stk:63@e69c8709, auth:63@2216aa93/37@39c7cf0c", "15731 pop VM:88663680:sym#4101 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15732 ret require_auth_for_args -> Ok(Void)": "cpu:442075833, mem:267024440, objs:6@f7876b60/2484@c58dcadb, vm:-/-, store:-/139@9b6f7d7f, foot:139@c3504ff5, stk:62@7173313a, auth:62@f610ad3d/38@a1fb35b2", + "15732 ret require_auth_for_args -> Ok(Void)": "cpu:442075833, mem:267024440, objs:6@f7876b60/2484@c58dcadb, vm:-/-, store:-/139@9b6f7d7f, foot:139@c3504ff5, stk:62@7173313a, auth:62@f610ad3d/38@a33a9d5", "15733 pop VM:88663680:sym#4083 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15734 ret require_auth_for_args -> Ok(Void)": "cpu:442251642, mem:267050952, objs:6@e6353f53/2484@c58dcadb, vm:-/-, store:-/140@e555f469, foot:140@afab1eca, stk:61@afcdefe1, auth:61@97ccc004/39@75a98d9e", + "15734 ret require_auth_for_args -> Ok(Void)": "cpu:442251642, mem:267050952, objs:6@e6353f53/2484@c58dcadb, vm:-/-, store:-/140@e555f469, foot:140@afab1eca, stk:61@afcdefe1, auth:61@97ccc004/39@11d5a31a", "15735 pop VM:88663680:sym#4065 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15736 ret require_auth_for_args -> Ok(Void)": "cpu:442431559, mem:267077650, objs:6@1bd52b07/2484@c58dcadb, vm:-/-, store:-/141@a4ece3b, foot:141@85f5fd1c, stk:60@45327dbb, auth:60@bb22e4a2/40@ad30fd9d", + "15736 ret require_auth_for_args -> Ok(Void)": "cpu:442431559, mem:267077650, objs:6@1bd52b07/2484@c58dcadb, vm:-/-, store:-/141@a4ece3b, foot:141@85f5fd1c, stk:60@45327dbb, auth:60@bb22e4a2/40@17a2f5af", "15737 pop VM:88663680:sym#4047 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15738 ret require_auth_for_args -> Ok(Void)": "cpu:442609494, mem:267104534, objs:6@d8a476e8/2484@c58dcadb, vm:-/-, store:-/142@347f49b2, foot:142@614951e6, stk:59@6d1d4a78, auth:59@4ba8f486/41@41a72549", + "15738 ret require_auth_for_args -> Ok(Void)": "cpu:442609494, mem:267104534, objs:6@d8a476e8/2484@c58dcadb, vm:-/-, store:-/142@347f49b2, foot:142@614951e6, stk:59@6d1d4a78, auth:59@4ba8f486/41@5ebcaa5f", "15739 pop VM:88663680:sym#4029 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1574 ret symbol_new_from_slice -> Ok(Symbol(obj#1773))": "cpu:211734159, mem:132897555, objs:-/887@98974acb", - "15740 ret require_auth_for_args -> Ok(Void)": "cpu:442788489, mem:267131604, objs:6@681f9263/2484@c58dcadb, vm:-/-, store:-/143@124c2eeb, foot:143@554b5dee, stk:58@35a77e43, auth:58@4c87870c/42@28d3b165", + "15740 ret require_auth_for_args -> Ok(Void)": "cpu:442788489, mem:267131604, objs:6@681f9263/2484@c58dcadb, vm:-/-, store:-/143@124c2eeb, foot:143@554b5dee, stk:58@35a77e43, auth:58@4c87870c/42@778e1db", "15741 pop VM:88663680:sym#4011 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15742 ret require_auth_for_args -> Ok(Void)": "cpu:442970588, mem:267158860, objs:6@8743913a/2484@c58dcadb, vm:-/-, store:-/144@706bc452, foot:144@20a0b997, stk:57@e65a6d8b, auth:57@211b21d0/43@7720e1a9", + "15742 ret require_auth_for_args -> Ok(Void)": "cpu:442970588, mem:267158860, objs:6@8743913a/2484@c58dcadb, vm:-/-, store:-/144@706bc452, foot:144@20a0b997, stk:57@e65a6d8b, auth:57@211b21d0/43@c9150c13", "15743 pop VM:88663680:sym#3993 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15744 ret require_auth_for_args -> Ok(Void)": "cpu:443153749, mem:267186302, objs:6@f8b95962/2484@c58dcadb, vm:-/-, store:-/145@3b5282ca, foot:145@557b2dbf, stk:56@7df6e759, auth:56@5a778782/44@8095a3a6", + "15744 ret require_auth_for_args -> Ok(Void)": "cpu:443153749, mem:267186302, objs:6@f8b95962/2484@c58dcadb, vm:-/-, store:-/145@3b5282ca, foot:145@557b2dbf, stk:56@7df6e759, auth:56@5a778782/44@5a2ef758", "15745 pop VM:88663680:sym#3975 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15746 ret require_auth_for_args -> Ok(Void)": "cpu:443337974, mem:267213930, objs:6@1d255476/2484@c58dcadb, vm:-/-, store:-/146@13b040, foot:146@80efcd5f, stk:55@c12ac3bb, auth:55@8edaf67e/45@3c204cd8", + "15746 ret require_auth_for_args -> Ok(Void)": "cpu:443337974, mem:267213930, objs:6@1d255476/2484@c58dcadb, vm:-/-, store:-/146@13b040, foot:146@80efcd5f, stk:55@c12ac3bb, auth:55@8edaf67e/45@fd4bbfb9", "15747 pop VM:88663680:sym#3957 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15748 ret require_auth_for_args -> Ok(Void)": "cpu:443523261, mem:267241744, objs:6@a695e9d7/2484@c58dcadb, vm:-/-, store:-/147@fe42ee93, foot:147@4f09b4d4, stk:54@78bb1f2, auth:54@d04d0718/46@c44ade23", + "15748 ret require_auth_for_args -> Ok(Void)": "cpu:443523261, mem:267241744, objs:6@a695e9d7/2484@c58dcadb, vm:-/-, store:-/147@fe42ee93, foot:147@4f09b4d4, stk:54@78bb1f2, auth:54@d04d0718/46@b90e90ed", "15749 pop VM:88663680:sym#3939 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1575 call vec_new_from_slice(2)": "", - "15750 ret require_auth_for_args -> Ok(Void)": "cpu:443709612, mem:267269744, objs:6@f6014b02/2484@c58dcadb, vm:-/-, store:-/148@459c06bd, foot:148@6c00f647, stk:53@256a64ec, auth:53@5f88b02f/47@ec41e88", + "15750 ret require_auth_for_args -> Ok(Void)": "cpu:443709612, mem:267269744, objs:6@f6014b02/2484@c58dcadb, vm:-/-, store:-/148@459c06bd, foot:148@6c00f647, stk:53@256a64ec, auth:53@5f88b02f/47@18bbbde9", "15751 pop VM:88663680:sym#3921 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15752 ret require_auth_for_args -> Ok(Void)": "cpu:443899059, mem:267297930, objs:6@5280520d/2484@c58dcadb, vm:-/-, store:-/149@d48cf8c7, foot:149@fe790212, stk:52@c2f98259, auth:52@784dc0bf/48@98e72225", + "15752 ret require_auth_for_args -> Ok(Void)": "cpu:443899059, mem:267297930, objs:6@5280520d/2484@c58dcadb, vm:-/-, store:-/149@d48cf8c7, foot:149@fe790212, stk:52@c2f98259, auth:52@784dc0bf/48@619cf955", "15753 pop VM:88663680:sym#3903 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15754 ret require_auth_for_args -> Ok(Void)": "cpu:444084490, mem:267326302, objs:6@7e2e2d7a/2484@c58dcadb, vm:-/-, store:-/150@ec05deb4, foot:150@277e326, stk:51@d5b0995, auth:51@522c6456/49@94ad24ce", + "15754 ret require_auth_for_args -> Ok(Void)": "cpu:444084490, mem:267326302, objs:6@7e2e2d7a/2484@c58dcadb, vm:-/-, store:-/150@ec05deb4, foot:150@277e326, stk:51@d5b0995, auth:51@522c6456/49@eddc1eb4", "15755 pop VM:88663680:sym#3885 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15756 ret require_auth_for_args -> Ok(Void)": "cpu:444273015, mem:267354860, objs:6@75b4840e/2484@c58dcadb, vm:-/-, store:-/151@9ba7d7c2, foot:151@16524781, stk:50@d0a28170, auth:50@2cfdfd38/50@b969d3f0", + "15756 ret require_auth_for_args -> Ok(Void)": "cpu:444273015, mem:267354860, objs:6@75b4840e/2484@c58dcadb, vm:-/-, store:-/151@9ba7d7c2, foot:151@16524781, stk:50@d0a28170, auth:50@2cfdfd38/50@9e43af15", "15757 pop VM:88663680:sym#3867 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15758 ret require_auth_for_args -> Ok(Void)": "cpu:444463624, mem:267383604, objs:6@21576ae6/2484@c58dcadb, vm:-/-, store:-/152@d76434be, foot:152@14c20009, stk:49@e851ee31, auth:49@a59e1027/51@e77cfc93", + "15758 ret require_auth_for_args -> Ok(Void)": "cpu:444463624, mem:267383604, objs:6@21576ae6/2484@c58dcadb, vm:-/-, store:-/152@d76434be, foot:152@14c20009, stk:49@e851ee31, auth:49@a59e1027/51@74124caf", "15759 pop VM:88663680:sym#3849 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1576 ret vec_new_from_slice -> Ok(Vec(obj#1775))": "cpu:211737162, mem:132897651, objs:-/888@9451c10e", - "15760 ret require_auth_for_args -> Ok(Void)": "cpu:444654279, mem:267412534, objs:6@b75d2348/2484@c58dcadb, vm:-/-, store:-/153@e258a369, foot:153@c1844a57, stk:48@1c0f6ed3, auth:48@fbdba925/52@37e66ef1", + "15760 ret require_auth_for_args -> Ok(Void)": "cpu:444654279, mem:267412534, objs:6@b75d2348/2484@c58dcadb, vm:-/-, store:-/153@e258a369, foot:153@c1844a57, stk:48@1c0f6ed3, auth:48@fbdba925/52@48567802", "15761 pop VM:88663680:sym#3831 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15762 ret require_auth_for_args -> Ok(Void)": "cpu:444847016, mem:267441650, objs:6@f780be6/2484@c58dcadb, vm:-/-, store:-/154@86dd7909, foot:154@5c9a8728, stk:47@7db5dc5e, auth:47@b5bf038b/53@b31c9af", + "15762 ret require_auth_for_args -> Ok(Void)": "cpu:444847016, mem:267441650, objs:6@f780be6/2484@c58dcadb, vm:-/-, store:-/154@86dd7909, foot:154@5c9a8728, stk:47@7db5dc5e, auth:47@b5bf038b/53@8cdeeb5f", "15763 pop VM:88663680:sym#3813 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15764 ret require_auth_for_args -> Ok(Void)": "cpu:445041831, mem:267470952, objs:6@c55a0112/2484@c58dcadb, vm:-/-, store:-/155@1a9486d7, foot:155@1cf6a54a, stk:46@721ace68, auth:46@56765c20/54@40341d76", + "15764 ret require_auth_for_args -> Ok(Void)": "cpu:445041831, mem:267470952, objs:6@c55a0112/2484@c58dcadb, vm:-/-, store:-/155@1a9486d7, foot:155@1cf6a54a, stk:46@721ace68, auth:46@56765c20/54@6c9d2c84", "15765 pop VM:88663680:sym#3795 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15766 ret require_auth_for_args -> Ok(Void)": "cpu:445236694, mem:267500440, objs:6@5927544d/2484@c58dcadb, vm:-/-, store:-/156@994aa4a0, foot:156@3d4ffd8d, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@20691fa4", + "15766 ret require_auth_for_args -> Ok(Void)": "cpu:445236694, mem:267500440, objs:6@5927544d/2484@c58dcadb, vm:-/-, store:-/156@994aa4a0, foot:156@3d4ffd8d, stk:45@f9bb4f9a, auth:45@1e95ccd9/55@9cb76b84", "15767 pop VM:88663680:sym#3777 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15768 ret require_auth_for_args -> Ok(Void)": "cpu:445432619, mem:267530114, objs:6@f0ef7bde/2484@c58dcadb, vm:-/-, store:-/157@a328446c, foot:157@d4eb7004, stk:44@7f4eec7a, auth:44@9c848851/56@60bb9ffd", + "15768 ret require_auth_for_args -> Ok(Void)": "cpu:445432619, mem:267530114, objs:6@f0ef7bde/2484@c58dcadb, vm:-/-, store:-/157@a328446c, foot:157@d4eb7004, stk:44@7f4eec7a, auth:44@9c848851/56@109e059e", "15769 pop VM:88663680:sym#3759 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1577 call symbol_new_from_slice(15)": "cpu:211741770, mem:132897826", - "15770 ret require_auth_for_args -> Ok(Void)": "cpu:445628592, mem:267559974, objs:6@59a04dd9/2484@c58dcadb, vm:-/-, store:-/158@1c0a2f02, foot:158@d7373fbb, stk:43@f25c04dc, auth:43@19b6ddf8/57@1cf983bd", + "15770 ret require_auth_for_args -> Ok(Void)": "cpu:445628592, mem:267559974, objs:6@59a04dd9/2484@c58dcadb, vm:-/-, store:-/158@1c0a2f02, foot:158@d7373fbb, stk:43@f25c04dc, auth:43@19b6ddf8/57@fb29f88a", "15771 pop VM:88663680:sym#3741 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15772 ret require_auth_for_args -> Ok(Void)": "cpu:445828677, mem:267590020, objs:6@a236cae6/2484@c58dcadb, vm:-/-, store:-/159@65164fd2, foot:159@cdf1a941, stk:42@59b7cb1b, auth:42@88d2da86/58@9eec6648", + "15772 ret require_auth_for_args -> Ok(Void)": "cpu:445828677, mem:267590020, objs:6@a236cae6/2484@c58dcadb, vm:-/-, store:-/159@65164fd2, foot:159@cdf1a941, stk:42@59b7cb1b, auth:42@88d2da86/58@f45270c1", "15773 pop VM:88663680:sym#3723 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15774 ret require_auth_for_args -> Ok(Void)": "cpu:446024752, mem:267620252, objs:6@e18f418d/2484@c58dcadb, vm:-/-, store:-/160@66636cd5, foot:160@2b8bd2a0, stk:41@2a41e58c, auth:41@a6bed382/59@abe0911b", + "15774 ret require_auth_for_args -> Ok(Void)": "cpu:446024752, mem:267620252, objs:6@e18f418d/2484@c58dcadb, vm:-/-, store:-/160@66636cd5, foot:160@2b8bd2a0, stk:41@2a41e58c, auth:41@a6bed382/59@3e746a7a", "15775 pop VM:88663680:sym#3705 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15776 ret require_auth_for_args -> Ok(Void)": "cpu:446223919, mem:267650670, objs:6@bb79409a/2484@c58dcadb, vm:-/-, store:-/161@3eab439d, foot:161@c6031db3, stk:40@98e7cae6, auth:40@82ad913a/60@72a69ef0", + "15776 ret require_auth_for_args -> Ok(Void)": "cpu:446223919, mem:267650670, objs:6@bb79409a/2484@c58dcadb, vm:-/-, store:-/161@3eab439d, foot:161@c6031db3, stk:40@98e7cae6, auth:40@82ad913a/60@cf258f1d", "15777 pop VM:88663680:sym#3687 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15778 ret require_auth_for_args -> Ok(Void)": "cpu:446425168, mem:267681274, objs:6@9bf2215e/2484@c58dcadb, vm:-/-, store:-/162@3c6fc978, foot:162@144099b4, stk:39@4e38e93e, auth:39@72a2863a/61@359e2421", + "15778 ret require_auth_for_args -> Ok(Void)": "cpu:446425168, mem:267681274, objs:6@9bf2215e/2484@c58dcadb, vm:-/-, store:-/162@3c6fc978, foot:162@144099b4, stk:39@4e38e93e, auth:39@72a2863a/61@6f8b4651", "15779 pop VM:88663680:sym#3669 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1578 ret symbol_new_from_slice -> Ok(Symbol(obj#1777))": "cpu:211744807, mem:132897921, objs:-/889@604c542a", - "15780 ret require_auth_for_args -> Ok(Void)": "cpu:446628493, mem:267712064, objs:6@60ecd793/2484@c58dcadb, vm:-/-, store:-/163@4a71f20b, foot:163@e24a5277, stk:38@ce27915d, auth:38@be72f42c/62@19467bd", + "15780 ret require_auth_for_args -> Ok(Void)": "cpu:446628493, mem:267712064, objs:6@60ecd793/2484@c58dcadb, vm:-/-, store:-/163@4a71f20b, foot:163@e24a5277, stk:38@ce27915d, auth:38@be72f42c/62@d89f3704", "15781 pop VM:88663680:sym#3651 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15782 ret require_auth_for_args -> Ok(Void)": "cpu:446831870, mem:267743040, objs:6@e5930fd6/2484@c58dcadb, vm:-/-, store:-/164@a8623a9b, foot:164@419edb8e, stk:37@f67be49e, auth:37@bc299701/63@bd2fc0f4", + "15782 ret require_auth_for_args -> Ok(Void)": "cpu:446831870, mem:267743040, objs:6@e5930fd6/2484@c58dcadb, vm:-/-, store:-/164@a8623a9b, foot:164@419edb8e, stk:37@f67be49e, auth:37@bc299701/63@65e7ac95", "15783 pop VM:88663680:sym#3633 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15784 ret require_auth_for_args -> Ok(Void)": "cpu:447038339, mem:267774202, objs:6@7c4c7d00/2484@c58dcadb, vm:-/-, store:-/165@e3f797d0, foot:165@4511f522, stk:36@344264f8, auth:36@52d76081/64@153e1abd", + "15784 ret require_auth_for_args -> Ok(Void)": "cpu:447038339, mem:267774202, objs:6@7c4c7d00/2484@c58dcadb, vm:-/-, store:-/165@e3f797d0, foot:165@4511f522, stk:36@344264f8, auth:36@52d76081/64@49871f4b", "15785 pop VM:88663680:sym#3615 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15786 ret require_auth_for_args -> Ok(Void)": "cpu:447243842, mem:267805550, objs:6@1bd01759/2484@c58dcadb, vm:-/-, store:-/166@8590d148, foot:166@608f28be, stk:35@bd233f57, auth:35@6ac911da/65@363cc997", + "15786 ret require_auth_for_args -> Ok(Void)": "cpu:447243842, mem:267805550, objs:6@1bd01759/2484@c58dcadb, vm:-/-, store:-/166@8590d148, foot:166@608f28be, stk:35@bd233f57, auth:35@6ac911da/65@a882ffcb", "15787 pop VM:88663680:sym#3597 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15788 ret require_auth_for_args -> Ok(Void)": "cpu:447452437, mem:267837084, objs:6@f375813c/2484@c58dcadb, vm:-/-, store:-/167@26bb59e4, foot:167@52a7cbb4, stk:34@8c1e22e, auth:34@3f742c7d/66@b0d123bc", + "15788 ret require_auth_for_args -> Ok(Void)": "cpu:447452437, mem:267837084, objs:6@f375813c/2484@c58dcadb, vm:-/-, store:-/167@26bb59e4, foot:167@52a7cbb4, stk:34@8c1e22e, auth:34@3f742c7d/66@e4f8f9ad", "15789 pop VM:88663680:sym#3579 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1579 call vec_new_from_slice(2)": "", - "15790 ret require_auth_for_args -> Ok(Void)": "cpu:447660070, mem:267868804, objs:6@904fedee/2484@c58dcadb, vm:-/-, store:-/168@f8028dd8, foot:168@42eac7ad, stk:33@c7114ce6, auth:33@69141765/67@83c402db", + "15790 ret require_auth_for_args -> Ok(Void)": "cpu:447660070, mem:267868804, objs:6@904fedee/2484@c58dcadb, vm:-/-, store:-/168@f8028dd8, foot:168@42eac7ad, stk:33@c7114ce6, auth:33@69141765/67@5d372c9", "15791 pop VM:88663680:sym#3561 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15792 ret require_auth_for_args -> Ok(Void)": "cpu:447869781, mem:267900710, objs:6@64e964ae/2484@c58dcadb, vm:-/-, store:-/169@93867c3c, foot:169@286def02, stk:32@b30db134, auth:32@824c08cd/68@597b51f1", + "15792 ret require_auth_for_args -> Ok(Void)": "cpu:447869781, mem:267900710, objs:6@64e964ae/2484@c58dcadb, vm:-/-, store:-/169@93867c3c, foot:169@286def02, stk:32@b30db134, auth:32@824c08cd/68@ae6a9ec1", "15793 pop VM:88663680:sym#3543 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15794 ret require_auth_for_args -> Ok(Void)": "cpu:448079542, mem:267932802, objs:6@4f2148a0/2484@c58dcadb, vm:-/-, store:-/170@e21b66, foot:170@b530784e, stk:31@9025202a, auth:31@a2c8cd3d/69@dab89bd7", + "15794 ret require_auth_for_args -> Ok(Void)": "cpu:448079542, mem:267932802, objs:6@4f2148a0/2484@c58dcadb, vm:-/-, store:-/170@e21b66, foot:170@b530784e, stk:31@9025202a, auth:31@a2c8cd3d/69@2d8adacb", "15795 pop VM:88663680:sym#3525 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15796 ret require_auth_for_args -> Ok(Void)": "cpu:448290363, mem:267965080, objs:6@63f6f9a9/2484@c58dcadb, vm:-/-, store:-/171@abfd4fbc, foot:171@35693e0c, stk:30@8353406, auth:30@9a437baf/70@3ed322c6", + "15796 ret require_auth_for_args -> Ok(Void)": "cpu:448290363, mem:267965080, objs:6@63f6f9a9/2484@c58dcadb, vm:-/-, store:-/171@abfd4fbc, foot:171@35693e0c, stk:30@8353406, auth:30@9a437baf/70@20753103", "15797 pop VM:88663680:sym#3507 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15798 ret require_auth_for_args -> Ok(Void)": "cpu:448502250, mem:267997544, objs:6@ab50c74/2484@c58dcadb, vm:-/-, store:-/172@40081fb3, foot:172@28bce183, stk:29@8e0db03, auth:29@b886d50f/71@be46e030", + "15798 ret require_auth_for_args -> Ok(Void)": "cpu:448502250, mem:267997544, objs:6@ab50c74/2484@c58dcadb, vm:-/-, store:-/172@40081fb3, foot:172@28bce183, stk:29@8e0db03, auth:29@b886d50f/71@37d7ef8e", "15799 pop VM:88663680:sym#3489 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1580 ret vec_new_from_slice -> Ok(Vec(obj#1779))": "cpu:211747810, mem:132898017, objs:-/890@f0dbb3c", - "15800 ret require_auth_for_args -> Ok(Void)": "cpu:448717229, mem:268030194, objs:6@7348236e/2484@c58dcadb, vm:-/-, store:-/173@69e1b7b9, foot:173@1ae00582, stk:28@a0c273c1, auth:28@3ff20958/72@148d6efd", + "15800 ret require_auth_for_args -> Ok(Void)": "cpu:448717229, mem:268030194, objs:6@7348236e/2484@c58dcadb, vm:-/-, store:-/173@69e1b7b9, foot:173@1ae00582, stk:28@a0c273c1, auth:28@3ff20958/72@1833a08c", "15801 pop VM:88663680:sym#3471 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15802 ret require_auth_for_args -> Ok(Void)": "cpu:448930226, mem:268063030, objs:6@46838bca/2484@c58dcadb, vm:-/-, store:-/174@e95b755c, foot:174@566f2a4b, stk:27@1716fbf9, auth:27@e7b679f1/73@cc75753c", + "15802 ret require_auth_for_args -> Ok(Void)": "cpu:448930226, mem:268063030, objs:6@46838bca/2484@c58dcadb, vm:-/-, store:-/174@e95b755c, foot:174@566f2a4b, stk:27@1716fbf9, auth:27@e7b679f1/73@6d163ce9", "15803 pop VM:88663680:sym#3453 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15804 ret require_auth_for_args -> Ok(Void)": "cpu:449140221, mem:268096052, objs:6@8a29114a/2484@c58dcadb, vm:-/-, store:-/175@ba94ef9d, foot:175@cfca1598, stk:26@be817170, auth:26@c7dd0c4/74@336b9a03", + "15804 ret require_auth_for_args -> Ok(Void)": "cpu:449140221, mem:268096052, objs:6@8a29114a/2484@c58dcadb, vm:-/-, store:-/175@ba94ef9d, foot:175@cfca1598, stk:26@be817170, auth:26@c7dd0c4/74@cbe345ad", "15805 pop VM:88663680:sym#3435 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15806 ret require_auth_for_args -> Ok(Void)": "cpu:449356366, mem:268129260, objs:6@7538824d/2484@c58dcadb, vm:-/-, store:-/176@a24cb2bd, foot:176@8b50931b, stk:25@aa930a00, auth:25@4bad9d16/75@6d013295", + "15806 ret require_auth_for_args -> Ok(Void)": "cpu:449356366, mem:268129260, objs:6@7538824d/2484@c58dcadb, vm:-/-, store:-/176@a24cb2bd, foot:176@8b50931b, stk:25@aa930a00, auth:25@4bad9d16/75@7d7f78a1", "15807 pop VM:88663680:sym#3417 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15808 ret require_auth_for_args -> Ok(Void)": "cpu:449575605, mem:268162654, objs:6@d7979c5/2484@c58dcadb, vm:-/-, store:-/177@2b37ad4f, foot:177@8d784fd5, stk:24@56df4b81, auth:24@48cb09aa/76@2a8c18f5", + "15808 ret require_auth_for_args -> Ok(Void)": "cpu:449575605, mem:268162654, objs:6@d7979c5/2484@c58dcadb, vm:-/-, store:-/177@2b37ad4f, foot:177@8d784fd5, stk:24@56df4b81, auth:24@48cb09aa/76@9c0b0c41", "15809 pop VM:88663680:sym#3399 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1581 call symbol_new_from_slice(15)": "cpu:211752418, mem:132898192", - "15810 ret require_auth_for_args -> Ok(Void)": "cpu:449790828, mem:268196234, objs:6@dece707c/2484@c58dcadb, vm:-/-, store:-/178@5e5f50ee, foot:178@7d6bafa1, stk:23@35ad5b0e, auth:23@d1a25bf/77@e0a21ec4", + "15810 ret require_auth_for_args -> Ok(Void)": "cpu:449790828, mem:268196234, objs:6@dece707c/2484@c58dcadb, vm:-/-, store:-/178@5e5f50ee, foot:178@7d6bafa1, stk:23@35ad5b0e, auth:23@d1a25bf/77@7b88df6a", "15811 pop VM:88663680:sym#3381 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15812 ret require_auth_for_args -> Ok(Void)": "cpu:450008129, mem:268230000, objs:6@50f7e43c/2484@c58dcadb, vm:-/-, store:-/179@789e68a2, foot:179@e1907180, stk:22@2f51cee1, auth:22@16c05aab/78@983eabb8", + "15812 ret require_auth_for_args -> Ok(Void)": "cpu:450008129, mem:268230000, objs:6@50f7e43c/2484@c58dcadb, vm:-/-, store:-/179@789e68a2, foot:179@e1907180, stk:22@2f51cee1, auth:22@16c05aab/78@be724ee4", "15813 pop VM:88663680:sym#3363 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15814 ret require_auth_for_args -> Ok(Void)": "cpu:450230560, mem:268263952, objs:6@1dfc95c6/2484@c58dcadb, vm:-/-, store:-/180@ecfc4bd4, foot:180@e88bb955, stk:21@7e8e04d5, auth:21@3b832e86/79@3eca32f3", + "15814 ret require_auth_for_args -> Ok(Void)": "cpu:450230560, mem:268263952, objs:6@1dfc95c6/2484@c58dcadb, vm:-/-, store:-/180@ecfc4bd4, foot:180@e88bb955, stk:21@7e8e04d5, auth:21@3b832e86/79@be20cac4", "15815 pop VM:88663680:sym#3345 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15816 ret require_auth_for_args -> Ok(Void)": "cpu:450449989, mem:268298090, objs:6@f75e7e24/2484@c58dcadb, vm:-/-, store:-/181@34263c16, foot:181@1a58b65, stk:20@d21d7cff, auth:20@5f1067df/80@d224990c", + "15816 ret require_auth_for_args -> Ok(Void)": "cpu:450449989, mem:268298090, objs:6@f75e7e24/2484@c58dcadb, vm:-/-, store:-/181@34263c16, foot:181@1a58b65, stk:20@d21d7cff, auth:20@5f1067df/80@eee58dd5", "15817 pop VM:88663680:sym#3327 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15818 ret require_auth_for_args -> Ok(Void)": "cpu:450672514, mem:268332414, objs:6@fbe03f55/2484@c58dcadb, vm:-/-, store:-/182@c55938d0, foot:182@2cc7929, stk:19@77ea2e51, auth:19@58fdc3c6/81@b568f564", + "15818 ret require_auth_for_args -> Ok(Void)": "cpu:450672514, mem:268332414, objs:6@fbe03f55/2484@c58dcadb, vm:-/-, store:-/182@c55938d0, foot:182@2cc7929, stk:19@77ea2e51, auth:19@58fdc3c6/81@203a0ac", "15819 pop VM:88663680:sym#3309 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1582 ret symbol_new_from_slice -> Ok(Symbol(obj#1781))": "cpu:211755455, mem:132898287, objs:-/891@568f0514", - "15820 ret require_auth_for_args -> Ok(Void)": "cpu:450895085, mem:268366924, objs:6@d6e479d0/2484@c58dcadb, vm:-/-, store:-/183@83d17b16, foot:183@eacf199b, stk:18@c9502770, auth:18@fdee93cd/82@f14f6029", + "15820 ret require_auth_for_args -> Ok(Void)": "cpu:450895085, mem:268366924, objs:6@d6e479d0/2484@c58dcadb, vm:-/-, store:-/183@83d17b16, foot:183@eacf199b, stk:18@c9502770, auth:18@fdee93cd/82@be5e7f86", "15821 pop VM:88663680:sym#3291 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15822 ret require_auth_for_args -> Ok(Void)": "cpu:451119740, mem:268401620, objs:6@da4b3063/2484@c58dcadb, vm:-/-, store:-/184@6f6e15be, foot:184@c0181c1b, stk:17@e515b98b, auth:17@aaf504d6/83@c3d7eee6", + "15822 ret require_auth_for_args -> Ok(Void)": "cpu:451119740, mem:268401620, objs:6@da4b3063/2484@c58dcadb, vm:-/-, store:-/184@6f6e15be, foot:184@c0181c1b, stk:17@e515b98b, auth:17@aaf504d6/83@36315cc2", "15823 pop VM:88663680:sym#3273 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15824 ret require_auth_for_args -> Ok(Void)": "cpu:451347491, mem:268436502, objs:6@5d120581/2484@c58dcadb, vm:-/-, store:-/185@2ada6c06, foot:185@403b392c, stk:16@f096a1ef, auth:16@ab47d532/84@ddfffae4", + "15824 ret require_auth_for_args -> Ok(Void)": "cpu:451347491, mem:268436502, objs:6@5d120581/2484@c58dcadb, vm:-/-, store:-/185@2ada6c06, foot:185@403b392c, stk:16@f096a1ef, auth:16@ab47d532/84@863f1070", "15825 pop VM:88663680:sym#3255 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15826 ret require_auth_for_args -> Ok(Void)": "cpu:451575290, mem:268471570, objs:6@1f10dc2e/2484@c58dcadb, vm:-/-, store:-/186@2c11edb6, foot:186@541ab73d, stk:15@e1361023, auth:15@b9d655c6/85@891a2689", + "15826 ret require_auth_for_args -> Ok(Void)": "cpu:451575290, mem:268471570, objs:6@1f10dc2e/2484@c58dcadb, vm:-/-, store:-/186@2c11edb6, foot:186@541ab73d, stk:15@e1361023, auth:15@b9d655c6/85@8d31f62f", "15827 pop VM:88663680:sym#3237 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15828 ret require_auth_for_args -> Ok(Void)": "cpu:451802119, mem:268506824, objs:6@34c4d52d/2484@c58dcadb, vm:-/-, store:-/187@3a126384, foot:187@24b0fb8a, stk:14@f0334746, auth:14@b810afca/86@2670476d", + "15828 ret require_auth_for_args -> Ok(Void)": "cpu:451802119, mem:268506824, objs:6@34c4d52d/2484@c58dcadb, vm:-/-, store:-/187@3a126384, foot:187@24b0fb8a, stk:14@f0334746, auth:14@b810afca/86@a4012192", "15829 pop VM:88663680:sym#3219 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1583 call vec_new_from_slice(2)": "", - "15830 ret require_auth_for_args -> Ok(Void)": "cpu:452027980, mem:268542264, objs:6@21c30808/2484@c58dcadb, vm:-/-, store:-/188@c33a5e3c, foot:188@4925b650, stk:13@1b1a4865, auth:13@dbd3a68b/87@f041f6c", + "15830 ret require_auth_for_args -> Ok(Void)": "cpu:452027980, mem:268542264, objs:6@21c30808/2484@c58dcadb, vm:-/-, store:-/188@c33a5e3c, foot:188@4925b650, stk:13@1b1a4865, auth:13@dbd3a68b/87@4521e30b", "15831 pop VM:88663680:sym#3201 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15832 ret require_auth_for_args -> Ok(Void)": "cpu:452259983, mem:268577890, objs:6@4f88259b/2484@c58dcadb, vm:-/-, store:-/189@29502d68, foot:189@8471cf22, stk:12@d605a44b, auth:12@88878566/88@bc2c5982", + "15832 ret require_auth_for_args -> Ok(Void)": "cpu:452259983, mem:268577890, objs:6@4f88259b/2484@c58dcadb, vm:-/-, store:-/189@29502d68, foot:189@8471cf22, stk:12@d605a44b, auth:12@88878566/88@ebaa2726", "15833 pop VM:88663680:sym#3183 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15834 ret require_auth_for_args -> Ok(Void)": "cpu:452485940, mem:268613702, objs:6@1807fe6b/2484@c58dcadb, vm:-/-, store:-/190@d8bdbdae, foot:190@e8306fc4, stk:11@58cd774d, auth:11@a85d5b0e/89@5cc8d9d5", + "15834 ret require_auth_for_args -> Ok(Void)": "cpu:452485940, mem:268613702, objs:6@1807fe6b/2484@c58dcadb, vm:-/-, store:-/190@d8bdbdae, foot:190@e8306fc4, stk:11@58cd774d, auth:11@a85d5b0e/89@353eeb4d", "15835 pop VM:88663680:sym#3165 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15836 ret require_auth_for_args -> Ok(Void)": "cpu:452717023, mem:268649700, objs:6@52ff6dcc/2484@c58dcadb, vm:-/-, store:-/191@47ea768b, foot:191@72ce8bdb, stk:10@a09fab6d, auth:10@e7bd3540/90@6e44c126", + "15836 ret require_auth_for_args -> Ok(Void)": "cpu:452717023, mem:268649700, objs:6@52ff6dcc/2484@c58dcadb, vm:-/-, store:-/191@47ea768b, foot:191@72ce8bdb, stk:10@a09fab6d, auth:10@e7bd3540/90@75558cf7", "15837 pop VM:88663680:sym#3147 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15838 ret require_auth_for_args -> Ok(Void)": "cpu:452949176, mem:268685884, objs:6@2b28efe4/2484@c58dcadb, vm:-/-, store:-/192@ab499153, foot:192@d1fef564, stk:9@2f48cbca, auth:9@ec33f68f/91@d955f887", + "15838 ret require_auth_for_args -> Ok(Void)": "cpu:452949176, mem:268685884, objs:6@2b28efe4/2484@c58dcadb, vm:-/-, store:-/192@ab499153, foot:192@d1fef564, stk:9@2f48cbca, auth:9@ec33f68f/91@d7809ca8", "15839 pop VM:88663680:sym#3129 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1584 ret vec_new_from_slice -> Ok(Vec(obj#1783))": "cpu:211758458, mem:132898383, objs:-/892@b809db19", - "15840 ret require_auth_for_args -> Ok(Void)": "cpu:453184421, mem:268722254, objs:6@791d89c4/2484@c58dcadb, vm:-/-, store:-/193@4ae2bba4, foot:193@b0b03a90, stk:8@b14c9ea8, auth:8@8160ef64/92@f6ba881e", + "15840 ret require_auth_for_args -> Ok(Void)": "cpu:453184421, mem:268722254, objs:6@791d89c4/2484@c58dcadb, vm:-/-, store:-/193@4ae2bba4, foot:193@b0b03a90, stk:8@b14c9ea8, auth:8@8160ef64/92@693bc955", "15841 pop VM:88663680:sym#3111 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15842 ret require_auth_for_args -> Ok(Void)": "cpu:453419716, mem:268758810, objs:6@63e2c7f8/2484@c58dcadb, vm:-/-, store:-/194@dcedf142, foot:194@b8784d11, stk:7@39fbd9ac, auth:7@ebcc31f8/93@c289adee", + "15842 ret require_auth_for_args -> Ok(Void)": "cpu:453419716, mem:268758810, objs:6@63e2c7f8/2484@c58dcadb, vm:-/-, store:-/194@dcedf142, foot:194@b8784d11, stk:7@39fbd9ac, auth:7@ebcc31f8/93@df065c58", "15843 pop VM:88663680:sym#3093 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15844 ret require_auth_for_args -> Ok(Void)": "cpu:453655057, mem:268795552, objs:6@7ad68f76/2484@c58dcadb, vm:-/-, store:-/195@9d0a4e6c, foot:195@49ddf428, stk:6@8d6b882d, auth:6@9fcc9592/94@d6a0eb23", + "15844 ret require_auth_for_args -> Ok(Void)": "cpu:453655057, mem:268795552, objs:6@7ad68f76/2484@c58dcadb, vm:-/-, store:-/195@9d0a4e6c, foot:195@49ddf428, stk:6@8d6b882d, auth:6@9fcc9592/94@9cffb4a9", "15845 pop VM:88663680:sym#3075 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15846 ret require_auth_for_args -> Ok(Void)": "cpu:453892480, mem:268832480, objs:6@73d7698b/2484@c58dcadb, vm:-/-, store:-/196@550afe90, foot:196@ae398e39, stk:5@7a2b3d2e, auth:5@c8b580f0/95@64813bb2", + "15846 ret require_auth_for_args -> Ok(Void)": "cpu:453892480, mem:268832480, objs:6@73d7698b/2484@c58dcadb, vm:-/-, store:-/196@550afe90, foot:196@ae398e39, stk:5@7a2b3d2e, auth:5@c8b580f0/95@b4c4c70", "15847 pop VM:88663680:sym#3057 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15848 ret require_auth_for_args -> Ok(Void)": "cpu:454129947, mem:268869594, objs:6@6bbe61fa/2484@c58dcadb, vm:-/-, store:-/197@c2332fd, foot:197@121e6090, stk:4@17923498, auth:4@9306758a/96@2b2a7023", + "15848 ret require_auth_for_args -> Ok(Void)": "cpu:454129947, mem:268869594, objs:6@6bbe61fa/2484@c58dcadb, vm:-/-, store:-/197@c2332fd, foot:197@121e6090, stk:4@17923498, auth:4@9306758a/96@459a6600", "15849 pop VM:88663680:sym#3039 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", "1585 call symbol_new_from_slice(15)": "cpu:211763066, mem:132898558", - "15850 ret require_auth_for_args -> Ok(Void)": "cpu:454371528, mem:268906894, objs:6@1f03e93d/2484@c58dcadb, vm:-/-, store:-/198@ee597e12, foot:198@800ba589, stk:3@a584f97e, auth:3@af82ce81/97@c730a85b", + "15850 ret require_auth_for_args -> Ok(Void)": "cpu:454371528, mem:268906894, objs:6@1f03e93d/2484@c58dcadb, vm:-/-, store:-/198@ee597e12, foot:198@800ba589, stk:3@a584f97e, auth:3@af82ce81/97@db695f9", "15851 pop VM:88663680:sym#3021 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15852 ret require_auth_for_args -> Ok(Void)": "cpu:454611121, mem:268944380, objs:6@3739fd65/2484@c58dcadb, vm:-/-, store:-/199@7c267a8c, foot:199@d862e423, stk:2@2907590a, auth:2@898e1e4c/98@f0102309", + "15852 ret require_auth_for_args -> Ok(Void)": "cpu:454611121, mem:268944380, objs:6@3739fd65/2484@c58dcadb, vm:-/-, store:-/199@7c267a8c, foot:199@d862e423, stk:2@2907590a, auth:2@898e1e4c/98@ef8cb3c2", "15853 pop VM:88663680:sym#3003 -> Ok(Void)": " vm:1114112@e86028c5/7@ae192e85", - "15854 ret require_auth_for_args -> Ok(Void)": "cpu:454852802, mem:268982052, objs:2@389fc46f/2484@c58dcadb, vm:-/-, store:-/200@e4dabdc9, foot:200@4d259774, stk:1@db4954c8, auth:1@b97e1980/99@d805458b", + "15854 ret require_auth_for_args -> Ok(Void)": "cpu:454852802, mem:268982052, objs:2@389fc46f/2484@c58dcadb, vm:-/-, store:-/200@e4dabdc9, foot:200@4d259774, stk:1@db4954c8, auth:1@b97e1980/99@f542edf7", "15855 pop VM:88663680:call -> Ok(Void)": " vm:1114112@a6f378b8/7@ae192e85", "15856 ret call -> Ok(Void)": " objs:-/2484@c58dcadb, vm:-/-, stk:-, auth:-/-", "15857 end": "cpu:454852802, mem:268982052, prngs:-/9b4a753, objs:-/2484@c58dcadb, vm:-/-, evt:-, store:-/200@e4dabdc9, foot:200@4d259774, stk:-, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__contract_failure_with_debug_on_off_affects_no_metering.json b/soroban-env-host/observations/test__invocation__contract_failure_with_debug_on_off_affects_no_metering.json index 94eb7fb85..0bb817022 100644 --- a/soroban-env-host/observations/test__invocation__contract_failure_with_debug_on_off_affects_no_metering.json +++ b/soroban-env-host/observations/test__invocation__contract_failure_with_debug_on_off_affects_no_metering.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2227474, mem:1333125, objs:-/5@a939acc6, auth:1@f3b792cc/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2228160", - " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@7f37e357", + " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@1edb0d5", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2231315, mem:1333237, objs:-/6@f818df7c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2269180, mem:1334743, objs:-/7@b0d155fb, store:-/2@1fd2b84, foot:2@986eaacc, auth:-/1@89e73f8e", " 13 call bytes_new()": "cpu:2271967, mem:1334839, objs:-/8@504cba73, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__error_spoof_rejected.json b/soroban-env-host/observations/test__invocation__error_spoof_rejected.json index ab3f63406..8c2d6b88d 100644 --- a/soroban-env-host/observations/test__invocation__error_spoof_rejected.json +++ b/soroban-env-host/observations/test__invocation__error_spoof_rejected.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1883838, mem:1308404, objs:-/5@d1ec0cfb, auth:1@1e0f546f/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1884524", - " 10 call get_ledger_network_id()": "cpu:1884782, auth:1@1e0f546f/1@8fc09bd", + " 10 call get_ledger_network_id()": "cpu:1884782, auth:1@1e0f546f/1@db6f2517", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1887679, mem:1308516, objs:-/6@2f55d65b", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1925544, mem:1310022, objs:-/7@baba9c65, store:-/2@7f1d0274, foot:2@bd5990fe, auth:-/1@51b83b9e", " 13 call vec_new_from_slice(0)": " auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_alloc.json b/soroban-env-host/observations/test__invocation__invoke_alloc.json index 9447e9885..a01276646 100644 --- a/soroban-env-host/observations/test__invocation__invoke_alloc.json +++ b/soroban-env-host/observations/test__invocation__invoke_alloc.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2797684, mem:1374146, objs:-/5@426d6fc7, auth:1@aae08668/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2798370", - " 10 call get_ledger_network_id()": "cpu:2798628, auth:1@aae08668/1@4a2c423f", + " 10 call get_ledger_network_id()": "cpu:2798628, auth:1@aae08668/1@a77ef94c", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2801525, mem:1374258, objs:-/6@9e58f389", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2839390, mem:1375764, objs:-/7@8260bb08, store:-/2@5fbdd0da, foot:2@bad400bb, auth:-/1@16494bd5", " 13 call call(Address(obj#13), Symbol(sum), Vec(obj#15))": "cpu:2842176, mem:1375852, objs:-/8@b22db12e, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_contract_with_reentry.json b/soroban-env-host/observations/test__invocation__invoke_contract_with_reentry.json index b41c608b1..ca1316ad6 100644 --- a/soroban-env-host/observations/test__invocation__invoke_contract_with_reentry.json +++ b/soroban-env-host/observations/test__invocation__invoke_contract_with_reentry.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2227474, mem:1333125, objs:-/5@a939acc6, auth:1@f3b792cc/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2228160", - " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@7f37e357", + " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@1edb0d5", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2231315, mem:1333237, objs:-/6@f818df7c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2269180, mem:1334743, objs:-/7@b0d155fb, store:-/2@1fd2b84, foot:2@986eaacc, auth:-/1@89e73f8e", " 13 call vec_push_back(Vec(obj#15), Address(obj#13))": "cpu:2271967, mem:1334839, objs:-/8@504cba73, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect.json b/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect.json index e1d579770..45e334987 100644 --- a/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect.json +++ b/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2227474, mem:1333125, objs:-/5@a939acc6, auth:1@f3b792cc/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2228160", - " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@7f37e357", + " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@1edb0d5", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2231315, mem:1333237, objs:-/6@f818df7c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2269180, mem:1334743, objs:-/7@b0d155fb, store:-/2@1fd2b84, foot:2@986eaacc, auth:-/1@89e73f8e", " 13 call bytes_new_from_slice(584)": "cpu:2269435, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:3622590, mem:2540423, objs:-/12@3736d90e, auth:1@f377c694/-", " 21 ret obj_cmp -> Ok(0)": "cpu:3623276", - " 22 call get_ledger_network_id()": "cpu:3623534, auth:1@f377c694/1@948dcd03", + " 22 call get_ledger_network_id()": "cpu:3623534, auth:1@f377c694/1@ed8393fc", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:3626431, mem:2540535, objs:-/13@9e3bb433", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:3669304, mem:2542413, objs:-/14@1f720914, store:-/4@f690d48d, foot:4@eaab72a1, auth:-/1@ca32210b", " 25 call vec_push_back(Vec(obj#29), Address(obj#27))": "cpu:3672091, mem:2542509, objs:-/15@c96bd9c, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect_err.json b/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect_err.json index a8dbf66f5..61102487f 100644 --- a/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect_err.json +++ b/soroban-env-host/observations/test__invocation__invoke_cross_contract_indirect_err.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2227474, mem:1333125, objs:-/5@a939acc6, auth:1@f3b792cc/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2228160", - " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@7f37e357", + " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@1edb0d5", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2231315, mem:1333237, objs:-/6@f818df7c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2269180, mem:1334743, objs:-/7@b0d155fb, store:-/2@1fd2b84, foot:2@986eaacc, auth:-/1@89e73f8e", " 13 call bytes_new()": "cpu:2271967, mem:1334839, objs:-/8@504cba73, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_diagnostics.json b/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_diagnostics.json index cf0bbbd7d..f5331f69d 100644 --- a/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_diagnostics.json +++ b/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_diagnostics.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1361212, mem:1205308, objs:-/5@584baa0c, auth:1@8943438d/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1361898", - " 10 call get_ledger_network_id()": "cpu:1362156, auth:1@8943438d/1@b96f13d4", + " 10 call get_ledger_network_id()": "cpu:1362156, auth:1@8943438d/1@163c800d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1365053, mem:1205420, objs:-/6@9e7d9ad8", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1402918, mem:1206926, objs:-/7@efa48497, store:-/2@8a7ead50, foot:2@12508fde, auth:-/1@e3b0c5d4", " 13 call call(Address(obj#13), Symbol(add), Vec(obj#15))": "cpu:1405705, mem:1207022, objs:-/8@3b635ed2, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_err.json b/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_err.json index 635515800..d2e981c68 100644 --- a/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_err.json +++ b/soroban-env-host/observations/test__invocation__invoke_cross_contract_with_err.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1293412, mem:1200431, objs:-/5@1a9b5fe0, auth:1@50c42a3c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1294098", - " 10 call get_ledger_network_id()": "cpu:1294356, auth:1@50c42a3c/1@87b17243", + " 10 call get_ledger_network_id()": "cpu:1294356, auth:1@50c42a3c/1@d2c3ca72", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1297253, mem:1200543, objs:-/6@4f08cdca", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1335118, mem:1202049, objs:-/7@c8a985fb, store:-/2@d62994df, foot:2@6201a06b, auth:-/1@a06390b5", " 13 call try_call(Address(obj#13), Symbol(vec_err), Vec(obj#15))": "cpu:1337904, mem:1202137, objs:-/8@95073862, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_cross_contract_without_diagnostics.json b/soroban-env-host/observations/test__invocation__invoke_cross_contract_without_diagnostics.json index cf0bbbd7d..f5331f69d 100644 --- a/soroban-env-host/observations/test__invocation__invoke_cross_contract_without_diagnostics.json +++ b/soroban-env-host/observations/test__invocation__invoke_cross_contract_without_diagnostics.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1361212, mem:1205308, objs:-/5@584baa0c, auth:1@8943438d/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1361898", - " 10 call get_ledger_network_id()": "cpu:1362156, auth:1@8943438d/1@b96f13d4", + " 10 call get_ledger_network_id()": "cpu:1362156, auth:1@8943438d/1@163c800d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1365053, mem:1205420, objs:-/6@9e7d9ad8", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1402918, mem:1206926, objs:-/7@efa48497, store:-/2@8a7ead50, foot:2@12508fde, auth:-/1@e3b0c5d4", " 13 call call(Address(obj#13), Symbol(add), Vec(obj#15))": "cpu:1405705, mem:1207022, objs:-/8@3b635ed2, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__invoke_single_contract_function.json b/soroban-env-host/observations/test__invocation__invoke_single_contract_function.json index c12d2bbc4..10307b8ab 100644 --- a/soroban-env-host/observations/test__invocation__invoke_single_contract_function.json +++ b/soroban-env-host/observations/test__invocation__invoke_single_contract_function.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1361212, mem:1205308, objs:-/5@584baa0c, auth:1@8943438d/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1361898", - " 10 call get_ledger_network_id()": "cpu:1362156, auth:1@8943438d/1@b96f13d4", + " 10 call get_ledger_network_id()": "cpu:1362156, auth:1@8943438d/1@163c800d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1365053, mem:1205420, objs:-/6@9e7d9ad8", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1402918, mem:1206926, objs:-/7@efa48497, store:-/2@8a7ead50, foot:2@12508fde, auth:-/1@e3b0c5d4", " 13 call call(Address(obj#13), Symbol(add), Vec(obj#15))": "cpu:1405705, mem:1207022, objs:-/8@7a21721a, auth:-/-", diff --git a/soroban-env-host/observations/test__invocation__wasm_invoke_return_err_variants.json b/soroban-env-host/observations/test__invocation__wasm_invoke_return_err_variants.json index 51f2bf23d..005e9b630 100644 --- a/soroban-env-host/observations/test__invocation__wasm_invoke_return_err_variants.json +++ b/soroban-env-host/observations/test__invocation__wasm_invoke_return_err_variants.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1883838, mem:1308404, objs:-/5@d1ec0cfb, auth:1@1e0f546f/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1884524", - " 10 call get_ledger_network_id()": "cpu:1884782, auth:1@1e0f546f/1@8fc09bd", + " 10 call get_ledger_network_id()": "cpu:1884782, auth:1@1e0f546f/1@db6f2517", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1887679, mem:1308516, objs:-/6@2f55d65b", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1925544, mem:1310022, objs:-/7@baba9c65, store:-/2@7f1d0274, foot:2@bd5990fe, auth:-/1@51b83b9e", " 13 call vec_new_from_slice(0)": " auth:-/-", diff --git a/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update.json b/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update.json index 27ab8b4bf..8f731287e 100644 --- a/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update.json +++ b/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update.json @@ -11,7 +11,7 @@ " 9 call create_contract(Address(obj#9), Bytes(obj#7), Bytes(obj#11))": "", " 10 call obj_cmp(Address(obj#13), Address(obj#9))": "cpu:3102613, mem:2437612, objs:-/7@598cb7e9, auth:1@10a8f679/-", " 11 ret obj_cmp -> Ok(0)": "cpu:3103299", - " 12 call get_ledger_network_id()": "cpu:3103557, auth:1@10a8f679/1@c586cd64", + " 12 call get_ledger_network_id()": "cpu:3103557, auth:1@10a8f679/1@fb04846c", " 13 ret get_ledger_network_id -> Ok(Bytes(obj#15))": "cpu:3106454, mem:2437724, objs:-/8@b8d650e4", " 14 ret create_contract -> Ok(Address(obj#17))": "cpu:3144319, mem:2439230, objs:-/9@50d6e22b, store:-/2@1c2f5149, foot:2@bf587a55, auth:-/1@3294588b", " 15 call bytes_new_from_slice(32)": " auth:-/-", diff --git a/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update_with_try_call.json b/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update_with_try_call.json index c0f921e35..9b171fb1f 100644 --- a/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update_with_try_call.json +++ b/soroban-env-host/observations/test__lifecycle__test_contract_wasm_update_with_try_call.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1563452, mem:1219857, objs:-/5@8720b729, auth:1@10a8f679/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1564138", - " 10 call get_ledger_network_id()": "cpu:1564396, auth:1@10a8f679/1@7ca7d0bd", + " 10 call get_ledger_network_id()": "cpu:1564396, auth:1@10a8f679/1@e2260097", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1567293, mem:1219969, objs:-/6@4550d837", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1605158, mem:1221475, objs:-/7@f11baa95, store:-/2@1c2f5149, foot:2@bf587a55, auth:-/1@d91ded1c", " 13 call bytes_new_from_slice(933)": "cpu:1605413, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:3147316, mem:2440810, objs:-/12@ad7aac7c, auth:1@dee282f5/-", " 21 ret obj_cmp -> Ok(0)": "cpu:3148002", - " 22 call get_ledger_network_id()": "cpu:3148260, auth:1@dee282f5/1@8acd8216", + " 22 call get_ledger_network_id()": "cpu:3148260, auth:1@dee282f5/1@f17a1ccb", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:3151157, mem:2440922, objs:-/13@8c3b7cb5", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:3192898, mem:2442614, objs:-/14@86d9758a, store:-/3@a1a5d0de, foot:3@dd47c590, auth:-/1@e62758cc", " 25 push UploadContractWasm:()": "cpu:3199570, mem:2443394, stk:1@41146a5, auth:-/-", diff --git a/soroban-env-host/observations/test__lifecycle__test_create_contract_from_source_account_recording_auth.json b/soroban-env-host/observations/test__lifecycle__test_create_contract_from_source_account_recording_auth.json index 2edc5e7be..73ef0c990 100644 --- a/soroban-env-host/observations/test__lifecycle__test_create_contract_from_source_account_recording_auth.json +++ b/soroban-env-host/observations/test__lifecycle__test_create_contract_from_source_account_recording_auth.json @@ -5,7 +5,7 @@ " 3 push CreateContract:()": "cpu:1337728, mem:1203371, objs:-/2@f47df063, stk:1@f6443829", " 4 call obj_cmp(Address(obj#7), Address(obj#5))": "cpu:1342698, mem:1203613, objs:-/4@9137f390, auth:1@d8935387/-", " 5 ret obj_cmp -> Ok(0)": "cpu:1343384", - " 6 call get_ledger_network_id()": "cpu:1343642, auth:1@d8935387/1@837a4782", + " 6 call get_ledger_network_id()": "cpu:1343642, auth:1@d8935387/1@40ebc2cd", " 7 ret get_ledger_network_id -> Ok(Bytes(obj#9))": "cpu:1346539, mem:1203725, objs:-/5@c6030f7b", " 8 pop CreateContract: -> Ok(Address(obj#11))": "cpu:1384296, mem:1205231, objs:-/6@dc431edd, store:-/2@9e2b881c, foot:2@f7ccbf36, auth:-/1@43db19df", " 9 end": "cpu:1384658, mem:1205231, prngs:-/9b4a753, objs:-/6@dc431edd, vm:-/-, evt:-, store:-/2@9e2b881c, foot:2@f7ccbf36, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_length_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_length_oob.json index 10bc22657..8d2a6ebfa 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_length_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_length_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@619a1071, auth:1@fa818dc6/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@fa818dc6/1@28a3301", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@fa818dc6/1@57247faa", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@71ceea2f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@7f872227, store:-/2@ea65a3c2, foot:2@b451b218, auth:-/1@b82e40fe", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@11146cfd, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_pos_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_pos_oob.json index 5bb4ddf42..ed3365d47 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_pos_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_bytes_pos_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@619a1071, auth:1@fa818dc6/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@fa818dc6/1@28a3301", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@fa818dc6/1@57247faa", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@71ceea2f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@7f872227, store:-/2@ea65a3c2, foot:2@b451b218, auth:-/1@b82e40fe", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@776a78b, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_good_inputs_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_good_inputs_ok.json index 844868a36..2fb72a599 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_good_inputs_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_from_linear_memory_with_good_inputs_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@619a1071, auth:1@fa818dc6/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@fa818dc6/1@28a3301", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@fa818dc6/1@57247faa", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@71ceea2f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@7f872227, store:-/2@ea65a3c2, foot:2@b451b218, auth:-/1@b82e40fe", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@c9b6d2f2, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_length_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_length_oob.json index ae3977259..cc236f79e 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_length_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_length_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@4b1c7b7d, auth:1@cc61fdfe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@90d758e0", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@2a8779", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@8baed7c4", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@39fa4bf7, store:-/2@30f68153, foot:2@98cd9b1b, auth:-/1@18cf9d54", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@524a674f, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_pos_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_pos_oob.json index 2c932bc08..868941636 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_pos_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_bytes_pos_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@4b1c7b7d, auth:1@cc61fdfe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@90d758e0", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@2a8779", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@8baed7c4", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@39fa4bf7, store:-/2@30f68153, foot:2@98cd9b1b, auth:-/1@18cf9d54", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@be773235, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_good_inputs_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_good_inputs_ok.json index ef70303ab..74fbea5cc 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_good_inputs_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_good_inputs_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@4b1c7b7d, auth:1@cc61fdfe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@90d758e0", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@2a8779", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@8baed7c4", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@39fa4bf7, store:-/2@30f68153, foot:2@98cd9b1b, auth:-/1@18cf9d54", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@e825a34f, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_not_enough_bytes.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_not_enough_bytes.json index 919695761..b390b078a 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_not_enough_bytes.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_copy_to_linear_memory_with_not_enough_bytes.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@4b1c7b7d, auth:1@cc61fdfe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@90d758e0", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@cc61fdfe/1@2a8779", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@8baed7c4", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@39fa4bf7, store:-/2@30f68153, foot:2@98cd9b1b, auth:-/1@18cf9d54", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@544130f5, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_length_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_length_oob.json index f27ba1a46..bc8fcee3f 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_length_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_length_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@f842f988, auth:1@fe4eaef1/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@fe4eaef1/1@a2273dcf", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@fe4eaef1/1@cfc570d3", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@828e03cf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@fd71a149, store:-/2@366747b9, foot:2@e11bd6ff, auth:-/1@df308ec6", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@ee74c4ef, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_pos_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_pos_oob.json index 34c0c3a54..51137f9e9 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_pos_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_bytes_pos_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@f842f988, auth:1@fe4eaef1/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@fe4eaef1/1@a2273dcf", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@fe4eaef1/1@cfc570d3", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@828e03cf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@fd71a149, store:-/2@366747b9, foot:2@e11bd6ff, auth:-/1@df308ec6", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@72f1185d, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_good_inputs_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_good_inputs_ok.json index 98d37feb4..d2a322fb7 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_good_inputs_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_bytes_new_from_linear_memory_with_good_inputs_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@f842f988, auth:1@fe4eaef1/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@fe4eaef1/1@a2273dcf", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@fe4eaef1/1@cfc570d3", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@828e03cf", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@fd71a149, store:-/2@366747b9, foot:2@e11bd6ff, auth:-/1@df308ec6", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@d594fd2b, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_length.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_length.json index 6c8a77568..4070b5543 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_length.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_length.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@8f7c31f7, auth:1@827f55aa/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@76dfd503", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@82eee509", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@aa738688", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@eb1dd43c, store:-/2@3712db82, foot:2@c78b94a3, auth:-/1@3fe8aaf7", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@e43988c7, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_ptr.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_ptr.json index 04b2a29a7..c6463e059 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_ptr.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_bad_key_ptr.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@8f7c31f7, auth:1@827f55aa/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@76dfd503", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@82eee509", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@aa738688", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@eb1dd43c, store:-/2@3712db82, foot:2@c78b94a3, auth:-/1@3fe8aaf7", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@99b8bc70, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_slices_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_slices_ok.json index 333585233..ec1bfdac5 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_slices_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_slices_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@8f7c31f7, auth:1@827f55aa/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@76dfd503", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@82eee509", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@aa738688", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@eb1dd43c, store:-/2@3712db82, foot:2@c78b94a3, auth:-/1@3fe8aaf7", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@b81301f5, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_val_data_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_val_data_ok.json index 521c780af..d411f9a92 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_val_data_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_good_val_data_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@8f7c31f7, auth:1@827f55aa/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@76dfd503", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@82eee509", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@aa738688", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@eb1dd43c, store:-/2@3712db82, foot:2@c78b94a3, auth:-/1@3fe8aaf7", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@aeb20d6b, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_invalid_vals.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_invalid_vals.json index ed6c296ba..fb118fb1b 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_invalid_vals.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_invalid_vals.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@8f7c31f7, auth:1@827f55aa/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@76dfd503", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@82eee509", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@aa738688", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@eb1dd43c, store:-/2@3712db82, foot:2@c78b94a3, auth:-/1@3fe8aaf7", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@b81301f5, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_length_too_long.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_length_too_long.json index e499b89c4..7f2b02ec5 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_length_too_long.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_length_too_long.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@8f7c31f7, auth:1@827f55aa/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@76dfd503", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@82eee509", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@aa738688", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@eb1dd43c, store:-/2@3712db82, foot:2@c78b94a3, auth:-/1@3fe8aaf7", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@7b0fe1fa, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_pos_out_of_range.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_pos_out_of_range.json index 1889d3a84..786eb7352 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_pos_out_of_range.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_new_from_linear_memory_with_pos_out_of_range.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@8f7c31f7, auth:1@827f55aa/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@76dfd503", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@827f55aa/1@82eee509", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@aa738688", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@eb1dd43c, store:-/2@3712db82, foot:2@c78b94a3, auth:-/1@3fe8aaf7", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@45126311, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_length.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_length.json index 56da4c8b6..9187ab955 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_length.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_length.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@3ba8c3cc, auth:1@dc578660/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@f7fdadcd", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@2442555d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@f4f4e993", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@34b1431c, store:-/2@54af8bd2, foot:2@a931c18, auth:-/1@6c339007", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#17))": "cpu:5443154, mem:515034, objs:-/9@14dc818d, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_ptr.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_ptr.json index dd777353f..bfa47149a 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_ptr.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_bad_key_ptr.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@3ba8c3cc, auth:1@dc578660/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@f7fdadcd", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@2442555d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@f4f4e993", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@34b1431c, store:-/2@54af8bd2, foot:2@a931c18, auth:-/1@6c339007", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#17))": "cpu:5443154, mem:515034, objs:-/9@787173a, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_slices_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_slices_ok.json index 44aa15aaa..a66e8ca26 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_slices_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_slices_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@3ba8c3cc, auth:1@dc578660/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@f7fdadcd", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@2442555d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@f4f4e993", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@34b1431c, store:-/2@54af8bd2, foot:2@a931c18, auth:-/1@6c339007", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#17))": "cpu:5443247, mem:515034, objs:-/9@2a114a9e, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_val_data_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_val_data_ok.json index ad725998c..03bee5723 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_val_data_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_good_val_data_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@3ba8c3cc, auth:1@dc578660/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@f7fdadcd", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@2442555d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@f4f4e993", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@34b1431c, store:-/2@54af8bd2, foot:2@a931c18, auth:-/1@6c339007", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#17))": "cpu:5443247, mem:515034, objs:-/9@227e9388, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_length_too_long.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_length_too_long.json index 214853791..4ec550372 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_length_too_long.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_length_too_long.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@3ba8c3cc, auth:1@dc578660/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@f7fdadcd", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@2442555d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@f4f4e993", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@34b1431c, store:-/2@54af8bd2, foot:2@a931c18, auth:-/1@6c339007", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#17))": "cpu:5443247, mem:515034, objs:-/9@218d92f5, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_pos_out_of_range.json b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_pos_out_of_range.json index 775d92c70..c9b523167 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_pos_out_of_range.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_map_unpack_to_linear_memory_with_pos_out_of_range.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@3ba8c3cc, auth:1@dc578660/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@f7fdadcd", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@dc578660/1@2442555d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@f4f4e993", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@34b1431c, store:-/2@54af8bd2, foot:2@a931c18, auth:-/1@6c339007", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#17))": "cpu:5443247, mem:515034, objs:-/9@bc628336, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_length_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_length_oob.json index 64e5c9478..0d4f023c2 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_length_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_length_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@448aaebc, auth:1@b9f98dac/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@23c9af5", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@49245eb1", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@14ed9c86", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@8b8f8e5, store:-/2@b8d0abcf, foot:2@98cbe97b, auth:-/1@63f6520f", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@bb33ccbe, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_pos_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_pos_oob.json index a7fcab5b3..c87107ff9 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_pos_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_bytes_pos_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@448aaebc, auth:1@b9f98dac/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@23c9af5", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@49245eb1", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@14ed9c86", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@8b8f8e5, store:-/2@b8d0abcf, foot:2@98cbe97b, auth:-/1@63f6520f", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@847cc542, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_good_inputs_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_good_inputs_ok.json index f828123f2..5549e1171 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_good_inputs_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_good_inputs_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@448aaebc, auth:1@b9f98dac/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@23c9af5", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@49245eb1", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@14ed9c86", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@8b8f8e5, store:-/2@b8d0abcf, foot:2@98cbe97b, auth:-/1@63f6520f", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@9c2779bd, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_not_enough_bytes.json b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_not_enough_bytes.json index 66d93917e..cfd6fabaa 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_not_enough_bytes.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_string_copy_to_linear_memory_with_not_enough_bytes.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@448aaebc, auth:1@b9f98dac/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@23c9af5", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@b9f98dac/1@49245eb1", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@14ed9c86", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@8b8f8e5, store:-/2@b8d0abcf, foot:2@98cbe97b, auth:-/1@63f6520f", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@e59e6e78, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_length_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_length_oob.json index 182633fab..8fe6589f9 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_length_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_length_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@d3e58ea0, auth:1@2d477a30/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@2d477a30/1@b4af37d5", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@2d477a30/1@8f47526d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@3c6b5c95", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@ea3e705f, store:-/2@12e63221, foot:2@9cfa0eb2, auth:-/1@49a6c966", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@95496da5, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_pos_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_pos_oob.json index 8488284bd..c5f055f0c 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_pos_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_bytes_pos_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@d3e58ea0, auth:1@2d477a30/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@2d477a30/1@b4af37d5", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@2d477a30/1@8f47526d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@3c6b5c95", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@ea3e705f, store:-/2@12e63221, foot:2@9cfa0eb2, auth:-/1@49a6c966", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@277ca83e, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_good_inputs_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_good_inputs_ok.json index a0a6205e3..9ed4b7818 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_good_inputs_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_string_new_from_linear_memory_with_good_inputs_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@d3e58ea0, auth:1@2d477a30/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@2d477a30/1@b4af37d5", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@2d477a30/1@8f47526d", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@3c6b5c95", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@ea3e705f, store:-/2@12e63221, foot:2@9cfa0eb2, auth:-/1@49a6c966", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@7a9e1150, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_length_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_length_oob.json index 6c6c855e3..686006a7b 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_length_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_length_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@f9c63e85, auth:1@49e5b6fe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@aec5d4ce", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@82ffe7e9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@c2f20964", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@f1c33c53, store:-/2@8466243, foot:2@cfc1095, auth:-/1@bd126bf3", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@48d52825, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_pos_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_pos_oob.json index 9cd65a912..f8ad1e85d 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_pos_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_bytes_pos_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@f9c63e85, auth:1@49e5b6fe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@aec5d4ce", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@82ffe7e9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@c2f20964", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@f1c33c53, store:-/2@8466243, foot:2@cfc1095, auth:-/1@bd126bf3", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@49eef602, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_good_inputs_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_good_inputs_ok.json index 5520c89d0..4b19a267a 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_good_inputs_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_good_inputs_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@f9c63e85, auth:1@49e5b6fe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@aec5d4ce", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@82ffe7e9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@c2f20964", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@f1c33c53, store:-/2@8466243, foot:2@cfc1095, auth:-/1@bd126bf3", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@cffd0d2, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_not_enough_bytes.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_not_enough_bytes.json index 1b3fabfa0..52915aea1 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_not_enough_bytes.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_copy_to_linear_memory_with_not_enough_bytes.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5398913, mem:513288, objs:-/5@f9c63e85, auth:1@49e5b6fe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5399599", - " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@aec5d4ce", + " 10 call get_ledger_network_id()": "cpu:5399857, auth:1@49e5b6fe/1@82ffe7e9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5402754, mem:513400, objs:-/6@c2f20964", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5440619, mem:514906, objs:-/7@f1c33c53, store:-/2@8466243, foot:2@cfc1095, auth:-/1@bd126bf3", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#17))": "cpu:5442901, mem:515034, objs:-/9@965734c2, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_length.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_length.json index b9eea9217..48b550797 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_length.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_length.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@280a3825, auth:1@c6b47f6c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@c6b47f6c/1@7be3acd4", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@c6b47f6c/1@343fbaa9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@404f2e45", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@322c697b, store:-/2@451b86bb, foot:2@7ac9e5a9, auth:-/1@92733c2e", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@d8b1f5b, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_ptr.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_ptr.json index 01099f2b3..7380e932a 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_ptr.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_bad_key_ptr.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@280a3825, auth:1@c6b47f6c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@c6b47f6c/1@7be3acd4", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@c6b47f6c/1@343fbaa9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@404f2e45", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@322c697b, store:-/2@451b86bb, foot:2@7ac9e5a9, auth:-/1@92733c2e", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@17a24a2, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_good_slices_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_good_slices_ok.json index 0ceff0938..92b7f95d6 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_good_slices_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_index_in_linear_memory_with_good_slices_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@280a3825, auth:1@c6b47f6c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@c6b47f6c/1@7be3acd4", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@c6b47f6c/1@343fbaa9", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@404f2e45", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@322c697b, store:-/2@451b86bb, foot:2@7ac9e5a9, auth:-/1@92733c2e", " 13 call call(Address(obj#13), Symbol(loadmem1), Vec(obj#15))": "cpu:5437703, mem:514679, objs:-/8@6ec6587a, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_length_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_length_oob.json index dd1c9be76..131cb7bc9 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_length_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_length_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@56ae0670, auth:1@452a553c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@452a553c/1@bc0fa0e2", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@452a553c/1@a3fcf5cb", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@a9ee625c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@1baf55a7, store:-/2@d9b431c5, foot:2@d85d795e, auth:-/1@282b2dd1", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@25f10781, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_pos_oob.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_pos_oob.json index 604c2b2cb..56ff7fbdf 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_pos_oob.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_bytes_pos_oob.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@56ae0670, auth:1@452a553c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@452a553c/1@bc0fa0e2", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@452a553c/1@a3fcf5cb", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@a9ee625c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@1baf55a7, store:-/2@d9b431c5, foot:2@d85d795e, auth:-/1@282b2dd1", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@208e7382, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_good_inputs_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_good_inputs_ok.json index 14013a266..b55045a08 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_good_inputs_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_symbol_new_from_linear_memory_with_good_inputs_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@56ae0670, auth:1@452a553c/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@452a553c/1@bc0fa0e2", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@452a553c/1@a3fcf5cb", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@a9ee625c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@1baf55a7, store:-/2@d9b431c5, foot:2@d85d795e, auth:-/1@282b2dd1", " 13 call call(Address(obj#13), Symbol(loadmem3), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@e52daca7, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_good_val_data_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_good_val_data_ok.json index 26e281e6e..934b5caaf 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_good_val_data_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_good_val_data_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@2b4e53e5, auth:1@11585316/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@596d0d06", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@b92fdd9b", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@3410cf2f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@4def51d9, store:-/2@ddc314eb, foot:2@fb90346a, auth:-/1@8eceb1d6", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@ab298098, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_invalid_vals.json b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_invalid_vals.json index e240ad2ca..85146b93c 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_invalid_vals.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_invalid_vals.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@2b4e53e5, auth:1@11585316/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@596d0d06", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@b92fdd9b", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@3410cf2f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@4def51d9, store:-/2@ddc314eb, foot:2@fb90346a, auth:-/1@8eceb1d6", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@7beb19b1, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_length_too_long.json b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_length_too_long.json index 511de8565..9e476f176 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_length_too_long.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_length_too_long.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@2b4e53e5, auth:1@11585316/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@596d0d06", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@b92fdd9b", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@3410cf2f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@4def51d9, store:-/2@ddc314eb, foot:2@fb90346a, auth:-/1@8eceb1d6", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@755a4737, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_pos_out_of_range.json b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_pos_out_of_range.json index 928692a5d..742da7069 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_pos_out_of_range.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_vec_new_from_linear_memory_with_pos_out_of_range.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5390798, mem:512705, objs:-/5@2b4e53e5, auth:1@11585316/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5391484", - " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@596d0d06", + " 10 call get_ledger_network_id()": "cpu:5391742, auth:1@11585316/1@b92fdd9b", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5394639, mem:512817, objs:-/6@3410cf2f", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5432504, mem:514323, objs:-/7@4def51d9, store:-/2@ddc314eb, foot:2@fb90346a, auth:-/1@8eceb1d6", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#15))": "cpu:5433645, mem:514387, objs:-/8@9735f39, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_good_val_data_ok.json b/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_good_val_data_ok.json index 896ab9804..725717274 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_good_val_data_ok.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_good_val_data_ok.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@ae4b0671, auth:1@cc28e003/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@cc28e003/1@c9f2c675", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@cc28e003/1@96bd8032", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@de6b2584", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@468dd462, store:-/2@6fe974c2, foot:2@779e5daf, auth:-/1@af233859", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#17))": "cpu:5438844, mem:514743, objs:-/9@44433ac, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_length_too_long.json b/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_length_too_long.json index d4f7af84f..942643129 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_length_too_long.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_length_too_long.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@ae4b0671, auth:1@cc28e003/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@cc28e003/1@c9f2c675", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@cc28e003/1@96bd8032", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@de6b2584", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@468dd462, store:-/2@6fe974c2, foot:2@779e5daf, auth:-/1@af233859", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#17))": "cpu:5438844, mem:514743, objs:-/9@e63b0b7c, auth:-/-", diff --git a/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_pos_out_of_range.json b/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_pos_out_of_range.json index 5151f8115..82a5a3016 100644 --- a/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_pos_out_of_range.json +++ b/soroban-env-host/observations/test__linear_memory__test_calling_vec_unpack_to_linear_memory_with_pos_out_of_range.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:5394856, mem:512997, objs:-/5@ae4b0671, auth:1@cc28e003/-", " 9 ret obj_cmp -> Ok(0)": "cpu:5395542", - " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@cc28e003/1@c9f2c675", + " 10 call get_ledger_network_id()": "cpu:5395800, auth:1@cc28e003/1@96bd8032", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:5398697, mem:513109, objs:-/6@de6b2584", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:5436562, mem:514615, objs:-/7@468dd462, store:-/2@6fe974c2, foot:2@779e5daf, auth:-/1@af233859", " 13 call call(Address(obj#13), Symbol(loadmem2), Vec(obj#17))": "cpu:5438844, mem:514743, objs:-/9@777b0eeb, auth:-/-", diff --git a/soroban-env-host/observations/test__post_mvp__test_enabled_post_mvp_features.json b/soroban-env-host/observations/test__post_mvp__test_enabled_post_mvp_features.json index e3526bdd0..c993e7dbc 100644 --- a/soroban-env-host/observations/test__post_mvp__test_enabled_post_mvp_features.json +++ b/soroban-env-host/observations/test__post_mvp__test_enabled_post_mvp_features.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1088127, mem:203175, objs:-/5@e6e65618, auth:1@a5e805d7/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1088813", - " 10 call get_ledger_network_id()": "cpu:1089071, auth:1@a5e805d7/1@f957ff57", + " 10 call get_ledger_network_id()": "cpu:1089071, auth:1@a5e805d7/1@66f810de", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1091968, mem:203287, objs:-/6@9c1b959", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1129833, mem:204793, objs:-/7@bd634ed8, store:-/2@e5e9f141, foot:2@f132cf20, auth:-/1@c120e61d", " 13 call vec_new_from_slice(0)": " auth:-/-", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_account_invoker_auth_with_issuer_admin.json b/soroban-env-host/observations/test__stellar_asset_contract__test_account_invoker_auth_with_issuer_admin.json index 31cc5dec0..d8fdb0cda 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_account_invoker_auth_with_issuer_admin.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_account_invoker_auth_with_issuer_admin.json @@ -147,7 +147,7 @@ " 145 ret verify_sig_ed25519 -> Ok(Void)": "cpu:872577", " 146 call bytes_copy_to_slice(Bytes(obj#63), U32(0), 32)": "", " 147 ret bytes_copy_to_slice -> Ok(())": "cpu:872939", - " 148 ret require_auth -> Ok(Void)": "cpu:893888, mem:20493, store:3@1601028b/4@ce9d1331, foot:4@97b179f3, auth:1@6d36b9d3/1@426ea3b4", + " 148 ret require_auth -> Ok(Void)": "cpu:893888, mem:20493, store:3@1601028b/4@ce9d1331, foot:4@97b179f3, auth:1@6d36b9d3/1@3ba84b4b", " 149 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 150 call get_ledger_sequence()": "cpu:899404, mem:20629, store:3@1601028b/-, foot:-", " 151 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -221,7 +221,7 @@ " 219 ret obj_cmp -> Ok(0)": "cpu:1177648", " 220 call obj_cmp(Address(obj#117), Address(obj#3))": "", " 221 ret obj_cmp -> Ok(0)": "cpu:1178334", - " 222 ret require_auth -> Ok(Void)": " auth:1@ee93eeab/1@b0c56430", + " 222 ret require_auth -> Ok(Void)": " auth:1@ee93eeab/1@a81fcc67", " 223 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 224 call get_ledger_sequence()": "cpu:1183088, mem:35253, store:3@fcb64c3c/-, foot:-", " 225 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -329,7 +329,7 @@ " 327 ret obj_cmp -> Ok(0)": "cpu:1412310", " 328 call obj_cmp(Address(obj#165), Address(obj#3))": "", " 329 ret obj_cmp -> Ok(0)": "cpu:1412996", - " 330 ret require_auth -> Ok(Void)": " auth:1@292ee80b/1@6bbc4589", + " 330 ret require_auth -> Ok(Void)": " auth:1@292ee80b/1@d1b4bad", " 331 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 332 call get_ledger_sequence()": "cpu:1417750, mem:45860, store:3@35caded/-, foot:-", " 333 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -585,7 +585,7 @@ " 583 ret obj_cmp -> Ok(0)": "cpu:2250380", " 584 call obj_cmp(Address(obj#355), Address(obj#1))": "", " 585 ret obj_cmp -> Ok(0)": "cpu:2251066", - " 586 ret require_auth -> Ok(Void)": " auth:1@c694f2e7/1@d5eda4d9", + " 586 ret require_auth -> Ok(Void)": " auth:1@c694f2e7/1@d46548e0", " 587 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 588 call get_ledger_sequence()": "cpu:2255820, mem:86526, store:-/-, foot:-", " 589 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -713,7 +713,7 @@ " 711 ret obj_cmp -> Ok(0)": "cpu:2494100", " 712 call obj_cmp(Address(obj#405), Address(obj#3))": "", " 713 ret obj_cmp -> Ok(0)": "cpu:2494786", - " 714 ret require_auth -> Ok(Void)": " auth:1@58da295b/1@4bd45b8c", + " 714 ret require_auth -> Ok(Void)": " auth:1@58da295b/1@7cd75a54", " 715 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 716 call get_ledger_sequence()": "cpu:2499540, mem:97333, store:-/-, foot:-", " 717 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_allowance_live_until.json b/soroban-env-host/observations/test__stellar_asset_contract__test_allowance_live_until.json index 7a8b793d8..a04793ddc 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_allowance_live_until.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_allowance_live_until.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:905379", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:905741", - " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@33d4e206", + " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@5bb4e9aa", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:934422, mem:23221, store:3@63cd6523/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -321,7 +321,7 @@ " 319 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1836813", " 320 call bytes_copy_to_slice(Bytes(obj#167), U32(0), 32)": "", " 321 ret bytes_copy_to_slice -> Ok(())": "cpu:1837175", - " 322 ret require_auth -> Ok(Void)": "cpu:1862448, mem:48545, store:-/8@24c9779a, foot:8@d5271a0e, auth:1@d94a5acb/1@1586a04a", + " 322 ret require_auth -> Ok(Void)": "cpu:1862448, mem:48545, store:-/8@24c9779a, foot:8@d5271a0e, auth:1@d94a5acb/1@b3e966c4", " 323 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 324 call get_ledger_sequence()": "cpu:1867983, mem:48681, store:-/-, foot:-", " 325 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -463,7 +463,7 @@ " 461 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2881954", " 462 call bytes_copy_to_slice(Bytes(obj#271), U32(0), 32)": "", " 463 ret bytes_copy_to_slice -> Ok(())": "cpu:2882316", - " 464 ret require_auth -> Ok(Void)": "cpu:2913801, mem:81049, store:-/10@207e6269, foot:10@21615ae7, auth:1@798d7c46/1@ad090368", + " 464 ret require_auth -> Ok(Void)": "cpu:2913801, mem:81049, store:-/10@207e6269, foot:10@21615ae7, auth:1@798d7c46/1@6204a3bc", " 465 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 466 call get_ledger_sequence()": "cpu:2920098, mem:81185, store:-/-, foot:-", " 467 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -779,7 +779,7 @@ " 777 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4427255", " 778 call bytes_copy_to_slice(Bytes(obj#449), U32(0), 32)": "", " 779 ret bytes_copy_to_slice -> Ok(())": "cpu:4427617", - " 780 ret require_auth -> Ok(Void)": "cpu:4462196, mem:135501, store:-/11@a5215960, foot:11@2f5e424c, auth:1@a5f0523a/1@f2bb0184", + " 780 ret require_auth -> Ok(Void)": "cpu:4462196, mem:135501, store:-/11@a5215960, foot:11@2f5e424c, auth:1@a5f0523a/1@f8fec460", " 781 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 782 call get_ledger_sequence()": "cpu:4468493, mem:135637, store:-/-, foot:-", " 783 ret get_ledger_sequence -> Ok(U32(201))": "", @@ -853,7 +853,7 @@ " 851 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5193432", " 852 call bytes_copy_to_slice(Bytes(obj#505), U32(0), 32)": "", " 853 ret bytes_copy_to_slice -> Ok(())": "cpu:5193794", - " 854 ret require_auth -> Ok(Void)": "cpu:5227877, mem:152811, store:-/11@82bde29c, foot:12@497e909d, auth:1@c4e033c8/1@333dde05", + " 854 ret require_auth -> Ok(Void)": "cpu:5227877, mem:152811, store:-/11@82bde29c, foot:12@497e909d, auth:1@c4e033c8/1@a892ed0b", " 855 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 856 call get_ledger_sequence()": "cpu:5234174, mem:152947, store:-/-, foot:-", " 857 ret get_ledger_sequence -> Ok(U32(201))": "", @@ -913,7 +913,7 @@ " 911 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5915121", " 912 call bytes_copy_to_slice(Bytes(obj#547), U32(0), 32)": "", " 913 ret bytes_copy_to_slice -> Ok(())": "cpu:5915483", - " 914 ret require_auth -> Ok(Void)": "cpu:5953642, mem:168618, store:-/11@a47c77dc, foot:13@e669cf7e, auth:1@deec782e/1@7a780ee9", + " 914 ret require_auth -> Ok(Void)": "cpu:5953642, mem:168618, store:-/11@a47c77dc, foot:13@e669cf7e, auth:1@deec782e/1@1865dc36", " 915 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 916 call get_ledger_sequence()": "cpu:5959939, mem:168754, store:-/-, foot:-", " 917 ret get_ledger_sequence -> Ok(U32(201))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_large_values.json b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_large_values.json index 64effc9c1..c656ed552 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_large_values.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_large_values.json @@ -147,7 +147,7 @@ " 145 ret verify_sig_ed25519 -> Ok(Void)": "cpu:887407", " 146 call bytes_copy_to_slice(Bytes(obj#67), U32(0), 32)": "", " 147 ret bytes_copy_to_slice -> Ok(())": "cpu:887769", - " 148 ret require_auth -> Ok(Void)": "cpu:910934, mem:23756, store:-/7@d1caea1, foot:7@8bb6f452, auth:1@88d06c7c/1@7c86897b", + " 148 ret require_auth -> Ok(Void)": "cpu:910934, mem:23756, store:-/7@d1caea1, foot:7@8bb6f452, auth:1@88d06c7c/1@d73aed9a", " 149 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 150 call get_ledger_sequence()": "cpu:916450, mem:23892, store:-/-, foot:-", " 151 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -265,7 +265,7 @@ " 263 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1661802", " 264 call bytes_copy_to_slice(Bytes(obj#141), U32(0), 32)": "", " 265 ret bytes_copy_to_slice -> Ok(())": "cpu:1662164", - " 266 ret require_auth -> Ok(Void)": "cpu:1687383, mem:40657, store:-/7@d3706ad3, foot:8@1d18f2cc, auth:1@5ca01f42/1@575a7eab", + " 266 ret require_auth -> Ok(Void)": "cpu:1687383, mem:40657, store:-/7@d3706ad3, foot:8@1d18f2cc, auth:1@5ca01f42/1@d3897dfa", " 267 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 268 call get_ledger_sequence()": "cpu:1692902, mem:40793, store:-/-, foot:-", " 269 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -439,7 +439,7 @@ " 437 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2496089", " 438 call bytes_copy_to_slice(Bytes(obj#225), U32(0), 32)": "", " 439 ret bytes_copy_to_slice -> Ok(())": "cpu:2496451", - " 440 ret require_auth -> Ok(Void)": "cpu:2523774, mem:60141, store:-/8@c2144892, foot:9@ef8021b7, auth:1@5ba362b6/1@4aadf887", + " 440 ret require_auth -> Ok(Void)": "cpu:2523774, mem:60141, store:-/8@c2144892, foot:9@ef8021b7, auth:1@5ba362b6/1@e9523515", " 441 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 442 call get_ledger_sequence()": "cpu:2529309, mem:60277, store:-/-, foot:-", " 443 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -635,7 +635,7 @@ " 633 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3356620", " 634 call bytes_copy_to_slice(Bytes(obj#305), U32(0), 32)": "", " 635 ret bytes_copy_to_slice -> Ok(())": "cpu:3356982", - " 636 ret require_auth -> Ok(Void)": "cpu:3385889, mem:80236, store:3@85422322/9@1c48cc54, foot:10@9c489184, auth:1@b0be3355/1@84798c42", + " 636 ret require_auth -> Ok(Void)": "cpu:3385889, mem:80236, store:3@85422322/9@1c48cc54, foot:10@9c489184, auth:1@b0be3355/1@248fb789", " 637 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 638 call get_ledger_sequence()": "cpu:3391678, mem:80372, store:3@85422322/-, foot:-", " 639 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -769,7 +769,7 @@ " 767 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4129456", " 768 call bytes_copy_to_slice(Bytes(obj#377), U32(0), 32)": "", " 769 ret bytes_copy_to_slice -> Ok(())": "cpu:4129818", - " 770 ret require_auth -> Ok(Void)": "cpu:4159247, mem:96539, store:3@7b811955/9@94faed78, foot:11@6d273975, auth:1@27518ca7/1@3f810109", + " 770 ret require_auth -> Ok(Void)": "cpu:4159247, mem:96539, store:3@7b811955/9@94faed78, foot:11@6d273975, auth:1@27518ca7/1@e530187d", " 771 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 772 call get_ledger_sequence()": "cpu:4165036, mem:96675, store:3@7b811955/-, foot:-", " 773 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -913,7 +913,7 @@ " 911 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4924814", " 912 call bytes_copy_to_slice(Bytes(obj#453), U32(0), 32)": "", " 913 ret bytes_copy_to_slice -> Ok(())": "cpu:4925176", - " 914 ret require_auth -> Ok(Void)": "cpu:4957703, mem:114285, store:3@801b7253/10@f36f2144, foot:12@c0275e0a, auth:1@51ee372a/1@c2f6117", + " 914 ret require_auth -> Ok(Void)": "cpu:4957703, mem:114285, store:3@801b7253/10@f36f2144, foot:12@c0275e0a, auth:1@51ee372a/1@79f8c97a", " 915 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 916 call get_ledger_sequence()": "cpu:4964000, mem:114421, store:3@801b7253/-, foot:-", " 917 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1035,7 +1035,7 @@ "1033 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5689304", "1034 call bytes_copy_to_slice(Bytes(obj#533), U32(0), 32)": "", "1035 ret bytes_copy_to_slice -> Ok(())": "cpu:5689666", - "1036 ret require_auth -> Ok(Void)": "cpu:5726809, mem:131640, store:-/11@e41669db, foot:13@34b950bb, auth:1@31fad12d/1@a99edb76", + "1036 ret require_auth -> Ok(Void)": "cpu:5726809, mem:131640, store:-/11@e41669db, foot:13@34b950bb, auth:1@31fad12d/1@aae73b47", "1037 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1038 call get_ledger_sequence()": "cpu:5733106, mem:131776, store:-/-, foot:-", "1039 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_simple.json b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_simple.json index f65050539..cfc89bc72 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_simple.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_simple.json @@ -139,7 +139,7 @@ " 137 ret verify_sig_ed25519 -> Ok(Void)": "cpu:882821", " 138 call bytes_copy_to_slice(Bytes(obj#65), U32(0), 32)": "", " 139 ret bytes_copy_to_slice -> Ok(())": "cpu:883183", - " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@586e5fd6, foot:7@8bb6f452, auth:1@9d4347ce/1@a05dc92f", + " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@586e5fd6, foot:7@8bb6f452, auth:1@9d4347ce/1@1ab01226", " 141 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 142 call get_ledger_sequence()": "cpu:911864, mem:23764, store:-/-, foot:-", " 143 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -249,7 +249,7 @@ " 247 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1652630", " 248 call bytes_copy_to_slice(Bytes(obj#135), U32(0), 32)": "", " 249 ret bytes_copy_to_slice -> Ok(())": "cpu:1652992", - " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@50405e73, foot:8@1d18f2cc, auth:1@43ae8599/1@7b2ef1a2", + " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@50405e73, foot:8@1d18f2cc, auth:1@43ae8599/1@9d77d6c5", " 251 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 252 call get_ledger_sequence()": "cpu:1683730, mem:40537, store:-/-, foot:-", " 253 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -413,7 +413,7 @@ " 411 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2480974", " 412 call bytes_copy_to_slice(Bytes(obj#213), U32(0), 32)": "", " 413 ret bytes_copy_to_slice -> Ok(())": "cpu:2481336", - " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@502a0b, foot:9@ef8021b7, auth:1@f9836d45/1@b29e2666", + " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@502a0b, foot:9@ef8021b7, auth:1@f9836d45/1@68b8d119", " 415 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 416 call get_ledger_sequence()": "cpu:2514194, mem:59829, store:-/-, foot:-", " 417 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -615,7 +615,7 @@ " 613 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3344734", " 614 call bytes_copy_to_slice(Bytes(obj#291), U32(0), 32)": "", " 615 ret bytes_copy_to_slice -> Ok(())": "cpu:3345096", - " 616 ret require_auth -> Ok(Void)": "cpu:3374003, mem:79852, store:3@c66268b/9@6e608d7e, foot:10@9c489184, auth:1@1215b262/1@61074292", + " 616 ret require_auth -> Ok(Void)": "cpu:3374003, mem:79852, store:3@c66268b/9@6e608d7e, foot:10@9c489184, auth:1@1215b262/1@bfe97768", " 617 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 618 call get_ledger_sequence()": "cpu:3379792, mem:79988, store:3@c66268b/-, foot:-", " 619 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -757,7 +757,7 @@ " 755 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4122156", " 756 call bytes_copy_to_slice(Bytes(obj#367), U32(0), 32)": "", " 757 ret bytes_copy_to_slice -> Ok(())": "cpu:4122518", - " 758 ret require_auth -> Ok(Void)": "cpu:4151947, mem:96283, store:3@2da5a4f7/9@7ac60f68, foot:11@6d273975, auth:1@60e410b6/1@7047d725", + " 758 ret require_auth -> Ok(Void)": "cpu:4151947, mem:96283, store:3@2da5a4f7/9@7ac60f68, foot:11@6d273975, auth:1@60e410b6/1@e772063e", " 759 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 760 call get_ledger_sequence()": "cpu:4157736, mem:96419, store:3@2da5a4f7/-, foot:-", " 761 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -903,7 +903,7 @@ " 901 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4918871", " 902 call bytes_copy_to_slice(Bytes(obj#447), U32(0), 32)": "", " 903 ret bytes_copy_to_slice -> Ok(())": "cpu:4919233", - " 904 ret require_auth -> Ok(Void)": "cpu:4951760, mem:114093, store:3@5ec845d1/10@9f3f5f46, foot:12@c0275e0a, auth:1@bf5416b0/1@d345c0d1", + " 904 ret require_auth -> Ok(Void)": "cpu:4951760, mem:114093, store:3@5ec845d1/10@9f3f5f46, foot:12@c0275e0a, auth:1@bf5416b0/1@171929f", " 905 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 906 call get_ledger_sequence()": "cpu:4958057, mem:114229, store:3@5ec845d1/-, foot:-", " 907 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1025,7 +1025,7 @@ "1023 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5683361", "1024 call bytes_copy_to_slice(Bytes(obj#527), U32(0), 32)": "", "1025 ret bytes_copy_to_slice -> Ok(())": "cpu:5683723", - "1026 ret require_auth -> Ok(Void)": "cpu:5720866, mem:131448, store:-/11@9a0e6d1a, foot:13@34b950bb, auth:1@5505baba/1@c334a62d", + "1026 ret require_auth -> Ok(Void)": "cpu:5720866, mem:131448, store:-/11@9a0e6d1a, foot:13@34b950bb, auth:1@5505baba/1@a42e1749", "1027 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1028 call get_ledger_sequence()": "cpu:5727163, mem:131584, store:-/-, foot:-", "1029 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json index d7be3a169..4ee556c0b 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json @@ -139,7 +139,7 @@ " 137 ret verify_sig_ed25519 -> Ok(Void)": "cpu:882821", " 138 call bytes_copy_to_slice(Bytes(obj#65), U32(0), 32)": "", " 139 ret bytes_copy_to_slice -> Ok(())": "cpu:883183", - " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@7eb60fda, foot:7@8bb6f452, auth:1@9d4347ce/1@d7de86cc", + " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@7eb60fda, foot:7@8bb6f452, auth:1@9d4347ce/1@c09f376c", " 141 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 142 call get_ledger_sequence()": "cpu:911864, mem:23764, store:-/-, foot:-", " 143 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -249,7 +249,7 @@ " 247 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1652630", " 248 call bytes_copy_to_slice(Bytes(obj#135), U32(0), 32)": "", " 249 ret bytes_copy_to_slice -> Ok(())": "cpu:1652992", - " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@492ecc52, foot:8@1d18f2cc, auth:1@43ae8599/1@6808f565", + " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@492ecc52, foot:8@1d18f2cc, auth:1@43ae8599/1@e117a030", " 251 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 252 call get_ledger_sequence()": "cpu:1683730, mem:40537, store:-/-, foot:-", " 253 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -413,7 +413,7 @@ " 411 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2480974", " 412 call bytes_copy_to_slice(Bytes(obj#213), U32(0), 32)": "", " 413 ret bytes_copy_to_slice -> Ok(())": "cpu:2481336", - " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@761453f6, foot:9@ef8021b7, auth:1@f9836d45/1@2118433c", + " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@761453f6, foot:9@ef8021b7, auth:1@f9836d45/1@b60319af", " 415 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 416 call get_ledger_sequence()": "cpu:2514194, mem:59829, store:-/-, foot:-", " 417 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -615,7 +615,7 @@ " 613 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3344734", " 614 call bytes_copy_to_slice(Bytes(obj#291), U32(0), 32)": "", " 615 ret bytes_copy_to_slice -> Ok(())": "cpu:3345096", - " 616 ret require_auth -> Ok(Void)": "cpu:3374003, mem:79852, store:3@c66268b/9@17967678, foot:10@9c489184, auth:1@1215b262/1@61074292", + " 616 ret require_auth -> Ok(Void)": "cpu:3374003, mem:79852, store:3@c66268b/9@17967678, foot:10@9c489184, auth:1@1215b262/1@bfe97768", " 617 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 618 call get_ledger_sequence()": "cpu:3379792, mem:79988, store:3@c66268b/-, foot:-", " 619 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -757,7 +757,7 @@ " 755 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4122156", " 756 call bytes_copy_to_slice(Bytes(obj#367), U32(0), 32)": "", " 757 ret bytes_copy_to_slice -> Ok(())": "cpu:4122518", - " 758 ret require_auth -> Ok(Void)": "cpu:4151947, mem:96283, store:3@2da5a4f7/9@bfe261d0, foot:11@6d273975, auth:1@60e410b6/1@7047d725", + " 758 ret require_auth -> Ok(Void)": "cpu:4151947, mem:96283, store:3@2da5a4f7/9@bfe261d0, foot:11@6d273975, auth:1@60e410b6/1@e772063e", " 759 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 760 call get_ledger_sequence()": "cpu:4157736, mem:96419, store:3@2da5a4f7/-, foot:-", " 761 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -903,7 +903,7 @@ " 901 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4918871", " 902 call bytes_copy_to_slice(Bytes(obj#447), U32(0), 32)": "", " 903 ret bytes_copy_to_slice -> Ok(())": "cpu:4919233", - " 904 ret require_auth -> Ok(Void)": "cpu:4951760, mem:114093, store:3@5ec845d1/10@cdd21ea4, foot:12@c0275e0a, auth:1@bf5416b0/1@d345c0d1", + " 904 ret require_auth -> Ok(Void)": "cpu:4951760, mem:114093, store:3@5ec845d1/10@cdd21ea4, foot:12@c0275e0a, auth:1@bf5416b0/1@171929f", " 905 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 906 call get_ledger_sequence()": "cpu:4958057, mem:114229, store:3@5ec845d1/-, foot:-", " 907 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1025,7 +1025,7 @@ "1023 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5683361", "1024 call bytes_copy_to_slice(Bytes(obj#527), U32(0), 32)": "", "1025 ret bytes_copy_to_slice -> Ok(())": "cpu:5683723", - "1026 ret require_auth -> Ok(Void)": "cpu:5720866, mem:131448, store:-/11@30cb1f6f, foot:13@34b950bb, auth:1@5505baba/1@c334a62d", + "1026 ret require_auth -> Ok(Void)": "cpu:5720866, mem:131448, store:-/11@30cb1f6f, foot:13@34b950bb, auth:1@5505baba/1@a42e1749", "1027 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1028 call get_ledger_sequence()": "cpu:5727163, mem:131584, store:-/-, foot:-", "1029 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_limit_and_liabilities.json b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_limit_and_liabilities.json index ae11bde71..8119d16f5 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_limit_and_liabilities.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_limit_and_liabilities.json @@ -139,7 +139,7 @@ " 137 ret verify_sig_ed25519 -> Ok(Void)": "cpu:882821", " 138 call bytes_copy_to_slice(Bytes(obj#65), U32(0), 32)": "", " 139 ret bytes_copy_to_slice -> Ok(())": "cpu:883183", - " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@4311b365, foot:7@8bb6f452, auth:1@9d4347ce/1@d7de86cc", + " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@4311b365, foot:7@8bb6f452, auth:1@9d4347ce/1@c09f376c", " 141 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 142 call get_ledger_sequence()": "cpu:911864, mem:23764, store:-/-, foot:-", " 143 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -249,7 +249,7 @@ " 247 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1652630", " 248 call bytes_copy_to_slice(Bytes(obj#135), U32(0), 32)": "", " 249 ret bytes_copy_to_slice -> Ok(())": "cpu:1652992", - " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@ee79543e, foot:8@1d18f2cc, auth:1@43ae8599/1@6808f565", + " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@ee79543e, foot:8@1d18f2cc, auth:1@43ae8599/1@e117a030", " 251 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 252 call get_ledger_sequence()": "cpu:1683730, mem:40537, store:-/-, foot:-", " 253 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -413,7 +413,7 @@ " 411 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2480974", " 412 call bytes_copy_to_slice(Bytes(obj#213), U32(0), 32)": "", " 413 ret bytes_copy_to_slice -> Ok(())": "cpu:2481336", - " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@2261ae1a, foot:9@ef8021b7, auth:1@f9836d45/1@2118433c", + " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@2261ae1a, foot:9@ef8021b7, auth:1@f9836d45/1@b60319af", " 415 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 416 call get_ledger_sequence()": "cpu:2514194, mem:59829, store:-/-, foot:-", " 417 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -607,7 +607,7 @@ " 605 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3340148", " 606 call bytes_copy_to_slice(Bytes(obj#289), U32(0), 32)": "", " 607 ret bytes_copy_to_slice -> Ok(())": "cpu:3340510", - " 608 ret require_auth -> Ok(Void)": "cpu:3369417, mem:79724, store:3@d878ec6e/9@d6bb5964, foot:10@9c489184, auth:1@73137446/1@c4296e84", + " 608 ret require_auth -> Ok(Void)": "cpu:3369417, mem:79724, store:3@d878ec6e/9@d6bb5964, foot:10@9c489184, auth:1@73137446/1@f37a9186", " 609 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 610 call get_ledger_sequence()": "cpu:3375206, mem:79860, store:3@d878ec6e/-, foot:-", " 611 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -741,7 +741,7 @@ " 739 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4112984", " 740 call bytes_copy_to_slice(Bytes(obj#361), U32(0), 32)": "", " 741 ret bytes_copy_to_slice -> Ok(())": "cpu:4113346", - " 742 ret require_auth -> Ok(Void)": "cpu:4142775, mem:96027, store:3@16222919/9@643b370d, foot:11@6d273975, auth:1@297ae3ba/1@b7f48452", + " 742 ret require_auth -> Ok(Void)": "cpu:4142775, mem:96027, store:3@16222919/9@643b370d, foot:11@6d273975, auth:1@297ae3ba/1@74cfc089", " 743 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 744 call get_ledger_sequence()": "cpu:4148564, mem:96163, store:3@16222919/-, foot:-", " 745 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -885,7 +885,7 @@ " 883 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4908342", " 884 call bytes_copy_to_slice(Bytes(obj#437), U32(0), 32)": "", " 885 ret bytes_copy_to_slice -> Ok(())": "cpu:4908704", - " 886 ret require_auth -> Ok(Void)": "cpu:4941231, mem:113773, store:3@c63c4455/10@5f64b612, foot:12@c0275e0a, auth:1@70dde8a2/1@f9f1e7e3", + " 886 ret require_auth -> Ok(Void)": "cpu:4941231, mem:113773, store:3@c63c4455/10@5f64b612, foot:12@c0275e0a, auth:1@70dde8a2/1@ca148d62", " 887 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 888 call get_ledger_sequence()": "cpu:4947528, mem:113909, store:3@c63c4455/-, foot:-", " 889 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -999,7 +999,7 @@ " 997 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5668246", " 998 call bytes_copy_to_slice(Bytes(obj#515), U32(0), 32)": "", " 999 ret bytes_copy_to_slice -> Ok(())": "cpu:5668608", - "1000 ret require_auth -> Ok(Void)": "cpu:5705751, mem:131000, store:-/11@8efee125, foot:13@34b950bb, auth:1@ee898dde/1@1026d4d3", + "1000 ret require_auth -> Ok(Void)": "cpu:5705751, mem:131000, store:-/11@8efee125, foot:13@34b950bb, auth:1@ee898dde/1@cc4c7316", "1001 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1002 call get_ledger_sequence()": "cpu:5712048, mem:131136, store:-/-, foot:-", "1003 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_trustline_limit.json b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_trustline_limit.json index 127d5d98e..8dde7e5fd 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_trustline_limit.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_asset_stellar_asset_contract_classic_balance_boundaries_with_trustline_limit.json @@ -139,7 +139,7 @@ " 137 ret verify_sig_ed25519 -> Ok(Void)": "cpu:882821", " 138 call bytes_copy_to_slice(Bytes(obj#65), U32(0), 32)": "", " 139 ret bytes_copy_to_slice -> Ok(())": "cpu:883183", - " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@dc6d0f7, foot:7@8bb6f452, auth:1@9d4347ce/1@a05dc92f", + " 140 ret require_auth -> Ok(Void)": "cpu:906348, mem:23628, store:-/7@dc6d0f7, foot:7@8bb6f452, auth:1@9d4347ce/1@1ab01226", " 141 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 142 call get_ledger_sequence()": "cpu:911864, mem:23764, store:-/-, foot:-", " 143 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -249,7 +249,7 @@ " 247 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1652630", " 248 call bytes_copy_to_slice(Bytes(obj#135), U32(0), 32)": "", " 249 ret bytes_copy_to_slice -> Ok(())": "cpu:1652992", - " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@945f3a7d, foot:8@1d18f2cc, auth:1@43ae8599/1@7b2ef1a2", + " 250 ret require_auth -> Ok(Void)": "cpu:1678211, mem:40401, store:-/7@945f3a7d, foot:8@1d18f2cc, auth:1@43ae8599/1@9d77d6c5", " 251 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 252 call get_ledger_sequence()": "cpu:1683730, mem:40537, store:-/-, foot:-", " 253 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -413,7 +413,7 @@ " 411 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2480974", " 412 call bytes_copy_to_slice(Bytes(obj#213), U32(0), 32)": "", " 413 ret bytes_copy_to_slice -> Ok(())": "cpu:2481336", - " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@33547f3e, foot:9@ef8021b7, auth:1@f9836d45/1@b29e2666", + " 414 ret require_auth -> Ok(Void)": "cpu:2508659, mem:59693, store:-/8@33547f3e, foot:9@ef8021b7, auth:1@f9836d45/1@68b8d119", " 415 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 416 call get_ledger_sequence()": "cpu:2514194, mem:59829, store:-/-, foot:-", " 417 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -607,7 +607,7 @@ " 605 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3340148", " 606 call bytes_copy_to_slice(Bytes(obj#289), U32(0), 32)": "", " 607 ret bytes_copy_to_slice -> Ok(())": "cpu:3340510", - " 608 ret require_auth -> Ok(Void)": "cpu:3369417, mem:79724, store:3@d878ec6e/9@bdc48245, foot:10@9c489184, auth:1@73137446/1@d176662c", + " 608 ret require_auth -> Ok(Void)": "cpu:3369417, mem:79724, store:3@d878ec6e/9@bdc48245, foot:10@9c489184, auth:1@73137446/1@2c57b150", " 609 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 610 call get_ledger_sequence()": "cpu:3375206, mem:79860, store:3@d878ec6e/-, foot:-", " 611 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -741,7 +741,7 @@ " 739 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4112984", " 740 call bytes_copy_to_slice(Bytes(obj#361), U32(0), 32)": "", " 741 ret bytes_copy_to_slice -> Ok(())": "cpu:4113346", - " 742 ret require_auth -> Ok(Void)": "cpu:4142775, mem:96027, store:3@16222919/9@d8b095bb, foot:11@6d273975, auth:1@297ae3ba/1@867de67a", + " 742 ret require_auth -> Ok(Void)": "cpu:4142775, mem:96027, store:3@16222919/9@d8b095bb, foot:11@6d273975, auth:1@297ae3ba/1@e2f56d8b", " 743 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 744 call get_ledger_sequence()": "cpu:4148564, mem:96163, store:3@16222919/-, foot:-", " 745 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -885,7 +885,7 @@ " 883 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4908342", " 884 call bytes_copy_to_slice(Bytes(obj#437), U32(0), 32)": "", " 885 ret bytes_copy_to_slice -> Ok(())": "cpu:4908704", - " 886 ret require_auth -> Ok(Void)": "cpu:4941231, mem:113773, store:3@c63c4455/10@fb045383, foot:12@c0275e0a, auth:1@70dde8a2/1@f9f1e7e3", + " 886 ret require_auth -> Ok(Void)": "cpu:4941231, mem:113773, store:3@c63c4455/10@fb045383, foot:12@c0275e0a, auth:1@70dde8a2/1@ca148d62", " 887 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 888 call get_ledger_sequence()": "cpu:4947528, mem:113909, store:3@c63c4455/-, foot:-", " 889 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -999,7 +999,7 @@ " 997 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5668246", " 998 call bytes_copy_to_slice(Bytes(obj#515), U32(0), 32)": "", " 999 ret bytes_copy_to_slice -> Ok(())": "cpu:5668608", - "1000 ret require_auth -> Ok(Void)": "cpu:5705751, mem:131000, store:-/11@e0c24980, foot:13@34b950bb, auth:1@ee898dde/1@2d36057d", + "1000 ret require_auth -> Ok(Void)": "cpu:5705751, mem:131000, store:-/11@e0c24980, foot:13@34b950bb, auth:1@ee898dde/1@bcee6c74", "1001 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1002 call get_ledger_sequence()": "cpu:5712048, mem:131136, store:-/-, foot:-", "1003 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_bad_signature_type.json b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_bad_signature_type.json index 46c54bf49..5e1677853 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_bad_signature_type.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_bad_signature_type.json @@ -131,7 +131,7 @@ " 129 ret obj_cmp -> Ok(0)": "cpu:399420", " 130 call obj_cmp(Address(obj#51), Address(obj#39))": "", " 131 ret obj_cmp -> Ok(0)": "cpu:400106", - " 132 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:431143, mem:17834, auth:1@323ddbfc/1@9cd64734", + " 132 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:431143, mem:17834, auth:1@323ddbfc/1@1c4b52eb", " 133 pop SAC:a010db6c:mint -> Err(Error(Auth, InvalidAction))": "", " 134 ret call -> Err(Error(Auth, InvalidAction))": " store:-/4@629c8fce, stk:-, auth:-/-", " 135 end": "cpu:431143, mem:17834, prngs:-/9b4a753, objs:-/41@e79fc0a, vm:-/-, evt:-, store:-/4@629c8fce, foot:4@ac059c1c, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_nonce.json b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_nonce.json index 29f365c33..e459ffe6f 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_nonce.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_nonce.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:887248", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:887610", - " 168 ret require_auth -> Err(Error(Auth, InvalidInput))": "cpu:887864, auth:1@bd72e8ef/1@b92ff713", + " 168 ret require_auth -> Err(Error(Auth, InvalidInput))": "cpu:887864, auth:1@bd72e8ef/1@bf2ded23", " 169 pop SAC:a010db6c:mint -> Err(Error(Auth, InvalidInput))": "", " 170 ret call -> Err(Error(Auth, InvalidInput))": " store:-/4@629c8fce, stk:-, auth:-/-", " 171 call vec_new()": "cpu:918250, mem:20884, objs:-/53@e48ba22e", @@ -251,7 +251,7 @@ " 249 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1556692", " 250 call bytes_copy_to_slice(Bytes(obj#123), U32(0), 32)": "", " 251 ret bytes_copy_to_slice -> Ok(())": "cpu:1557054", - " 252 ret require_auth -> Err(Error(Auth, InvalidInput))": "cpu:1557308, auth:1@e0d52b61/1@75f476ce", + " 252 ret require_auth -> Err(Error(Auth, InvalidInput))": "cpu:1557308, auth:1@e0d52b61/1@6f4c52c3", " 253 pop SAC:a010db6c:mint -> Err(Error(Auth, InvalidInput))": "", " 254 ret call -> Err(Error(Auth, InvalidInput))": " store:-/4@629c8fce, stk:-, auth:-/-", " 255 call vec_new()": "cpu:1587694, mem:31975, objs:-/84@c2a53b4d", @@ -335,7 +335,7 @@ " 333 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2226136", " 334 call bytes_copy_to_slice(Bytes(obj#185), U32(0), 32)": "", " 335 ret bytes_copy_to_slice -> Ok(())": "cpu:2226498", - " 336 ret require_auth -> Ok(Void)": "cpu:2248531, mem:43400, store:3@aeb5d32f/5@ee291db9, foot:5@50ffa42e, auth:1@7112d37/1@f6099d3a", + " 336 ret require_auth -> Ok(Void)": "cpu:2248531, mem:43400, store:3@aeb5d32f/5@ee291db9, foot:5@50ffa42e, auth:1@7112d37/1@bc5a2ff5", " 337 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 338 call get_ledger_sequence()": "cpu:2253285, mem:43536, store:3@aeb5d32f/-, foot:-", " 339 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -477,7 +477,7 @@ " 475 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2998352", " 476 call bytes_copy_to_slice(Bytes(obj#255), U32(0), 32)": "", " 477 ret bytes_copy_to_slice -> Ok(())": "cpu:2998714", - " 478 ret require_auth -> Ok(Void)": "cpu:3026895, mem:59749, store:3@ff45bf21/6@5f370f2e, foot:6@4e2bae81, auth:1@51c6f09f/1@fa2c1c9", + " 478 ret require_auth -> Ok(Void)": "cpu:3026895, mem:59749, store:3@ff45bf21/6@5f370f2e, foot:6@4e2bae81, auth:1@51c6f09f/1@c94d5e35", " 479 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 480 call get_ledger_sequence()": "cpu:3032411, mem:59885, store:3@ff45bf21/-, foot:-", " 481 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -619,7 +619,7 @@ " 617 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3776767", " 618 call bytes_copy_to_slice(Bytes(obj#325), U32(0), 32)": "", " 619 ret bytes_copy_to_slice -> Ok(())": "cpu:3777129", - " 620 ret require_auth -> Err(Error(Auth, ExistingValue))": "cpu:3783013, mem:74426, auth:1@6fdb797b/1@4276e57a", + " 620 ret require_auth -> Err(Error(Auth, ExistingValue))": "cpu:3783013, mem:74426, auth:1@6fdb797b/1@370ea12f", " 621 pop SAC:a010db6c:mint -> Err(Error(Auth, ExistingValue))": "", " 622 ret call -> Err(Error(Auth, ExistingValue))": " store:-/6@52830f14, stk:-, auth:-/-", " 623 end": "cpu:3783013, mem:74426, prngs:-/9b4a753, objs:-/184@9ca3b67, vm:-/-, evt:2@3b657b8a, store:-/6@52830f14, foot:6@4e2bae81, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_payload.json b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_payload.json index a26da1af0..12676bfc7 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_payload.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_rejected_for_incorrect_payload.json @@ -439,7 +439,7 @@ " 437 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1795058", " 438 call bytes_copy_to_slice(Bytes(obj#317), U32(0), 32)": "", " 439 ret bytes_copy_to_slice -> Ok(())": "cpu:1795420", - " 440 ret require_auth -> Ok(Void)": "cpu:1817453, mem:61302, store:3@9f3a03b0/5@a12062ad, foot:5@e7b1853b, auth:1@5fb2fd8f/1@fff74b5e", + " 440 ret require_auth -> Ok(Void)": "cpu:1817453, mem:61302, store:3@9f3a03b0/5@a12062ad, foot:5@e7b1853b, auth:1@5fb2fd8f/1@391c9a6f", " 441 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 442 call get_ledger_sequence()": "cpu:1822207, mem:61438, store:3@9f3a03b0/-, foot:-", " 443 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_required.json b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_required.json index 2a811953b..2271504de 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_required.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_required.json @@ -171,7 +171,7 @@ " 169 ret verify_sig_ed25519 -> Ok(Void)": "cpu:875025", " 170 call bytes_copy_to_slice(Bytes(obj#65), U32(0), 32)": "", " 171 ret bytes_copy_to_slice -> Ok(())": "cpu:875387", - " 172 ret require_auth -> Ok(Void)": "cpu:895246, mem:19975, store:3@53421086/3@fc224754, foot:3@b9b1cd27, auth:1@61b3d678/1@75ef665d", + " 172 ret require_auth -> Ok(Void)": "cpu:895246, mem:19975, store:3@53421086/3@fc224754, foot:3@b9b1cd27, auth:1@61b3d678/1@4c746bde", " 173 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 174 call get_ledger_sequence()": "cpu:900741, mem:20111, store:3@53421086/-, foot:-", " 175 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -413,7 +413,7 @@ " 411 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2049507", " 412 call bytes_copy_to_slice(Bytes(obj#203), U32(0), 32)": "", " 413 ret bytes_copy_to_slice -> Ok(())": "cpu:2049869", - " 414 ret require_auth -> Ok(Void)": "cpu:2078004, mem:54652, store:3@2bcc1753/5@85065c4a, foot:6@92e9875, auth:1@e1cd663b/1@89c04a32", + " 414 ret require_auth -> Ok(Void)": "cpu:2078004, mem:54652, store:3@2bcc1753/5@85065c4a, foot:6@92e9875, auth:1@e1cd663b/1@26b8ed19", " 415 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 416 call get_ledger_sequence()": "cpu:2083520, mem:54788, store:3@2bcc1753/-, foot:-", " 417 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_revocable_on_contract.json b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_revocable_on_contract.json index 0de6c5c5b..754984f9e 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_auth_revocable_on_contract.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_auth_revocable_on_contract.json @@ -203,7 +203,7 @@ " 201 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1074172", " 202 call bytes_copy_to_slice(Bytes(obj#93), U32(0), 32)": "", " 203 ret bytes_copy_to_slice -> Ok(())": "cpu:1074534", - " 204 ret require_auth -> Ok(Void)": "cpu:1096499, mem:29762, store:3@4e72fe86/4@de37cd45, foot:4@79588382, auth:1@5fa062cf/1@584e4ca4", + " 204 ret require_auth -> Ok(Void)": "cpu:1096499, mem:29762, store:3@4e72fe86/4@de37cd45, foot:4@79588382, auth:1@5fa062cf/1@8a4940f4", " 205 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 206 call get_ledger_sequence()": "cpu:1102015, mem:29898, store:3@4e72fe86/-, foot:-", " 207 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -301,7 +301,7 @@ " 299 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1825419", " 300 call bytes_copy_to_slice(Bytes(obj#159), U32(0), 32)": "", " 301 ret bytes_copy_to_slice -> Ok(())": "cpu:1825781", - " 302 ret require_auth -> Ok(Void)": "cpu:1850304, mem:44854, store:3@95b4a069/4@b3cf4968, foot:5@647c595e, auth:1@92d7de7b/1@534d5828", + " 302 ret require_auth -> Ok(Void)": "cpu:1850304, mem:44854, store:3@95b4a069/4@b3cf4968, foot:5@647c595e, auth:1@92d7de7b/1@5d61b303", " 303 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 304 call get_ledger_sequence()": "cpu:1855820, mem:44990, store:3@95b4a069/-, foot:-", " 305 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -481,7 +481,7 @@ " 479 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2832386", " 480 call bytes_copy_to_slice(Bytes(obj#255), U32(0), 32)": "", " 481 ret bytes_copy_to_slice -> Ok(())": "cpu:2832748", - " 482 ret require_auth -> Ok(Void)": "cpu:2861399, mem:71667, store:3@2c7eaaff/5@c25b45aa, foot:6@29dd6bad, auth:1@7b23fed4/1@3528f88f", + " 482 ret require_auth -> Ok(Void)": "cpu:2861399, mem:71667, store:3@2c7eaaff/5@c25b45aa, foot:6@29dd6bad, auth:1@7b23fed4/1@6d9dd3f4", " 483 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 484 call get_ledger_sequence()": "cpu:2866915, mem:71803, store:3@2c7eaaff/-, foot:-", " 485 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_burn.json b/soroban-env-host/observations/test__stellar_asset_contract__test_burn.json index 1f733fd2a..9c05764f2 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_burn.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_burn.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:905379", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:905741", - " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@a160801f", + " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@4ec905a3", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:934422, mem:23221, store:3@63cd6523/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -505,7 +505,7 @@ " 503 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2605864", " 504 call bytes_copy_to_slice(Bytes(obj#335), U32(0), 32)": "", " 505 ret bytes_copy_to_slice -> Ok(())": "cpu:2606226", - " 506 ret require_auth -> Ok(Void)": "cpu:2633597, mem:86150, store:-/9@51d6ef2, foot:9@c24f63e6, auth:1@d1281b7c/1@7a4fb907", + " 506 ret require_auth -> Ok(Void)": "cpu:2633597, mem:86150, store:-/9@51d6ef2, foot:9@c24f63e6, auth:1@d1281b7c/1@6418b3dc", " 507 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 508 call get_ledger_sequence()": "cpu:2639132, mem:86286, store:-/-, foot:-", " 509 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -679,7 +679,7 @@ " 677 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3672754", " 678 call bytes_copy_to_slice(Bytes(obj#437), U32(0), 32)": "", " 679 ret bytes_copy_to_slice -> Ok(())": "cpu:3673116", - " 680 ret require_auth -> Ok(Void)": "cpu:3704601, mem:118293, store:3@6e002d57/10@b691a7cf, foot:10@558957bc, auth:1@e1a3277a/1@251394b1", + " 680 ret require_auth -> Ok(Void)": "cpu:3704601, mem:118293, store:3@6e002d57/10@b691a7cf, foot:10@558957bc, auth:1@e1a3277a/1@e9ec6f12", " 681 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 682 call get_ledger_sequence()": "cpu:3710898, mem:118429, store:3@6e002d57/-, foot:-", " 683 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -991,7 +991,7 @@ " 989 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5179157", " 990 call bytes_copy_to_slice(Bytes(obj#623), U32(0), 32)": "", " 991 ret bytes_copy_to_slice -> Ok(())": "cpu:5179519", - " 992 ret require_auth -> Ok(Void)": "cpu:5216130, mem:170412, store:3@d15f3fc0/11@3a4953c1, foot:11@b0b59110, auth:1@fb47f04a/1@31ae1ea0", + " 992 ret require_auth -> Ok(Void)": "cpu:5216130, mem:170412, store:3@d15f3fc0/11@3a4953c1, foot:11@b0b59110, auth:1@fb47f04a/1@8a5eba81", " 993 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 994 call get_ledger_sequence()": "cpu:5222427, mem:170548, store:3@d15f3fc0/-, foot:-", " 995 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1109,7 +1109,7 @@ "1107 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5996114", "1108 call bytes_copy_to_slice(Bytes(obj#701), U32(0), 32)": "", "1109 ret bytes_copy_to_slice -> Ok(())": "cpu:5996476", - "1110 ret require_auth -> Ok(Void)": "cpu:6035131, mem:188909, store:3@9b3e35c8/11@ab8f18b9, foot:12@74e4b9cb, auth:1@1dc54f4f/1@895d1d4a", + "1110 ret require_auth -> Ok(Void)": "cpu:6035131, mem:188909, store:3@9b3e35c8/11@ab8f18b9, foot:12@74e4b9cb, auth:1@1dc54f4f/1@28fbc94b", "1111 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1112 call get_ledger_sequence()": "cpu:6041428, mem:189045, store:3@9b3e35c8/-, foot:-", "1113 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1419,7 +1419,7 @@ "1417 ret verify_sig_ed25519 -> Ok(Void)": "cpu:7508295", "1418 call bytes_copy_to_slice(Bytes(obj#885), U32(0), 32)": "", "1419 ret bytes_copy_to_slice -> Ok(())": "cpu:7508657", - "1420 ret require_auth -> Ok(Void)": "cpu:7546854, mem:240836, store:3@c23ab67c/12@3080ecc3, foot:13@ec02e296, auth:1@12070649/1@4eabb0e9", + "1420 ret require_auth -> Ok(Void)": "cpu:7546854, mem:240836, store:3@c23ab67c/12@3080ecc3, foot:13@ec02e296, auth:1@12070649/1@1446e981", "1421 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1422 call get_ledger_sequence()": "cpu:7553151, mem:240972, store:3@c23ab67c/-, foot:-", "1423 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1593,7 +1593,7 @@ "1591 ret verify_sig_ed25519 -> Ok(Void)": "cpu:8485172", "1592 call bytes_copy_to_slice(Bytes(obj#989), U32(0), 32)": "", "1593 ret bytes_copy_to_slice -> Ok(())": "cpu:8485534", - "1594 ret require_auth -> Ok(Void)": "cpu:8522759, mem:268213, store:3@241822ae/13@8415ce54, foot:14@618c6e7f, auth:1@3045518e/1@dc7dc38c", + "1594 ret require_auth -> Ok(Void)": "cpu:8522759, mem:268213, store:3@241822ae/13@8415ce54, foot:14@618c6e7f, auth:1@3045518e/1@9665f3ae", "1595 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1596 call get_ledger_sequence()": "cpu:8529056, mem:268349, store:3@241822ae/-, foot:-", "1597 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1747,7 +1747,7 @@ "1745 ret verify_sig_ed25519 -> Ok(Void)": "cpu:9293320", "1746 call bytes_copy_to_slice(Bytes(obj#1065), U32(0), 32)": "", "1747 ret bytes_copy_to_slice -> Ok(())": "cpu:9293682", - "1748 ret require_auth -> Ok(Void)": "cpu:9336037, mem:287190, store:3@784e6483/14@75df16f1, foot:15@126e833a, auth:1@4a8f7ba0/1@c7cb773d", + "1748 ret require_auth -> Ok(Void)": "cpu:9336037, mem:287190, store:3@784e6483/14@75df16f1, foot:15@126e833a, auth:1@4a8f7ba0/1@79d9ff58", "1749 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1750 call get_ledger_sequence()": "cpu:9342588, mem:287326, store:3@784e6483/-, foot:-", "1751 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1849,7 +1849,7 @@ "1847 ret verify_sig_ed25519 -> Ok(Void)": "cpu:10065371", "1848 call bytes_copy_to_slice(Bytes(obj#1133), U32(0), 32)": "", "1849 ret bytes_copy_to_slice -> Ok(())": "cpu:10065733", - "1850 ret require_auth -> Ok(Void)": "cpu:10107604, mem:304400, store:3@c05b4b9a/14@39847458, foot:16@4ed4650f, auth:1@d909cfcc/1@9d6df7a7", + "1850 ret require_auth -> Ok(Void)": "cpu:10107604, mem:304400, store:3@c05b4b9a/14@39847458, foot:16@4ed4650f, auth:1@d909cfcc/1@da55cb59", "1851 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1852 call get_ledger_sequence()": "cpu:10114158, mem:304536, store:3@c05b4b9a/-, foot:-", "1853 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1985,7 +1985,7 @@ "1983 ret verify_sig_ed25519 -> Ok(Void)": "cpu:10863141", "1984 call bytes_copy_to_slice(Bytes(obj#1207), U32(0), 32)": "", "1985 ret bytes_copy_to_slice -> Ok(())": "cpu:10863503", - "1986 ret require_auth -> Ok(Void)": "cpu:10911012, mem:323421, store:3@8bf02628/15@163068d2, foot:17@efc9cede, auth:1@77fc0682/1@b4719048", + "1986 ret require_auth -> Ok(Void)": "cpu:10911012, mem:323421, store:3@8bf02628/15@163068d2, foot:17@efc9cede, auth:1@77fc0682/1@f854d385", "1987 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1988 call get_ledger_sequence()": "cpu:10918074, mem:323557, store:3@8bf02628/-, foot:-", "1989 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_cannot_burn_native.json b/soroban-env-host/observations/test__stellar_asset_contract__test_cannot_burn_native.json index 4f6d0dab6..3f31f4f7a 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_cannot_burn_native.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_cannot_burn_native.json @@ -165,7 +165,7 @@ " 163 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1075054", " 164 call bytes_copy_to_slice(Bytes(obj#117), U32(0), 32)": "", " 165 ret bytes_copy_to_slice -> Ok(())": "cpu:1075416", - " 166 ret require_auth -> Ok(Void)": "cpu:1095275, mem:28392, store:-/3@e30a320b, foot:3@bae9f0d6, auth:1@e66c07c3/1@976a268d", + " 166 ret require_auth -> Ok(Void)": "cpu:1095275, mem:28392, store:-/3@e30a320b, foot:3@bae9f0d6, auth:1@e66c07c3/1@2b9b6663", " 167 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 168 call get_ledger_sequence()": "cpu:1100770, mem:28528, store:-/-, foot:-", " 169 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_classic_account_multisig_auth.json b/soroban-env-host/observations/test__stellar_asset_contract__test_classic_account_multisig_auth.json index 54ffe7821..c5731fe9d 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_classic_account_multisig_auth.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_classic_account_multisig_auth.json @@ -133,7 +133,7 @@ " 131 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1215107", " 132 call bytes_copy_to_slice(Bytes(obj#69), U32(0), 32)": "", " 133 ret bytes_copy_to_slice -> Ok(())": "cpu:1215469", - " 134 ret require_auth -> Ok(Void)": "cpu:1235328, mem:17033, store:-/3@675ef7c2, foot:3@2800f5fe, auth:1@88d06c7c/1@88811457", + " 134 ret require_auth -> Ok(Void)": "cpu:1235328, mem:17033, store:-/3@675ef7c2, foot:3@2800f5fe, auth:1@88d06c7c/1@18b57427", " 135 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 136 call get_ledger_sequence()": "cpu:1240823, mem:17169, store:-/-, foot:-", " 137 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -245,7 +245,7 @@ " 243 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1958613", " 244 call bytes_copy_to_slice(Bytes(obj#131), U32(0), 32)": "", " 245 ret bytes_copy_to_slice -> Ok(())": "cpu:1958975", - " 246 ret require_auth -> Ok(Void)": "cpu:1982972, mem:31680, store:-/4@d2b51d30, foot:4@b4421e13, auth:1@2ac6e3a3/1@f73cd6b5", + " 246 ret require_auth -> Ok(Void)": "cpu:1982972, mem:31680, store:-/4@d2b51d30, foot:4@b4421e13, auth:1@2ac6e3a3/1@fcc68ac8", " 247 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 248 call get_ledger_sequence()": "cpu:1988488, mem:31816, store:-/-, foot:-", " 249 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -389,7 +389,7 @@ " 387 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3147049", " 388 call bytes_copy_to_slice(Bytes(obj#211), U32(0), 32)": "", " 389 ret bytes_copy_to_slice -> Ok(())": "cpu:3147411", - " 390 ret require_auth -> Ok(Void)": "cpu:3176556, mem:48039, store:-/5@3b82f6da, foot:5@43022e5c, auth:1@b23cab69/1@294f93dd", + " 390 ret require_auth -> Ok(Void)": "cpu:3176556, mem:48039, store:-/5@3b82f6da, foot:5@43022e5c, auth:1@b23cab69/1@4b8637f1", " 391 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 392 call get_ledger_sequence()": "cpu:3182072, mem:48175, store:-/-, foot:-", " 393 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -565,7 +565,7 @@ " 563 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4784736", " 564 call bytes_copy_to_slice(Bytes(obj#309), U32(0), 32)": "", " 565 ret bytes_copy_to_slice -> Ok(())": "cpu:4785098", - " 566 ret require_auth -> Ok(Void)": "cpu:4818359, mem:66338, store:-/6@2ab20711, foot:6@6308a87f, auth:1@f36efd72/1@dbe8840b", + " 566 ret require_auth -> Ok(Void)": "cpu:4818359, mem:66338, store:-/6@2ab20711, foot:6@6308a87f, auth:1@f36efd72/1@8ffd66c3", " 567 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 568 call get_ledger_sequence()": "cpu:4823875, mem:66474, store:-/-, foot:-", " 569 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -773,7 +773,7 @@ " 771 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6870652", " 772 call bytes_copy_to_slice(Bytes(obj#425), U32(0), 32)": "", " 773 ret bytes_copy_to_slice -> Ok(())": "cpu:6871014", - " 774 ret require_auth -> Ok(Void)": "cpu:6907367, mem:86585, store:-/7@b9c59316, foot:7@5601c854, auth:1@a9a70e84/1@315bf971", + " 774 ret require_auth -> Ok(Void)": "cpu:6907367, mem:86585, store:-/7@b9c59316, foot:7@5601c854, auth:1@a9a70e84/1@1988c9b6", " 775 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 776 call get_ledger_sequence()": "cpu:6913645, mem:86721, store:-/-, foot:-", " 777 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -885,7 +885,7 @@ " 883 ret verify_sig_ed25519 -> Ok(Void)": "cpu:7634621", " 884 call bytes_copy_to_slice(Bytes(obj#487), U32(0), 32)": "", " 885 ret bytes_copy_to_slice -> Ok(())": "cpu:7634983", - " 886 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:7635237, auth:1@bdea6b35/1@3fe379c9", + " 886 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:7635237, auth:1@bdea6b35/1@6198f0ad", " 887 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", " 888 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", " 889 call vec_new_from_slice(3)": "cpu:7636378, mem:100676, objs:-/253@4d012f51", @@ -973,7 +973,7 @@ " 971 ret verify_sig_ed25519 -> Ok(Void)": "cpu:8699828", " 972 call bytes_copy_to_slice(Bytes(obj#545), U32(0), 32)": "", " 973 ret bytes_copy_to_slice -> Ok(())": "cpu:8700190", - " 974 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:8700444, auth:1@2a36643a/1@8a42513e", + " 974 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:8700444, auth:1@2a36643a/1@bdbcf2b6", " 975 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", " 976 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", " 977 call vec_new_from_slice(3)": "cpu:8701585, mem:111564, objs:-/282@b18f1c00", @@ -1057,7 +1057,7 @@ "1055 ret bytes_len -> Ok(U32(64))": "cpu:9360296", "1056 call obj_cmp(Bytes(obj#595), Bytes(obj#603))": "", "1057 ret obj_cmp -> Ok(0)": "cpu:9360982", - "1058 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@df3e6ec/1@af5ea006", + "1058 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@df3e6ec/1@adca684e", "1059 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", "1060 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", "1061 call vec_new_from_slice(3)": "cpu:9362123, mem:122452, objs:-/311@894921ca", @@ -1173,7 +1173,7 @@ "1171 ret bytes_len -> Ok(U32(64))": "cpu:10463881", "1172 call obj_cmp(Bytes(obj#671), Bytes(obj#679))": "", "1173 ret obj_cmp -> Ok(0)": "cpu:10464567", - "1174 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@233306b5/1@4f48db38", + "1174 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@233306b5/1@2a8ece2a", "1175 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", "1176 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", "1177 call vec_new_from_slice(3)": "cpu:10465708, mem:134890, objs:-/349@c9d60b52", @@ -1247,7 +1247,7 @@ "1245 ret verify_sig_ed25519 -> Ok(Void)": "cpu:11121314", "1246 call bytes_copy_to_slice(Bytes(obj#729), U32(0), 32)": "", "1247 ret bytes_copy_to_slice -> Ok(())": "cpu:11121676", - "1248 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:11121930, auth:1@36447296/1@f20b5b1d", + "1248 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:11121930, auth:1@36447296/1@57a1745e", "1249 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", "1250 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", "1251 call vec_new_from_slice(3)": "cpu:11123071, mem:145778, objs:-/378@f1a2095d", @@ -1339,7 +1339,7 @@ "1337 ret verify_sig_ed25519 -> Ok(Void)": "cpu:11813880", "1338 call bytes_copy_to_slice(Bytes(obj#797), U32(0), 32)": "", "1339 ret bytes_copy_to_slice -> Ok(())": "cpu:11814242", - "1340 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:11814496, auth:1@b899f383/1@d30bdda5", + "1340 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:11814496, auth:1@b899f383/1@e04aa2e2", "1341 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", "1342 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", "1343 call vec_new_from_slice(3)": "cpu:11815637, mem:158216, objs:-/416@4ed11a81", @@ -1741,7 +1741,7 @@ "1739 ret obj_cmp -> Ok(0)": "cpu:12687439", "1740 call vec_len(Vec(obj#1219))": "cpu:12724409, mem:199362", "1741 ret vec_len -> Ok(U32(21))": "cpu:12724625", - "1742 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@adf6ac01/1@7f2373ff", + "1742 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@adf6ac01/1@649af4a6", "1743 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", "1744 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", "1745 call vec_new_from_slice(3)": "cpu:12725766, mem:199426, objs:-/615@6888d41b", @@ -1875,7 +1875,7 @@ "1873 ret bytes_len -> Ok(U32(64))": "cpu:13862729", "1874 call obj_cmp(Bytes(obj#1289), Bytes(obj#1297))": "", "1875 ret obj_cmp -> Ok(1)": "cpu:13863415", - "1876 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@ccf56d5a/1@d0e24f1f", + "1876 ret require_auth -> Err(Error(Auth, InvalidAction))": " auth:1@ccf56d5a/1@f119bc1c", "1877 pop SAC:9d2afd13:transfer -> Err(Error(Auth, InvalidAction))": "", "1878 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", "1879 end": "cpu:13863415, mem:213358, prngs:-/9b4a753, objs:-/661@45430f51, vm:-/-, evt:5@95f12830, store:-/7@b9c59316, foot:7@5601c854, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_classic_transfers_not_possible_for_unauthorized_asset.json b/soroban-env-host/observations/test__stellar_asset_contract__test_classic_transfers_not_possible_for_unauthorized_asset.json index e63713085..8aaaf3132 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_classic_transfers_not_possible_for_unauthorized_asset.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_classic_transfers_not_possible_for_unauthorized_asset.json @@ -137,7 +137,7 @@ " 135 ret verify_sig_ed25519 -> Ok(Void)": "cpu:847839", " 136 call bytes_copy_to_slice(Bytes(obj#63), U32(0), 32)": "", " 137 ret bytes_copy_to_slice -> Ok(())": "cpu:848201", - " 138 ret require_auth -> Ok(Void)": "cpu:868134, mem:19946, store:-/4@c73c5c39, foot:4@c957b5aa, auth:1@c945adf6/1@1f19c6c3", + " 138 ret require_auth -> Ok(Void)": "cpu:868134, mem:19946, store:-/4@c73c5c39, foot:4@c957b5aa, auth:1@c945adf6/1@108024bc", " 139 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 140 call get_ledger_sequence()": "cpu:873650, mem:20082, store:-/-, foot:-", " 141 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -301,7 +301,7 @@ " 299 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1661443", " 300 call bytes_copy_to_slice(Bytes(obj#139), U32(0), 32)": "", " 301 ret bytes_copy_to_slice -> Ok(())": "cpu:1661805", - " 302 ret require_auth -> Ok(Void)": "cpu:1688918, mem:38049, store:-/5@65229934, foot:5@82ed48ec, auth:1@e2eb0430/1@c470d4c9", + " 302 ret require_auth -> Ok(Void)": "cpu:1688918, mem:38049, store:-/5@65229934, foot:5@82ed48ec, auth:1@e2eb0430/1@bce60e77", " 303 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 304 call get_ledger_sequence()": "cpu:1694434, mem:38185, store:-/-, foot:-", " 305 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_account.json b/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_account.json index a184cd368..f6f8e9213 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_account.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_account.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:878308", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:878670", - " 168 ret require_auth -> Ok(Void)": "cpu:898603, mem:20424, store:3@63cd6523/4@7cf23cf5, foot:4@664f4a8d, auth:1@bd72e8ef/1@a160801f", + " 168 ret require_auth -> Ok(Void)": "cpu:898603, mem:20424, store:3@63cd6523/4@7cf23cf5, foot:4@664f4a8d, auth:1@bd72e8ef/1@4ec905a3", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:904119, mem:20560, store:3@63cd6523/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -373,7 +373,7 @@ " 371 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1841256", " 372 call bytes_copy_to_slice(Bytes(obj#165), U32(0), 32)": "", " 373 ret bytes_copy_to_slice -> Ok(())": "cpu:1841618", - " 374 ret require_auth -> Ok(Void)": "cpu:1868731, mem:45109, store:3@cdaec094/5@d5a7544c, foot:5@446a422c, auth:1@e888d44e/1@e74c017", + " 374 ret require_auth -> Ok(Void)": "cpu:1868731, mem:45109, store:3@cdaec094/5@d5a7544c, foot:5@446a422c, auth:1@e888d44e/1@7ddffae1", " 375 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 376 call get_ledger_sequence()": "cpu:1874247, mem:45245, store:3@cdaec094/-, foot:-", " 377 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -557,7 +557,7 @@ " 555 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2794972", " 556 call bytes_copy_to_slice(Bytes(obj#269), U32(0), 32)": "", " 557 ret bytes_copy_to_slice -> Ok(())": "cpu:2795334", - " 558 ret require_auth -> Ok(Void)": "cpu:2822499, mem:69672, store:3@cce3d673/6@f9ec6b5f, foot:6@13901779, auth:1@5251f98c/1@384c9292", + " 558 ret require_auth -> Ok(Void)": "cpu:2822499, mem:69672, store:3@cce3d673/6@f9ec6b5f, foot:6@13901779, auth:1@5251f98c/1@936e6ba5", " 559 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 560 call get_ledger_sequence()": "cpu:2828015, mem:69808, store:3@cce3d673/-, foot:-", " 561 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -747,7 +747,7 @@ " 745 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3795758", " 746 call bytes_copy_to_slice(Bytes(obj#399), U32(0), 32)": "", " 747 ret bytes_copy_to_slice -> Ok(())": "cpu:3796120", - " 748 ret require_auth -> Ok(Void)": "cpu:3827869, mem:96149, store:3@19e6a09d/6@73f2fac5, foot:7@2e6bca8d, auth:1@caad60af/1@e7b35195", + " 748 ret require_auth -> Ok(Void)": "cpu:3827869, mem:96149, store:3@19e6a09d/6@73f2fac5, foot:7@2e6bca8d, auth:1@caad60af/1@f392b902", " 749 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 750 call get_ledger_sequence()": "cpu:3833639, mem:96285, store:3@19e6a09d/-, foot:-", " 751 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_contract.json b/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_contract.json index 6afa1bde6..fab87bc96 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_contract.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_clawback_on_contract.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:872020", " 166 call bytes_copy_to_slice(Bytes(obj#63), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:872382", - " 168 ret require_auth -> Ok(Void)": "cpu:892241, mem:19863, store:3@1601028b/3@fc224754, foot:3@b9b1cd27, auth:1@7d315401/1@a4c429be", + " 168 ret require_auth -> Ok(Void)": "cpu:892241, mem:19863, store:3@1601028b/3@fc224754, foot:3@b9b1cd27, auth:1@7d315401/1@5e49c685", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:897736, mem:19999, store:3@1601028b/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -329,7 +329,7 @@ " 327 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1728662", " 328 call bytes_copy_to_slice(Bytes(obj#147), U32(0), 32)": "", " 329 ret bytes_copy_to_slice -> Ok(())": "cpu:1729024", - " 330 ret require_auth -> Ok(Void)": "cpu:1754105, mem:39682, store:3@356f4e7/5@f22e1318, foot:5@4fb468c0, auth:1@8f1321b5/1@6d4e2fc0", + " 330 ret require_auth -> Ok(Void)": "cpu:1754105, mem:39682, store:3@356f4e7/5@f22e1318, foot:5@4fb468c0, auth:1@8f1321b5/1@7bdb8eb", " 331 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 332 call get_ledger_sequence()": "cpu:1759621, mem:39818, store:3@356f4e7/-, foot:-", " 333 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -563,7 +563,7 @@ " 561 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2961092", " 562 call bytes_copy_to_slice(Bytes(obj#255), U32(0), 32)": "", " 563 ret bytes_copy_to_slice -> Ok(())": "cpu:2961454", - " 564 ret require_auth -> Ok(Void)": "cpu:2993727, mem:77021, store:3@f8ee34fc/7@92b6df1e, foot:7@b7cb4c08, auth:1@b57f30f8/1@5fb51c9e", + " 564 ret require_auth -> Ok(Void)": "cpu:2993727, mem:77021, store:3@f8ee34fc/7@92b6df1e, foot:7@b7cb4c08, auth:1@b57f30f8/1@4b7c1506", " 565 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 566 call get_ledger_sequence()": "cpu:3000005, mem:77157, store:3@f8ee34fc/-, foot:-", " 567 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -745,7 +745,7 @@ " 743 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4047209", " 744 call bytes_copy_to_slice(Bytes(obj#383), U32(0), 32)": "", " 745 ret bytes_copy_to_slice -> Ok(())": "cpu:4047571", - " 746 ret require_auth -> Ok(Void)": "cpu:4080936, mem:107257, store:3@f8600dbd/8@5c25d143, foot:8@9e58c3f2, auth:1@b8388731/1@b3bb3f84", + " 746 ret require_auth -> Ok(Void)": "cpu:4080936, mem:107257, store:3@f8600dbd/8@5c25d143, foot:8@9e58c3f2, auth:1@b8388731/1@461b25d4", " 747 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 748 call get_ledger_sequence()": "cpu:4087233, mem:107393, store:3@f8600dbd/-, foot:-", " 749 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_contract_invoker_auth.json b/soroban-env-host/observations/test__stellar_asset_contract__test_contract_invoker_auth.json index ce651c8b4..fc7d4457a 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_contract_invoker_auth.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_contract_invoker_auth.json @@ -155,7 +155,7 @@ " 153 ret verify_sig_ed25519 -> Ok(Void)": "cpu:861276", " 154 call bytes_copy_to_slice(Bytes(obj#67), U32(0), 32)": "", " 155 ret bytes_copy_to_slice -> Ok(())": "cpu:861638", - " 156 ret require_auth -> Ok(Void)": "cpu:881497, mem:19439, store:3@2b8780fe/3@fc224754, foot:3@b9b1cd27, auth:1@ef930bf4/1@c999bcec", + " 156 ret require_auth -> Ok(Void)": "cpu:881497, mem:19439, store:3@2b8780fe/3@fc224754, foot:3@b9b1cd27, auth:1@ef930bf4/1@a615223", " 157 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 158 call get_ledger_sequence()": "cpu:886992, mem:19575, store:3@2b8780fe/-, foot:-", " 159 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_custom_account_auth.json b/soroban-env-host/observations/test__stellar_asset_contract__test_custom_account_auth.json index 2c5fbb159..414bdd21f 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_custom_account_auth.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_custom_account_auth.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1730276, mem:1297357, objs:-/5@d3357feb, auth:1@e89fbe79/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1730962", - " 10 call get_ledger_network_id()": "cpu:1731220, auth:1@e89fbe79/1@c019bdd6", + " 10 call get_ledger_network_id()": "cpu:1731220, auth:1@e89fbe79/1@bb019c0f", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1734117, mem:1297469, objs:-/6@7b385ad7", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1771982, mem:1298975, objs:-/7@47f7f8a2, store:-/2@6ef95b93, foot:2@e25a5bea, auth:-/1@bc37c908", " 13 call bytes_new_from_slice(32)": " auth:-/-", @@ -175,7 +175,7 @@ " 173 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4350882", " 174 call bytes_copy_to_slice(Bytes(obj#83), U32(0), 32)": "", " 175 ret bytes_copy_to_slice -> Ok(())": "cpu:4351244", - " 176 ret require_auth -> Ok(Void)": "cpu:4375361, mem:2617950, store:3@43d0ac91/6@ed220711, foot:6@d1032776, auth:1@4d6d07c7/1@600fbf8d", + " 176 ret require_auth -> Ok(Void)": "cpu:4375361, mem:2617950, store:3@43d0ac91/6@ed220711, foot:6@d1032776, auth:1@4d6d07c7/1@125bdda2", " 177 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 178 call get_ledger_sequence()": "cpu:4381639, mem:2618086, store:3@43d0ac91/-, foot:-", " 179 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -287,7 +287,7 @@ " 285 call verify_sig_ed25519(Bytes(obj#193), Bytes(obj#175), Bytes(obj#139))": "", " 286 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6880109", " 287 pop VM:ae64f421:sym#187 -> Ok(Void)": " vm:1114112@6805f38c/7@b41e4731", - " 288 ret require_auth -> Ok(Void)": "cpu:6906190, mem:3936749, objs:-/97@be224788, vm:-/-, store:3@35b09968/9@629ec03b, foot:9@df419f25, stk:1@231decd6, auth:1@46130af5/1@a8dd1630", + " 288 ret require_auth -> Ok(Void)": "cpu:6906190, mem:3936749, objs:-/97@be224788, vm:-/-, store:3@35b09968/9@629ec03b, foot:9@df419f25, stk:1@231decd6, auth:1@46130af5/1@6a3a05f", " 289 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 290 call get_ledger_sequence()": "cpu:6910963, mem:3936885, store:3@35b09968/-, foot:-", " 291 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -477,7 +477,7 @@ " 475 call verify_sig_ed25519(Bytes(obj#295), Bytes(obj#277), Bytes(obj#241))": "", " 476 ret verify_sig_ed25519 -> Err(Error(Crypto, InvalidInput))": "cpu:9521364", " 477 pop VM:ae64f421:sym#289 -> Err(Error(Crypto, InvalidInput))": " vm:1114112@6805f38c/7@b41e4731", - " 478 ret require_auth -> Err(Error(Auth, InvalidAction))": " objs:-/148@cde507f5, vm:-/-, store:3@c27b105d/9@7caf284f, stk:1@f185d62d, auth:1@82fe2f69/1@d92aec30", + " 478 ret require_auth -> Err(Error(Auth, InvalidAction))": " objs:-/148@cde507f5, vm:-/-, store:3@c27b105d/9@7caf284f, stk:1@f185d62d, auth:1@82fe2f69/1@96c51ac3", " 479 pop SAC:a010db6c:mint -> Err(Error(Auth, InvalidAction))": "", " 480 ret call -> Err(Error(Auth, InvalidAction))": " store:-/9@7caf284f, stk:-, auth:-/-", " 481 call vec_new_from_slice(1)": "", @@ -537,7 +537,7 @@ " 535 call verify_sig_ed25519(Bytes(obj#335), Bytes(obj#317), Bytes(obj#305))": "", " 536 ret verify_sig_ed25519 -> Ok(Void)": "cpu:13442107", " 537 pop VM:ae64f421:sym#329 -> Ok(Void)": " vm:1114112@6805f38c/7@b41e4731", - " 538 ret require_auth -> Ok(Void)": "cpu:13474334, mem:7857483, objs:2@2bb38152/168@4a2e97fa, vm:-/-, store:-/10@f8d88308, foot:10@bf118cca, stk:1@211d6f74, auth:1@1307632f/1@fbf41c99", + " 538 ret require_auth -> Ok(Void)": "cpu:13474334, mem:7857483, objs:2@2bb38152/168@4a2e97fa, vm:-/-, store:-/10@f8d88308, foot:10@bf118cca, stk:1@211d6f74, auth:1@1307632f/1@5acff1a8", " 539 call vec_new_from_linear_memory(U32(1048552), U32(1))": "", " 540 ret vec_new_from_linear_memory -> Ok(Vec(obj#337))": "cpu:13480801, mem:7857571, objs:2@2bb38152/169@1cd1e992", " 541 call put_contract_data(Vec(obj#337), Bytes(obj#231), Persistent)": "cpu:13482050, mem:7857595, objs:3@afce9074/169@1cd1e992, stk:1@16eeb2e6", @@ -629,7 +629,7 @@ " 627 call verify_sig_ed25519(Bytes(obj#401), Bytes(obj#383), Bytes(obj#347))": "", " 628 ret verify_sig_ed25519 -> Ok(Void)": "cpu:15869964", " 629 pop VM:ae64f421:sym#395 -> Ok(Void)": " vm:1114112@6805f38c/7@b41e4731", - " 630 ret require_auth -> Ok(Void)": "cpu:15906301, mem:9169722, objs:-/201@7e2fb69d, vm:-/-, store:3@f0f4aa2b/11@27e3efa5, foot:11@a3aa4401, stk:1@c4da2ea2, auth:1@3670e0d7/1@f1f3c6d2", + " 630 ret require_auth -> Ok(Void)": "cpu:15906301, mem:9169722, objs:-/201@7e2fb69d, vm:-/-, store:3@f0f4aa2b/11@27e3efa5, foot:11@a3aa4401, stk:1@c4da2ea2, auth:1@3670e0d7/1@a4600784", " 631 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 632 call get_ledger_sequence()": "cpu:15911836, mem:9169858, store:3@f0f4aa2b/-, foot:-", " 633 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -815,7 +815,7 @@ " 813 call verify_sig_ed25519(Bytes(obj#501), Bytes(obj#483), Bytes(obj#447))": "", " 814 ret verify_sig_ed25519 -> Err(Error(Crypto, InvalidInput))": "cpu:18522623", " 815 pop VM:ae64f421:sym#495 -> Err(Error(Crypto, InvalidInput))": " vm:1114112@6805f38c/7@b41e4731", - " 816 ret require_auth -> Err(Error(Auth, InvalidAction))": " objs:-/251@bb47c6c2, vm:-/-, store:3@d903d831/11@c1b14018, stk:1@b6e77d84, auth:1@7315eaa1/1@3cb4d57", + " 816 ret require_auth -> Err(Error(Auth, InvalidAction))": " objs:-/251@bb47c6c2, vm:-/-, store:3@d903d831/11@c1b14018, stk:1@b6e77d84, auth:1@7315eaa1/1@32848e7d", " 817 pop SAC:a010db6c:mint -> Err(Error(Auth, InvalidAction))": "", " 818 ret call -> Err(Error(Auth, InvalidAction))": " store:-/11@c1b14018, stk:-, auth:-/-", " 819 call vec_new_from_slice(2)": "cpu:18532351, mem:10491370, store:-/11@cda3c438", @@ -883,7 +883,7 @@ " 881 ret vec_push_back -> Ok(Vec(obj#557))": "cpu:18772329, mem:10501963, objs:-/279@7330f59b", " 882 call symbol_new_from_slice(12)": "", " 883 ret symbol_new_from_slice -> Ok(Symbol(obj#559))": "cpu:18775366, mem:10502055, objs:-/280@bc88d530", - " 884 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:18781919, mem:10502191, auth:1@e1e26708/1@2fae3900", + " 884 ret require_auth -> Err(Error(Auth, InvalidAction))": "cpu:18781919, mem:10502191, auth:1@e1e26708/1@eddb7ad8", " 885 pop SAC:a010db6c:mint -> Err(Error(Auth, InvalidAction))": "", " 886 ret call -> Err(Error(Auth, InvalidAction))": " store:-/11@cda3c438, stk:-, auth:-/-", " 887 end": "cpu:18781919, mem:10502191, prngs:-/9b4a753, objs:-/280@bc88d530, vm:-/-, evt:3@33fe60dc, store:-/11@cda3c438, foot:11@a3aa4401, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_direct_transfer.json b/soroban-env-host/observations/test__stellar_asset_contract__test_direct_transfer.json index c3cc50c32..d633c277d 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_direct_transfer.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_direct_transfer.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:905379", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:905741", - " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@a160801f", + " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@4ec905a3", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:934422, mem:23221, store:3@63cd6523/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -361,7 +361,7 @@ " 359 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2003402", " 360 call bytes_copy_to_slice(Bytes(obj#197), U32(0), 32)": "", " 361 ret bytes_copy_to_slice -> Ok(())": "cpu:2003764", - " 362 ret require_auth -> Ok(Void)": "cpu:2029037, mem:56695, store:-/8@f9771da2, foot:8@d5271a0e, auth:1@331039cc/1@e94fb123", + " 362 ret require_auth -> Ok(Void)": "cpu:2029037, mem:56695, store:-/8@f9771da2, foot:8@d5271a0e, auth:1@331039cc/1@8a73b3c0", " 363 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 364 call get_ledger_sequence()": "cpu:2034572, mem:56831, store:-/-, foot:-", " 365 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -605,7 +605,7 @@ " 603 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3166374", " 604 call bytes_copy_to_slice(Bytes(obj#333), U32(0), 32)": "", " 605 ret bytes_copy_to_slice -> Ok(())": "cpu:3166736", - " 606 ret require_auth -> Ok(Void)": "cpu:3194107, mem:92810, store:-/9@6e796fd, foot:9@908c912b, auth:1@a35ed31b/1@1a02ef94", + " 606 ret require_auth -> Ok(Void)": "cpu:3194107, mem:92810, store:-/9@6e796fd, foot:9@908c912b, auth:1@a35ed31b/1@3ddbc9b3", " 607 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 608 call get_ledger_sequence()": "cpu:3199642, mem:92946, store:-/-, foot:-", " 609 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -715,7 +715,7 @@ " 713 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3933556", " 714 call bytes_copy_to_slice(Bytes(obj#401), U32(0), 32)": "", " 715 ret bytes_copy_to_slice -> Ok(())": "cpu:3933918", - " 716 ret require_auth -> Ok(Void)": "cpu:3963333, mem:109394, store:-/9@dd98b6aa, foot:10@eb572371, auth:1@161d6f39/1@22c16e2", + " 716 ret require_auth -> Ok(Void)": "cpu:3963333, mem:109394, store:-/9@dd98b6aa, foot:10@eb572371, auth:1@161d6f39/1@5941e1c2", " 717 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 718 call get_ledger_sequence()": "cpu:3969122, mem:109530, store:-/-, foot:-", " 719 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_negative_amounts_are_not_allowed.json b/soroban-env-host/observations/test__stellar_asset_contract__test_negative_amounts_are_not_allowed.json index 500efac60..818a571f1 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_negative_amounts_are_not_allowed.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_negative_amounts_are_not_allowed.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:905379", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:905741", - " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@a160801f", + " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@4ec905a3", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:934422, mem:23221, store:3@63cd6523/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -393,7 +393,7 @@ " 391 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2379184", " 392 call bytes_copy_to_slice(Bytes(obj#289), U32(0), 32)": "", " 393 ret bytes_copy_to_slice -> Ok(())": "cpu:2379546", - " 394 ret require_auth -> Ok(Void)": "cpu:2404819, mem:75393, store:-/8@237271ba, foot:8@2cb330c1, auth:1@674e20ad/1@9165e059", + " 394 ret require_auth -> Ok(Void)": "cpu:2404819, mem:75393, store:-/8@237271ba, foot:8@2cb330c1, auth:1@674e20ad/1@58036817", " 395 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 396 call get_ledger_sequence()": "cpu:2410354, mem:75529, store:-/-, foot:-", " 397 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_recording_auth_for_stellar_asset_contract.json b/soroban-env-host/observations/test__stellar_asset_contract__test_recording_auth_for_stellar_asset_contract.json index ced072613..12581e1e6 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_recording_auth_for_stellar_asset_contract.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_recording_auth_for_stellar_asset_contract.json @@ -123,7 +123,7 @@ " 121 ret obj_cmp -> Ok(0)": "cpu:349517", " 122 ret get_contract_data -> Ok(Address(obj#55))": "cpu:349878, store:3@e1791713/4@629c8fce, stk:1@302984d4", " 123 call require_auth(Address(obj#55))": "", - " 124 ret require_auth -> Ok(Void)": "cpu:373662, mem:16460, store:3@e1791713/5@db2f841d, foot:5@5fe75cd6, auth:1@a9d84fb6/1@f85e07da", + " 124 ret require_auth -> Ok(Void)": "cpu:373662, mem:16460, store:3@e1791713/5@db2f841d, foot:5@5fe75cd6, auth:1@a9d84fb6/1@c95f6f33", " 125 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 126 call get_ledger_sequence()": "cpu:378416, mem:16596, store:3@e1791713/-, foot:-", " 127 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_sac_reentry_is_not_allowed.json b/soroban-env-host/observations/test__stellar_asset_contract__test_sac_reentry_is_not_allowed.json index 5719c16be..b643b5952 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_sac_reentry_is_not_allowed.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_sac_reentry_is_not_allowed.json @@ -177,7 +177,7 @@ " 175 call create_contract(Address(obj#81), Bytes(obj#79), Bytes(obj#83))": "", " 176 call obj_cmp(Address(obj#85), Address(obj#81))": "cpu:1993606, mem:1304609, objs:-/43@946e874f, auth:1@cc99afd8/-", " 177 ret obj_cmp -> Ok(0)": "cpu:1994292", - " 178 call get_ledger_network_id()": "cpu:1994550, auth:1@cc99afd8/1@e193b238", + " 178 call get_ledger_network_id()": "cpu:1994550, auth:1@cc99afd8/1@525e5e48", " 179 ret get_ledger_network_id -> Ok(Bytes(obj#87))": "cpu:1997447, mem:1304721, objs:-/44@59d58574", " 180 ret create_contract -> Ok(Address(obj#89))": "cpu:2041404, mem:1306785, objs:-/45@432e355d, store:-/5@c934be3d, foot:5@ba1ecf84, auth:-/1@be98e771", " 181 call vec_new_from_slice(2)": " auth:-/-", @@ -263,7 +263,7 @@ " 261 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2710119", " 262 call bytes_copy_to_slice(Bytes(obj#111), U32(0), 32)": "", " 263 ret bytes_copy_to_slice -> Ok(())": "cpu:2710481", - " 264 ret require_auth -> Ok(Void)": "cpu:2734598, mem:1319616, store:3@1afe8247/6@7c2c87a6, foot:6@85eb870e, auth:1@a1bdce47/1@d361f124", + " 264 ret require_auth -> Ok(Void)": "cpu:2734598, mem:1319616, store:3@1afe8247/6@7c2c87a6, foot:6@85eb870e, auth:1@a1bdce47/1@371f34d8", " 265 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 266 call get_ledger_sequence()": "cpu:2739352, mem:1319752, store:3@1afe8247/-, foot:-", " 267 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -425,7 +425,7 @@ " 423 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3566122", " 424 call bytes_copy_to_slice(Bytes(obj#195), U32(0), 32)": "", " 425 ret bytes_copy_to_slice -> Ok(())": "cpu:3566484", - " 426 ret require_auth -> Ok(Void)": "cpu:3595801, mem:1340667, store:3@292318d6/8@67fab8b, foot:8@82c99eaa, auth:1@1d457cb/1@44747eb3", + " 426 ret require_auth -> Ok(Void)": "cpu:3595801, mem:1340667, store:3@292318d6/8@67fab8b, foot:8@82c99eaa, auth:1@1d457cb/1@eeb46bac", " 427 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 428 call get_ledger_sequence()": "cpu:3601336, mem:1340803, store:3@292318d6/-, foot:-", " 429 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -683,7 +683,7 @@ " 681 pop SAC:724937b6:transfer -> Ok(Void)": "", " 682 ret call -> Ok(Void)": " objs:8@e391cf66/189@8917b91b, store:-/10@619ed650, stk:2@9b19524f, auth:2@2edcc282/-", " 683 pop VM:ee5241cd:sym#295 -> Ok(Void)": " vm:1114112@252ef3f6/6@e2f93010", - " 684 ret require_auth -> Ok(Void)": "cpu:7645661, mem:3960304, objs:-/189@8917b91b, vm:-/-, store:-/11@cd55cf5d, foot:11@c3d14f71, stk:1@7c834a1d, auth:1@347f97d3/1@9bf1eae3", + " 684 ret require_auth -> Ok(Void)": "cpu:7645661, mem:3960304, objs:-/189@8917b91b, vm:-/-, store:-/11@cd55cf5d, foot:11@c3d14f71, stk:1@7c834a1d, auth:1@347f97d3/1@e285db9d", " 685 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 686 call get_ledger_sequence()": "cpu:7651958, mem:3960440, store:-/-, foot:-", " 687 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -865,7 +865,7 @@ " 863 call call(Address(obj#477), Symbol(transfer), Vec(obj#483))": "cpu:9795129, mem:5274374, objs:8@69b03660/242@fc2323bf, stk:2@aae8aed3", " 864 ret call -> Err(Error(Context, InvalidAction))": "cpu:9797725, mem:5274414", " 865 pop VM:ee5241cd:sym#469 -> Err(Error(Context, InvalidAction))": " vm:1114112@252ef3f6/6@e2f93010", - " 866 ret require_auth -> Err(Error(Auth, InvalidAction))": " objs:-/242@fc2323bf, vm:-/-, stk:1@cb179976, auth:1@87603a11/1@1efc6c21", + " 866 ret require_auth -> Err(Error(Auth, InvalidAction))": " objs:-/242@fc2323bf, vm:-/-, stk:1@cb179976, auth:1@87603a11/1@36c0ca74", " 867 pop SAC:724937b6:transfer -> Err(Error(Auth, InvalidAction))": "", " 868 ret call -> Err(Error(Auth, InvalidAction))": " stk:-, auth:-/-", " 869 end": "cpu:9797725, mem:5274414, prngs:-/9b4a753, objs:-/242@fc2323bf, vm:-/-, evt:4@e9680c5c, store:-/12@315a945c, foot:12@6701e5fe, stk:-, auth:-/-" diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_set_admin.json b/soroban-env-host/observations/test__stellar_asset_contract__test_set_admin.json index abd85e488..bbef6361d 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_set_admin.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_set_admin.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1014782", " 166 call bytes_copy_to_slice(Bytes(obj#91), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:1015144", - " 168 ret require_auth -> Ok(Void)": "cpu:1038309, mem:28970, store:3@db784356/7@427f9a9c, foot:7@7b60d93b, auth:1@cf4afb87/1@9455877b", + " 168 ret require_auth -> Ok(Void)": "cpu:1038309, mem:28970, store:3@db784356/7@427f9a9c, foot:7@7b60d93b, auth:1@cf4afb87/1@5f35b55a", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:1043825, mem:29106, store:3@db784356/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -605,7 +605,7 @@ " 603 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3084398", " 604 call bytes_copy_to_slice(Bytes(obj#507), U32(0), 32)": "", " 605 ret bytes_copy_to_slice -> Ok(())": "cpu:3084760", - " 606 ret require_auth -> Ok(Void)": "cpu:3110033, mem:106251, store:3@f0e3ebb5/8@9cd3e2e7, foot:8@f1741549, auth:1@2195e143/1@ecf7d79a", + " 606 ret require_auth -> Ok(Void)": "cpu:3110033, mem:106251, store:3@f0e3ebb5/8@9cd3e2e7, foot:8@f1741549, auth:1@2195e143/1@caef8db5", " 607 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 608 call get_ledger_sequence()": "cpu:3115568, mem:106387, store:3@f0e3ebb5/-, foot:-", " 609 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -771,7 +771,7 @@ " 769 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3880209", " 770 call bytes_copy_to_slice(Bytes(obj#581), U32(0), 32)": "", " 771 ret bytes_copy_to_slice -> Ok(())": "cpu:3880571", - " 772 ret require_auth -> Ok(Void)": "cpu:3908958, mem:123618, store:3@209cfad7/9@cfa4fbdd, foot:9@7bfcce82, auth:1@20d88782/1@1130c903", + " 772 ret require_auth -> Ok(Void)": "cpu:3908958, mem:123618, store:3@209cfad7/9@cfa4fbdd, foot:9@7bfcce82, auth:1@20d88782/1@865d1852", " 773 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 774 call get_ledger_sequence()": "cpu:3914493, mem:123754, store:3@209cfad7/-, foot:-", " 775 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -883,7 +883,7 @@ " 881 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4651157", " 882 call bytes_copy_to_slice(Bytes(obj#655), U32(0), 32)": "", " 883 ret bytes_copy_to_slice -> Ok(())": "cpu:4651519", - " 884 ret require_auth -> Ok(Void)": "cpu:4683004, mem:140901, store:3@9a412e1e/10@a1fe360c, foot:10@95db89d3, auth:1@976c66ec/1@7c5fb3e5", + " 884 ret require_auth -> Ok(Void)": "cpu:4683004, mem:140901, store:3@9a412e1e/10@a1fe360c, foot:10@95db89d3, auth:1@976c66ec/1@5905d010", " 885 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 886 call get_ledger_sequence()": "cpu:4689301, mem:141037, store:3@9a412e1e/-, foot:-", " 887 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1015,7 +1015,7 @@ "1013 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5448521", "1014 call bytes_copy_to_slice(Bytes(obj#731), U32(0), 32)": "", "1015 ret bytes_copy_to_slice -> Ok(())": "cpu:5448883", - "1016 ret require_auth -> Ok(Void)": "cpu:5486510, mem:158928, store:3@2df35eb5/11@a1f31683, foot:11@e993ca43, auth:1@bb8c14cf/1@8be7fd85", + "1016 ret require_auth -> Ok(Void)": "cpu:5486510, mem:158928, store:3@2df35eb5/11@a1f31683, foot:11@e993ca43, auth:1@bb8c14cf/1@522c9e96", "1017 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1018 call get_ledger_sequence()": "cpu:5492807, mem:159064, store:3@2df35eb5/-, foot:-", "1019 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1119,7 +1119,7 @@ "1117 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6220135", "1118 call bytes_copy_to_slice(Bytes(obj#805), U32(0), 32)": "", "1119 ret bytes_copy_to_slice -> Ok(())": "cpu:6220497", - "1120 ret require_auth -> Ok(Void)": "cpu:6265286, mem:176371, store:3@b9d43ace/12@f4c2a3e8, foot:12@898eb5e7, auth:1@d385da27/1@e9320c0d", + "1120 ret require_auth -> Ok(Void)": "cpu:6265286, mem:176371, store:3@b9d43ace/12@f4c2a3e8, foot:12@898eb5e7, auth:1@d385da27/1@2a1b7882", "1121 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1122 call get_ledger_sequence()": "cpu:6271583, mem:176507, store:3@b9d43ace/-, foot:-", "1123 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1229,7 +1229,7 @@ "1227 ret verify_sig_ed25519 -> Ok(Void)": "cpu:7063992", "1228 call bytes_copy_to_slice(Bytes(obj#873), U32(0), 32)": "", "1229 ret bytes_copy_to_slice -> Ok(())": "cpu:7064354", - "1230 ret require_auth -> Ok(Void)": "cpu:7103091, mem:197942, store:3@c99d7521/13@1318f37f, foot:13@a79b7d1a, auth:1@1177f489/1@4c3516ab", + "1230 ret require_auth -> Ok(Void)": "cpu:7103091, mem:197942, store:3@c99d7521/13@1318f37f, foot:13@a79b7d1a, auth:1@1177f489/1@bff56659", "1231 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1232 call get_ledger_sequence()": "cpu:7109388, mem:198078, store:3@c99d7521/-, foot:-", "1233 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_authorization.json b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_authorization.json index 6e465d613..7c215378a 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_authorization.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_authorization.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:905379", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:905741", - " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@a160801f", + " 168 ret require_auth -> Ok(Void)": "cpu:928906, mem:23085, store:3@63cd6523/7@427f9a9c, foot:7@7b60d93b, auth:1@bd72e8ef/1@4ec905a3", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:934422, mem:23221, store:3@63cd6523/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -311,7 +311,7 @@ " 309 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1689251", " 310 call bytes_copy_to_slice(Bytes(obj#135), U32(0), 32)": "", " 311 ret bytes_copy_to_slice -> Ok(())": "cpu:1689613", - " 312 ret require_auth -> Ok(Void)": "cpu:1716918, mem:40374, store:3@cfe9ab5/8@dced60d, foot:8@4557dc3a, auth:1@c4607961/1@a2380ea7", + " 312 ret require_auth -> Ok(Void)": "cpu:1716918, mem:40374, store:3@cfe9ab5/8@dced60d, foot:8@4557dc3a, auth:1@c4607961/1@e5042c", " 313 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 314 call get_ledger_sequence()": "cpu:1722453, mem:40510, store:3@cfe9ab5/-, foot:-", " 315 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -491,7 +491,7 @@ " 489 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2653122", " 490 call bytes_copy_to_slice(Bytes(obj#241), U32(0), 32)": "", " 491 ret bytes_copy_to_slice -> Ok(())": "cpu:2653484", - " 492 ret require_auth -> Ok(Void)": "cpu:2687967, mem:66239, store:3@20c0b48c/9@f01c740f, foot:9@3ba56d3a, auth:1@e23cc1/1@7ea4778c", + " 492 ret require_auth -> Ok(Void)": "cpu:2687967, mem:66239, store:3@20c0b48c/9@f01c740f, foot:9@3ba56d3a, auth:1@e23cc1/1@dba45ab4", " 493 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 494 call get_ledger_sequence()": "cpu:2693502, mem:66375, store:3@20c0b48c/-, foot:-", " 495 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -649,7 +649,7 @@ " 647 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3594298", " 648 call bytes_copy_to_slice(Bytes(obj#351), U32(0), 32)": "", " 649 ret bytes_copy_to_slice -> Ok(())": "cpu:3594660", - " 650 ret require_auth -> Ok(Void)": "cpu:3625129, mem:91903, store:-/10@5e6bb07f, foot:10@dda87d60, auth:1@ede6cc1f/1@f590d784", + " 650 ret require_auth -> Ok(Void)": "cpu:3625129, mem:91903, store:-/10@5e6bb07f, foot:10@dda87d60, auth:1@ede6cc1f/1@65d775f", " 651 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 652 call get_ledger_sequence()": "cpu:3631426, mem:92039, store:-/-, foot:-", " 653 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -737,7 +737,7 @@ " 735 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4351597", " 736 call bytes_copy_to_slice(Bytes(obj#417), U32(0), 32)": "", " 737 ret bytes_copy_to_slice -> Ok(())": "cpu:4351959", - " 738 ret require_auth -> Ok(Void)": "cpu:4383458, mem:108517, store:-/10@7f99145f, foot:11@b6b8ac34, auth:1@5e936f28/1@4d6d5936", + " 738 ret require_auth -> Ok(Void)": "cpu:4383458, mem:108517, store:-/10@7f99145f, foot:11@b6b8ac34, auth:1@5e936f28/1@ed13d3ef", " 739 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 740 call get_ledger_sequence()": "cpu:4389755, mem:108653, store:-/-, foot:-", " 741 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -889,7 +889,7 @@ " 887 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5180372", " 888 call bytes_copy_to_slice(Bytes(obj#485), U32(0), 32)": "", " 889 ret bytes_copy_to_slice -> Ok(())": "cpu:5180734", - " 890 ret require_auth -> Ok(Void)": "cpu:5219865, mem:127386, store:3@33a29ceb/10@a911ff86, foot:12@10565710, auth:1@3cf1d715/1@3b8a159a", + " 890 ret require_auth -> Ok(Void)": "cpu:5219865, mem:127386, store:3@33a29ceb/10@a911ff86, foot:12@10565710, auth:1@3cf1d715/1@cb6878d3", " 891 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 892 call get_ledger_sequence()": "cpu:5226162, mem:127522, store:3@33a29ceb/-, foot:-", " 893 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1029,7 +1029,7 @@ "1027 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6117282", "1028 call bytes_copy_to_slice(Bytes(obj#593), U32(0), 32)": "", "1029 ret bytes_copy_to_slice -> Ok(())": "cpu:6117644", - "1030 ret require_auth -> Ok(Void)": "cpu:6154787, mem:153212, store:-/11@8922f34e, foot:13@70f17d6d, auth:1@47f626d3/1@dd57d3c0", + "1030 ret require_auth -> Ok(Void)": "cpu:6154787, mem:153212, store:-/11@8922f34e, foot:13@70f17d6d, auth:1@47f626d3/1@5e85a9c", "1031 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1032 call get_ledger_sequence()": "cpu:6161084, mem:153348, store:-/-, foot:-", "1033 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1193,7 +1193,7 @@ "1191 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6950859", "1192 call bytes_copy_to_slice(Bytes(obj#669), U32(0), 32)": "", "1193 ret bytes_copy_to_slice -> Ok(())": "cpu:6951221", - "1194 ret require_auth -> Ok(Void)": "cpu:6989938, mem:173417, store:-/12@d386d17c, foot:14@2e59db26, auth:1@f37696ea/1@ac401c18", + "1194 ret require_auth -> Ok(Void)": "cpu:6989938, mem:173417, store:-/12@d386d17c, foot:14@2e59db26, auth:1@f37696ea/1@756aa61f", "1195 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1196 call get_ledger_sequence()": "cpu:6996235, mem:173553, store:-/-, foot:-", "1197 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_simple.json b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_simple.json index e9a713c9e..6044d87b6 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_simple.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_simple.json @@ -101,7 +101,7 @@ " 99 ret verify_sig_ed25519 -> Ok(Void)": "cpu:779621", " 100 call bytes_copy_to_slice(Bytes(obj#51), U32(0), 32)": "", " 101 ret bytes_copy_to_slice -> Ok(())": "cpu:779983", - " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@bbbbe8fe, foot:4@1a7ed2, auth:1@a8324911/1@d449fb38", + " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@bbbbe8fe, foot:4@1a7ed2, auth:1@a8324911/1@5ade9f17", " 103 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 104 call get_ledger_sequence()": "cpu:806448, mem:16184, store:-/-, foot:-", " 105 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -183,7 +183,7 @@ " 181 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1485615", " 182 call bytes_copy_to_slice(Bytes(obj#107), U32(0), 32)": "", " 183 ret bytes_copy_to_slice -> Ok(())": "cpu:1485977", - " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@39920a36, foot:5@e03e9b03, auth:1@42737dea/1@6e17de2f", + " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@39920a36, foot:5@e03e9b03, auth:1@42737dea/1@47940af5", " 185 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 186 call get_ledger_sequence()": "cpu:1513984, mem:28892, store:-/-, foot:-", " 187 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -295,7 +295,7 @@ " 293 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2242190", " 294 call bytes_copy_to_slice(Bytes(obj#171), U32(0), 32)": "", " 295 ret bytes_copy_to_slice -> Ok(())": "cpu:2242552", - " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@41e65b4, foot:6@b87c4b3, auth:1@739c82d7/1@11a2d07f", + " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@41e65b4, foot:6@b87c4b3, auth:1@739c82d7/1@d17f3f5e", " 297 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 298 call get_ledger_sequence()": "cpu:2271639, mem:43919, store:-/-, foot:-", " 299 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -415,7 +415,7 @@ " 413 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3005111", " 414 call bytes_copy_to_slice(Bytes(obj#237), U32(0), 32)": "", " 415 ret bytes_copy_to_slice -> Ok(())": "cpu:3005473", - " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@8a4514d, foot:8@f0458289, auth:1@99c13a6e/1@5e51a64b", + " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@8a4514d, foot:8@f0458289, auth:1@99c13a6e/1@65ef92e", " 417 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 418 call get_ledger_sequence()": "cpu:3040001, mem:59941, store:-/-, foot:-", " 419 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -525,7 +525,7 @@ " 523 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3748256", " 524 call bytes_copy_to_slice(Bytes(obj#301), U32(0), 32)": "", " 525 ret bytes_copy_to_slice -> Ok(())": "cpu:3748618", - " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@4c4e4419, foot:9@776d1cbd, auth:1@b994a5f9/1@78978e1e", + " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@4c4e4419, foot:9@776d1cbd, auth:1@b994a5f9/1@1e905e60", " 527 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 528 call get_ledger_sequence()": "cpu:3784180, mem:74481, store:-/-, foot:-", " 529 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_large_values.json b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_large_values.json index 8f86993b3..d0a1267aa 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_large_values.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_large_values.json @@ -109,7 +109,7 @@ " 107 ret verify_sig_ed25519 -> Ok(Void)": "cpu:784207", " 108 call bytes_copy_to_slice(Bytes(obj#53), U32(0), 32)": "", " 109 ret bytes_copy_to_slice -> Ok(())": "cpu:784569", - " 110 ret require_auth -> Ok(Void)": "cpu:805518, mem:16176, store:-/4@8e4a4390, foot:4@1a7ed2, auth:1@5bc831ac/1@f3d1106f", + " 110 ret require_auth -> Ok(Void)": "cpu:805518, mem:16176, store:-/4@8e4a4390, foot:4@1a7ed2, auth:1@5bc831ac/1@bf28fd84", " 111 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 112 call get_ledger_sequence()": "cpu:811034, mem:16312, store:-/-, foot:-", " 113 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -199,7 +199,7 @@ " 197 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1494787", " 198 call bytes_copy_to_slice(Bytes(obj#113), U32(0), 32)": "", " 199 ret bytes_copy_to_slice -> Ok(())": "cpu:1495149", - " 200 ret require_auth -> Ok(Void)": "cpu:1517640, mem:29012, store:-/4@98b15aec, foot:5@e03e9b03, auth:1@7787e222/1@d3ad6523", + " 200 ret require_auth -> Ok(Void)": "cpu:1517640, mem:29012, store:-/4@98b15aec, foot:5@e03e9b03, auth:1@7787e222/1@9a4da83b", " 201 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 202 call get_ledger_sequence()": "cpu:1523156, mem:29148, store:-/-, foot:-", " 203 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -321,7 +321,7 @@ " 319 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2257305", " 320 call bytes_copy_to_slice(Bytes(obj#183), U32(0), 32)": "", " 321 ret bytes_copy_to_slice -> Ok(())": "cpu:2257667", - " 322 ret require_auth -> Ok(Void)": "cpu:2281238, mem:44231, store:-/5@ecc58d5c, foot:6@b87c4b3, auth:1@9fc383ca/1@b2c677e1", + " 322 ret require_auth -> Ok(Void)": "cpu:2281238, mem:44231, store:-/5@ecc58d5c, foot:6@b87c4b3, auth:1@9fc383ca/1@12ab5de1", " 323 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 324 call get_ledger_sequence()": "cpu:2286754, mem:44367, store:-/-, foot:-", " 325 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -435,7 +435,7 @@ " 433 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3016997", " 434 call bytes_copy_to_slice(Bytes(obj#251), U32(0), 32)": "", " 435 ret bytes_copy_to_slice -> Ok(())": "cpu:3017359", - " 436 ret require_auth -> Ok(Void)": "cpu:3045606, mem:60189, store:-/7@a00cdd88, foot:8@f0458289, auth:1@fab8d4b7/1@cae41c34", + " 436 ret require_auth -> Ok(Void)": "cpu:3045606, mem:60189, store:-/7@a00cdd88, foot:8@f0458289, auth:1@fab8d4b7/1@92fe2f67", " 437 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 438 call get_ledger_sequence()": "cpu:3051887, mem:60325, store:-/-, foot:-", " 439 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -537,7 +537,7 @@ " 535 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3755556", " 536 call bytes_copy_to_slice(Bytes(obj#311), U32(0), 32)": "", " 537 ret bytes_copy_to_slice -> Ok(())": "cpu:3755918", - " 538 ret require_auth -> Ok(Void)": "cpu:3785199, mem:74601, store:-/7@67476826, foot:9@776d1cbd, auth:1@e72387fa/1@19fd44cf", + " 538 ret require_auth -> Ok(Void)": "cpu:3785199, mem:74601, store:-/7@67476826, foot:9@776d1cbd, auth:1@e72387fa/1@5e09b5b8", " 539 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 540 call get_ledger_sequence()": "cpu:3791480, mem:74737, store:-/-, foot:-", " 541 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json index 12fb84f38..2155ae51c 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_liabilities.json @@ -101,7 +101,7 @@ " 99 ret verify_sig_ed25519 -> Ok(Void)": "cpu:779621", " 100 call bytes_copy_to_slice(Bytes(obj#51), U32(0), 32)": "", " 101 ret bytes_copy_to_slice -> Ok(())": "cpu:779983", - " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@766625f8, foot:4@1a7ed2, auth:1@a8324911/1@2e49aa71", + " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@766625f8, foot:4@1a7ed2, auth:1@a8324911/1@bf81e06", " 103 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 104 call get_ledger_sequence()": "cpu:806448, mem:16184, store:-/-, foot:-", " 105 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -183,7 +183,7 @@ " 181 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1485615", " 182 call bytes_copy_to_slice(Bytes(obj#107), U32(0), 32)": "", " 183 ret bytes_copy_to_slice -> Ok(())": "cpu:1485977", - " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@7e5ef9af, foot:5@e03e9b03, auth:1@42737dea/1@1619f73b", + " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@7e5ef9af, foot:5@e03e9b03, auth:1@42737dea/1@4022dcdd", " 185 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 186 call get_ledger_sequence()": "cpu:1513984, mem:28892, store:-/-, foot:-", " 187 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -295,7 +295,7 @@ " 293 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2242190", " 294 call bytes_copy_to_slice(Bytes(obj#171), U32(0), 32)": "", " 295 ret bytes_copy_to_slice -> Ok(())": "cpu:2242552", - " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@7af92ccd, foot:6@b87c4b3, auth:1@739c82d7/1@5584b200", + " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@7af92ccd, foot:6@b87c4b3, auth:1@739c82d7/1@6da94441", " 297 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 298 call get_ledger_sequence()": "cpu:2271639, mem:43919, store:-/-, foot:-", " 299 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -415,7 +415,7 @@ " 413 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3005111", " 414 call bytes_copy_to_slice(Bytes(obj#237), U32(0), 32)": "", " 415 ret bytes_copy_to_slice -> Ok(())": "cpu:3005473", - " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@2d93d78f, foot:8@f0458289, auth:1@99c13a6e/1@5e51a64b", + " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@2d93d78f, foot:8@f0458289, auth:1@99c13a6e/1@65ef92e", " 417 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 418 call get_ledger_sequence()": "cpu:3040001, mem:59941, store:-/-, foot:-", " 419 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -525,7 +525,7 @@ " 523 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3748256", " 524 call bytes_copy_to_slice(Bytes(obj#301), U32(0), 32)": "", " 525 ret bytes_copy_to_slice -> Ok(())": "cpu:3748618", - " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@25965d02, foot:9@776d1cbd, auth:1@b994a5f9/1@78978e1e", + " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@25965d02, foot:9@776d1cbd, auth:1@b994a5f9/1@1e905e60", " 527 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 528 call get_ledger_sequence()": "cpu:3784180, mem:74481, store:-/-, foot:-", " 529 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships.json b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships.json index 80b3fc44e..090d09a3c 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships.json @@ -101,7 +101,7 @@ " 99 ret verify_sig_ed25519 -> Ok(Void)": "cpu:779621", " 100 call bytes_copy_to_slice(Bytes(obj#51), U32(0), 32)": "", " 101 ret bytes_copy_to_slice -> Ok(())": "cpu:779983", - " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@6eb91c9b, foot:4@1a7ed2, auth:1@a8324911/1@b404a3c8", + " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@6eb91c9b, foot:4@1a7ed2, auth:1@a8324911/1@2f118334", " 103 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 104 call get_ledger_sequence()": "cpu:806448, mem:16184, store:-/-, foot:-", " 105 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -183,7 +183,7 @@ " 181 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1485615", " 182 call bytes_copy_to_slice(Bytes(obj#107), U32(0), 32)": "", " 183 ret bytes_copy_to_slice -> Ok(())": "cpu:1485977", - " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@64b4cdc5, foot:5@e03e9b03, auth:1@42737dea/1@bb1c4ae6", + " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@64b4cdc5, foot:5@e03e9b03, auth:1@42737dea/1@2f95471d", " 185 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 186 call get_ledger_sequence()": "cpu:1513984, mem:28892, store:-/-, foot:-", " 187 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -295,7 +295,7 @@ " 293 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2242190", " 294 call bytes_copy_to_slice(Bytes(obj#171), U32(0), 32)": "", " 295 ret bytes_copy_to_slice -> Ok(())": "cpu:2242552", - " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@b1c2ef9, foot:6@b87c4b3, auth:1@739c82d7/1@61723beb", + " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@b1c2ef9, foot:6@b87c4b3, auth:1@739c82d7/1@78ef6f7e", " 297 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 298 call get_ledger_sequence()": "cpu:2271639, mem:43919, store:-/-, foot:-", " 299 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -415,7 +415,7 @@ " 413 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3005111", " 414 call bytes_copy_to_slice(Bytes(obj#237), U32(0), 32)": "", " 415 ret bytes_copy_to_slice -> Ok(())": "cpu:3005473", - " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@70294410, foot:8@f0458289, auth:1@99c13a6e/1@5e51a64b", + " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@70294410, foot:8@f0458289, auth:1@99c13a6e/1@65ef92e", " 417 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 418 call get_ledger_sequence()": "cpu:3040001, mem:59941, store:-/-, foot:-", " 419 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -525,7 +525,7 @@ " 523 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3748256", " 524 call bytes_copy_to_slice(Bytes(obj#301), U32(0), 32)": "", " 525 ret bytes_copy_to_slice -> Ok(())": "cpu:3748618", - " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@838d579, foot:9@776d1cbd, auth:1@b994a5f9/1@78978e1e", + " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@838d579, foot:9@776d1cbd, auth:1@b994a5f9/1@1e905e60", " 527 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 528 call get_ledger_sequence()": "cpu:3784180, mem:74481, store:-/-, foot:-", " 529 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships_and_liabilities.json b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships_and_liabilities.json index 837091d96..f774f5017 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships_and_liabilities.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_stellar_asset_contract_classic_balance_boundaries_with_sponsorships_and_liabilities.json @@ -101,7 +101,7 @@ " 99 ret verify_sig_ed25519 -> Ok(Void)": "cpu:779621", " 100 call bytes_copy_to_slice(Bytes(obj#51), U32(0), 32)": "", " 101 ret bytes_copy_to_slice -> Ok(())": "cpu:779983", - " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@f2acdf10, foot:4@1a7ed2, auth:1@a8324911/1@2e49aa71", + " 102 ret require_auth -> Ok(Void)": "cpu:800932, mem:16048, store:-/4@f2acdf10, foot:4@1a7ed2, auth:1@a8324911/1@bf81e06", " 103 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 104 call get_ledger_sequence()": "cpu:806448, mem:16184, store:-/-, foot:-", " 105 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -183,7 +183,7 @@ " 181 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1485615", " 182 call bytes_copy_to_slice(Bytes(obj#107), U32(0), 32)": "", " 183 ret bytes_copy_to_slice -> Ok(())": "cpu:1485977", - " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@7608ab44, foot:5@e03e9b03, auth:1@42737dea/1@1619f73b", + " 184 ret require_auth -> Ok(Void)": "cpu:1508468, mem:28756, store:-/4@7608ab44, foot:5@e03e9b03, auth:1@42737dea/1@4022dcdd", " 185 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 186 call get_ledger_sequence()": "cpu:1513984, mem:28892, store:-/-, foot:-", " 187 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -295,7 +295,7 @@ " 293 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2242190", " 294 call bytes_copy_to_slice(Bytes(obj#171), U32(0), 32)": "", " 295 ret bytes_copy_to_slice -> Ok(())": "cpu:2242552", - " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@415026b9, foot:6@b87c4b3, auth:1@739c82d7/1@5584b200", + " 296 ret require_auth -> Ok(Void)": "cpu:2266123, mem:43783, store:-/5@415026b9, foot:6@b87c4b3, auth:1@739c82d7/1@6da94441", " 297 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 298 call get_ledger_sequence()": "cpu:2271639, mem:43919, store:-/-, foot:-", " 299 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -415,7 +415,7 @@ " 413 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3005111", " 414 call bytes_copy_to_slice(Bytes(obj#237), U32(0), 32)": "", " 415 ret bytes_copy_to_slice -> Ok(())": "cpu:3005473", - " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@ec7eb102, foot:8@f0458289, auth:1@99c13a6e/1@5e51a64b", + " 416 ret require_auth -> Ok(Void)": "cpu:3033720, mem:59805, store:-/7@ec7eb102, foot:8@f0458289, auth:1@99c13a6e/1@65ef92e", " 417 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 418 call get_ledger_sequence()": "cpu:3040001, mem:59941, store:-/-, foot:-", " 419 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -525,7 +525,7 @@ " 523 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3748256", " 524 call bytes_copy_to_slice(Bytes(obj#301), U32(0), 32)": "", " 525 ret bytes_copy_to_slice -> Ok(())": "cpu:3748618", - " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@e1beb2c5, foot:9@776d1cbd, auth:1@b994a5f9/1@78978e1e", + " 526 ret require_auth -> Ok(Void)": "cpu:3777899, mem:74345, store:-/7@e1beb2c5, foot:9@776d1cbd, auth:1@b994a5f9/1@1e905e60", " 527 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 528 call get_ledger_sequence()": "cpu:3784180, mem:74481, store:-/-, foot:-", " 529 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_transfer_with_allowance.json b/soroban-env-host/observations/test__stellar_asset_contract__test_transfer_with_allowance.json index c07b9614c..8e81ac5b5 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_transfer_with_allowance.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_transfer_with_allowance.json @@ -167,7 +167,7 @@ " 165 ret verify_sig_ed25519 -> Ok(Void)": "cpu:928007", " 166 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 167 ret bytes_copy_to_slice -> Ok(())": "cpu:928369", - " 168 ret require_auth -> Ok(Void)": "cpu:953728, mem:25324, store:3@63cd6523/9@e1473bf9, foot:9@c45b22c5, auth:1@bd72e8ef/1@a160801f", + " 168 ret require_auth -> Ok(Void)": "cpu:953728, mem:25324, store:3@63cd6523/9@e1473bf9, foot:9@c45b22c5, auth:1@bd72e8ef/1@4ec905a3", " 169 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 170 call get_ledger_sequence()": "cpu:959263, mem:25460, store:3@63cd6523/-, foot:-", " 171 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -379,7 +379,7 @@ " 377 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2191539", " 378 call bytes_copy_to_slice(Bytes(obj#209), U32(0), 32)": "", " 379 ret bytes_copy_to_slice -> Ok(())": "cpu:2191901", - " 380 ret require_auth -> Ok(Void)": "cpu:2220404, mem:69613, store:-/11@9ef8934d, foot:11@1f710c30, auth:1@23fa22ce/1@ff6d0e95", + " 380 ret require_auth -> Ok(Void)": "cpu:2220404, mem:69613, store:-/11@9ef8934d, foot:11@1f710c30, auth:1@23fa22ce/1@6e31ca6c", " 381 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 382 call get_ledger_sequence()": "cpu:2225939, mem:69749, store:-/-, foot:-", " 383 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -521,7 +521,7 @@ " 519 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3244840", " 520 call bytes_copy_to_slice(Bytes(obj#313), U32(0), 32)": "", " 521 ret bytes_copy_to_slice -> Ok(())": "cpu:3245202", - " 522 ret require_auth -> Ok(Void)": "cpu:3275787, mem:102214, store:-/12@53b261d4, foot:12@3fc35a40, auth:1@c0513871/1@16d185c5", + " 522 ret require_auth -> Ok(Void)": "cpu:3275787, mem:102214, store:-/12@53b261d4, foot:12@3fc35a40, auth:1@c0513871/1@72012740", " 523 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 524 call get_ledger_sequence()": "cpu:3281322, mem:102350, store:-/-, foot:-", " 525 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -891,7 +891,7 @@ " 889 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4965285", " 890 call bytes_copy_to_slice(Bytes(obj#535), U32(0), 32)": "", " 891 ret bytes_copy_to_slice -> Ok(())": "cpu:4965647", - " 892 ret require_auth -> Ok(Void)": "cpu:5001356, mem:166694, store:-/13@e5ca4532, foot:13@d40f8ee1, auth:1@93838c8/1@7bf66f21", + " 892 ret require_auth -> Ok(Void)": "cpu:5001356, mem:166694, store:-/13@e5ca4532, foot:13@d40f8ee1, auth:1@93838c8/1@b1360f1a", " 893 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 894 call get_ledger_sequence()": "cpu:5006891, mem:166830, store:-/-, foot:-", " 895 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -965,7 +965,7 @@ " 963 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5728038", " 964 call bytes_copy_to_slice(Bytes(obj#591), U32(0), 32)": "", " 965 ret bytes_copy_to_slice -> Ok(())": "cpu:5728400", - " 966 ret require_auth -> Ok(Void)": "cpu:5763613, mem:184512, store:-/13@8db06db9, foot:14@b82d66b0, auth:1@8d11292f/1@cc02bb91", + " 966 ret require_auth -> Ok(Void)": "cpu:5763613, mem:184512, store:-/13@8db06db9, foot:14@b82d66b0, auth:1@8d11292f/1@bd54bfe0", " 967 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 968 call get_ledger_sequence()": "cpu:5769402, mem:184648, store:-/-, foot:-", " 969 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1093,7 +1093,7 @@ "1091 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6772846", "1092 call bytes_copy_to_slice(Bytes(obj#693), U32(0), 32)": "", "1093 ret bytes_copy_to_slice -> Ok(())": "cpu:6773208", - "1094 ret require_auth -> Ok(Void)": "cpu:6815075, mem:216605, store:-/14@fa54dd41, foot:15@ade4c3c1, auth:1@159ab98c/1@b2a7c65f", + "1094 ret require_auth -> Ok(Void)": "cpu:6815075, mem:216605, store:-/14@fa54dd41, foot:15@ade4c3c1, auth:1@159ab98c/1@4736e75", "1095 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1096 call get_ledger_sequence()": "cpu:6821626, mem:216741, store:-/-, foot:-", "1097 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1215,7 +1215,7 @@ "1213 ret verify_sig_ed25519 -> Ok(Void)": "cpu:7700517", "1214 call bytes_copy_to_slice(Bytes(obj#785), U32(0), 32)": "", "1215 ret bytes_copy_to_slice -> Ok(())": "cpu:7700879", - "1216 ret require_auth -> Ok(Void)": "cpu:7744834, mem:241387, store:-/15@9cb58865, foot:16@55d21a0, auth:1@9d845004/1@dd2046e9", + "1216 ret require_auth -> Ok(Void)": "cpu:7744834, mem:241387, store:-/15@9cb58865, foot:16@55d21a0, auth:1@9d845004/1@5115c1c3", "1217 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1218 call get_ledger_sequence()": "cpu:7751896, mem:241523, store:-/-, foot:-", "1219 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1585,7 +1585,7 @@ "1583 ret verify_sig_ed25519 -> Ok(Void)": "cpu:9470564", "1584 call bytes_copy_to_slice(Bytes(obj#1007), U32(0), 32)": "", "1585 ret bytes_copy_to_slice -> Ok(())": "cpu:9470926", - "1586 ret require_auth -> Ok(Void)": "cpu:9518003, mem:308107, store:-/16@1e611b2b, foot:17@6d8dfc51, auth:1@f0cab7ed/1@32a7c0c7", + "1586 ret require_auth -> Ok(Void)": "cpu:9518003, mem:308107, store:-/16@1e611b2b, foot:17@6d8dfc51, auth:1@f0cab7ed/1@5204849d", "1587 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1588 call get_ledger_sequence()": "cpu:9525083, mem:308243, store:-/-, foot:-", "1589 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_trustline_auth.json b/soroban-env-host/observations/test__stellar_asset_contract__test_trustline_auth.json index c4342e8d4..777adbc5c 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_trustline_auth.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_trustline_auth.json @@ -147,7 +147,7 @@ " 145 ret verify_sig_ed25519 -> Ok(Void)": "cpu:856385", " 146 call bytes_copy_to_slice(Bytes(obj#61), U32(0), 32)": "", " 147 ret bytes_copy_to_slice -> Ok(())": "cpu:856747", - " 148 ret require_auth -> Ok(Void)": "cpu:876606, mem:19211, store:3@63cd6523/3@25793e5e, foot:3@3c3deef7, auth:1@2fb0b57d/1@e3df8082", + " 148 ret require_auth -> Ok(Void)": "cpu:876606, mem:19211, store:3@63cd6523/3@25793e5e, foot:3@3c3deef7, auth:1@2fb0b57d/1@eab2e100", " 149 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 150 call get_ledger_sequence()": "cpu:882101, mem:19347, store:3@63cd6523/-, foot:-", " 151 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -257,7 +257,7 @@ " 255 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1689060", " 256 call bytes_copy_to_slice(Bytes(obj#129), U32(0), 32)": "", " 257 ret bytes_copy_to_slice -> Ok(())": "cpu:1689422", - " 258 ret require_auth -> Ok(Void)": "cpu:1717603, mem:40141, store:3@fbc5e4f6/6@defc6a58, foot:6@9f5b00ff, auth:1@4f356130/1@1da0cf29", + " 258 ret require_auth -> Ok(Void)": "cpu:1717603, mem:40141, store:3@fbc5e4f6/6@defc6a58, foot:6@9f5b00ff, auth:1@4f356130/1@1f9627d6", " 259 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 260 call get_ledger_sequence()": "cpu:1723119, mem:40277, store:3@fbc5e4f6/-, foot:-", " 261 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -411,7 +411,7 @@ " 409 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2610991", " 410 call bytes_copy_to_slice(Bytes(obj#235), U32(0), 32)": "", " 411 ret bytes_copy_to_slice -> Ok(())": "cpu:2611353", - " 412 ret require_auth -> Ok(Void)": "cpu:2638562, mem:64347, store:-/7@a51ef846, foot:7@90c99d80, auth:1@3f2fa4e7/1@80df6548", + " 412 ret require_auth -> Ok(Void)": "cpu:2638562, mem:64347, store:-/7@a51ef846, foot:7@90c99d80, auth:1@3f2fa4e7/1@5843f14b", " 413 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 414 call get_ledger_sequence()": "cpu:2644840, mem:64483, store:-/-, foot:-", " 415 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -681,7 +681,7 @@ " 679 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3800053", " 680 call bytes_copy_to_slice(Bytes(obj#371), U32(0), 32)": "", " 681 ret bytes_copy_to_slice -> Ok(())": "cpu:3800415", - " 682 ret require_auth -> Ok(Void)": "cpu:3833796, mem:99617, store:3@4feaf6d5/8@c3e25d5a, foot:8@38dec775, auth:1@296a37d8/1@290ade9d", + " 682 ret require_auth -> Ok(Void)": "cpu:3833796, mem:99617, store:3@4feaf6d5/8@c3e25d5a, foot:8@38dec775, auth:1@296a37d8/1@379b4fe1", " 683 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 684 call get_ledger_sequence()": "cpu:3840093, mem:99753, store:3@4feaf6d5/-, foot:-", " 685 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -779,7 +779,7 @@ " 777 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4570110", " 778 call bytes_copy_to_slice(Bytes(obj#439), U32(0), 32)": "", " 779 ret bytes_copy_to_slice -> Ok(())": "cpu:4570472", - " 780 ret require_auth -> Ok(Void)": "cpu:4605903, mem:115985, store:3@b71ab7da/8@b154b730, foot:9@40391823, auth:1@1474f37e/1@d81ca118", + " 780 ret require_auth -> Ok(Void)": "cpu:4605903, mem:115985, store:3@b71ab7da/8@b154b730, foot:9@40391823, auth:1@1474f37e/1@81307868", " 781 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 782 call get_ledger_sequence()": "cpu:4612200, mem:116121, store:3@b71ab7da/-, foot:-", " 783 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -891,7 +891,7 @@ " 889 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5335700", " 890 call bytes_copy_to_slice(Bytes(obj#517), U32(0), 32)": "", " 891 ret bytes_copy_to_slice -> Ok(())": "cpu:5336062", - " 892 ret require_auth -> Ok(Void)": "cpu:5369521, mem:132629, store:-/9@bdbbeaa4, foot:10@661c659f, auth:1@ec87f463/1@70262f42", + " 892 ret require_auth -> Ok(Void)": "cpu:5369521, mem:132629, store:-/9@bdbbeaa4, foot:10@661c659f, auth:1@ec87f463/1@8fd021c2", " 893 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 894 call get_ledger_sequence()": "cpu:5375818, mem:132765, store:-/-, foot:-", " 895 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1009,7 +1009,7 @@ "1007 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6129871", "1008 call bytes_copy_to_slice(Bytes(obj#581), U32(0), 32)": "", "1009 ret bytes_copy_to_slice -> Ok(())": "cpu:6130233", - "1010 ret require_auth -> Ok(Void)": "cpu:6167770, mem:149762, store:3@209cfad7/9@c44220c8, foot:11@c88f7d9a, auth:1@a74e3e9b/1@d4c32d3a", + "1010 ret require_auth -> Ok(Void)": "cpu:6167770, mem:149762, store:3@209cfad7/9@c44220c8, foot:11@c88f7d9a, auth:1@a74e3e9b/1@5920ecd0", "1011 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1012 call get_ledger_sequence()": "cpu:6174067, mem:149898, store:3@209cfad7/-, foot:-", "1013 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1111,7 +1111,7 @@ "1109 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6895267", "1110 call bytes_copy_to_slice(Bytes(obj#649), U32(0), 32)": "", "1111 ret bytes_copy_to_slice -> Ok(())": "cpu:6895629", - "1112 ret require_auth -> Ok(Void)": "cpu:6934702, mem:165752, store:3@31f8724/9@21c656d7, foot:12@a771d2d3, auth:1@12e0c2ba/1@227bcfd8", + "1112 ret require_auth -> Ok(Void)": "cpu:6934702, mem:165752, store:3@31f8724/9@21c656d7, foot:12@a771d2d3, auth:1@12e0c2ba/1@41ff86e1", "1113 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1114 call get_ledger_sequence()": "cpu:6940999, mem:165888, store:3@31f8724/-, foot:-", "1115 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1205,7 +1205,7 @@ "1203 ret verify_sig_ed25519 -> Ok(Void)": "cpu:7655740", "1204 call bytes_copy_to_slice(Bytes(obj#725), U32(0), 32)": "", "1205 ret bytes_copy_to_slice -> Ok(())": "cpu:7656102", - "1206 ret require_auth -> Ok(Void)": "cpu:7696241, mem:182862, store:-/10@98f0c962, foot:13@4719214e, auth:1@d2236da6/1@5bd2ea40", + "1206 ret require_auth -> Ok(Void)": "cpu:7696241, mem:182862, store:-/10@98f0c962, foot:13@4719214e, auth:1@d2236da6/1@acef182e", "1207 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1208 call get_ledger_sequence()": "cpu:7702538, mem:182998, store:-/-, foot:-", "1209 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1321,7 +1321,7 @@ "1319 ret verify_sig_ed25519 -> Ok(Void)": "cpu:8572151", "1320 call bytes_copy_to_slice(Bytes(obj#813), U32(0), 32)": "", "1321 ret bytes_copy_to_slice -> Ok(())": "cpu:8572513", - "1322 ret require_auth -> Ok(Void)": "cpu:8617826, mem:207866, store:-/12@acc391b8, foot:15@9342837, auth:1@5f63b168/1@6ea945e7", + "1322 ret require_auth -> Ok(Void)": "cpu:8617826, mem:207866, store:-/12@acc391b8, foot:15@9342837, auth:1@5f63b168/1@8cc06289", "1323 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1324 call get_ledger_sequence()": "cpu:8624377, mem:208002, store:-/-, foot:-", "1325 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1563,7 +1563,7 @@ "1561 ret verify_sig_ed25519 -> Ok(Void)": "cpu:9613245", "1562 call bytes_copy_to_slice(Bytes(obj#925), U32(0), 32)": "", "1563 ret bytes_copy_to_slice -> Ok(())": "cpu:9613607", - "1564 ret require_auth -> Ok(Void)": "cpu:9659484, mem:235186, store:3@3d3b0c3f/13@f8cfe52, foot:16@9cb60bd3, auth:1@15c2d85f/1@302df8b", + "1564 ret require_auth -> Ok(Void)": "cpu:9659484, mem:235186, store:3@3d3b0c3f/13@f8cfe52, foot:16@9cb60bd3, auth:1@15c2d85f/1@35367c3", "1565 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1566 call get_ledger_sequence()": "cpu:9666038, mem:235322, store:3@3d3b0c3f/-, foot:-", "1567 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1825,7 +1825,7 @@ "1823 ret verify_sig_ed25519 -> Ok(Void)": "cpu:10843572", "1824 call bytes_copy_to_slice(Bytes(obj#1089), U32(0), 32)": "", "1825 ret bytes_copy_to_slice -> Ok(())": "cpu:10843934", - "1826 ret require_auth -> Ok(Void)": "cpu:10895963, mem:274734, store:3@d9e864af/14@9c6756b5, foot:17@c3f5e216, auth:1@ac9bea8c/1@4b39c404", + "1826 ret require_auth -> Ok(Void)": "cpu:10895963, mem:274734, store:3@d9e864af/14@9c6756b5, foot:17@c3f5e216, auth:1@ac9bea8c/1@db443789", "1827 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1828 call get_ledger_sequence()": "cpu:10902517, mem:274870, store:3@d9e864af/-, foot:-", "1829 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__test_zero_amounts.json b/soroban-env-host/observations/test__stellar_asset_contract__test_zero_amounts.json index f6fd01e8d..c82bf0051 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__test_zero_amounts.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__test_zero_amounts.json @@ -137,7 +137,7 @@ " 135 ret verify_sig_ed25519 -> Ok(Void)": "cpu:873646", " 136 call bytes_copy_to_slice(Bytes(obj#65), U32(0), 32)": "", " 137 ret bytes_copy_to_slice -> Ok(())": "cpu:874008", - " 138 ret require_auth -> Ok(Void)": "cpu:897173, mem:22426, store:-/7@39e7a03b, foot:7@ffabd595, auth:1@9d4347ce/1@fcceb9aa", + " 138 ret require_auth -> Ok(Void)": "cpu:897173, mem:22426, store:-/7@39e7a03b, foot:7@ffabd595, auth:1@9d4347ce/1@1c9762f0", " 139 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 140 call get_ledger_sequence()": "cpu:902689, mem:22562, store:-/-, foot:-", " 141 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -343,7 +343,7 @@ " 341 ret verify_sig_ed25519 -> Ok(Void)": "cpu:1727910", " 342 call bytes_copy_to_slice(Bytes(obj#139), U32(0), 32)": "", " 343 ret bytes_copy_to_slice -> Ok(())": "cpu:1728272", - " 344 ret require_auth -> Ok(Void)": "cpu:1756593, mem:42186, store:3@f94e90b7/8@af87dbf4, foot:8@703d1f56, auth:1@d5420ae/1@a71d9d37", + " 344 ret require_auth -> Ok(Void)": "cpu:1756593, mem:42186, store:3@f94e90b7/8@af87dbf4, foot:8@703d1f56, auth:1@d5420ae/1@3a02ad7c", " 345 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 346 call get_ledger_sequence()": "cpu:1762128, mem:42322, store:3@f94e90b7/-, foot:-", " 347 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -501,7 +501,7 @@ " 499 ret verify_sig_ed25519 -> Ok(Void)": "cpu:2531987", " 500 call bytes_copy_to_slice(Bytes(obj#215), U32(0), 32)": "", " 501 ret bytes_copy_to_slice -> Ok(())": "cpu:2532349", - " 502 ret require_auth -> Ok(Void)": "cpu:2566832, mem:60133, store:3@adf14e3a/9@586200aa, foot:9@2ccc8638, auth:1@4356459c/1@fb2a6210", + " 502 ret require_auth -> Ok(Void)": "cpu:2566832, mem:60133, store:3@adf14e3a/9@586200aa, foot:9@2ccc8638, auth:1@4356459c/1@49ac6106", " 503 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 504 call get_ledger_sequence()": "cpu:2572367, mem:60269, store:3@adf14e3a/-, foot:-", " 505 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -665,7 +665,7 @@ " 663 ret verify_sig_ed25519 -> Ok(Void)": "cpu:3371020", " 664 call bytes_copy_to_slice(Bytes(obj#295), U32(0), 32)": "", " 665 ret bytes_copy_to_slice -> Ok(())": "cpu:3371382", - " 666 ret require_auth -> Ok(Void)": "cpu:3414089, mem:80338, store:3@62df3fb6/11@f1ebebf7, foot:11@59529995, auth:1@fc551e0c/1@88d8972c", + " 666 ret require_auth -> Ok(Void)": "cpu:3414089, mem:80338, store:3@62df3fb6/11@f1ebebf7, foot:11@59529995, auth:1@fc551e0c/1@db7f7b81", " 667 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 668 call get_ledger_sequence()": "cpu:3420386, mem:80474, store:3@62df3fb6/-, foot:-", " 669 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -819,7 +819,7 @@ " 817 ret verify_sig_ed25519 -> Ok(Void)": "cpu:4249641", " 818 call bytes_copy_to_slice(Bytes(obj#377), U32(0), 32)": "", " 819 ret bytes_copy_to_slice -> Ok(())": "cpu:4250003", - " 820 ret require_auth -> Ok(Void)": "cpu:4289762, mem:101932, store:3@37285512/14@f83b988b, foot:14@d493bcaf, auth:1@6c175472/1@50f7d646", + " 820 ret require_auth -> Ok(Void)": "cpu:4289762, mem:101932, store:3@37285512/14@f83b988b, foot:14@d493bcaf, auth:1@6c175472/1@a22f498f", " 821 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 822 call get_ledger_sequence()": "cpu:4296059, mem:102068, store:3@37285512/-, foot:-", " 823 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -963,7 +963,7 @@ " 961 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5221972", " 962 call bytes_copy_to_slice(Bytes(obj#485), U32(0), 32)": "", " 963 ret bytes_copy_to_slice -> Ok(())": "cpu:5222334", - " 964 ret require_auth -> Ok(Void)": "cpu:5268233, mem:130023, store:3@33a29ceb/15@62c9633c, foot:15@5fb0d077, auth:1@3cf1d715/1@5156452a", + " 964 ret require_auth -> Ok(Void)": "cpu:5268233, mem:130023, store:3@33a29ceb/15@62c9633c, foot:15@5fb0d077, auth:1@3cf1d715/1@6ce248ae", " 965 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 966 call get_ledger_sequence()": "cpu:5275292, mem:130159, store:3@33a29ceb/-, foot:-", " 967 ret get_ledger_sequence -> Ok(U32(123))": "", @@ -1117,7 +1117,7 @@ "1115 ret verify_sig_ed25519 -> Ok(Void)": "cpu:6129466", "1116 call bytes_copy_to_slice(Bytes(obj#567), U32(0), 32)": "", "1117 ret bytes_copy_to_slice -> Ok(())": "cpu:6129828", - "1118 ret require_auth -> Ok(Void)": "cpu:6176823, mem:153535, store:3@587de20f/16@7f082e0f, foot:16@f0278afd, auth:1@e22f5eec/1@25ad2922", + "1118 ret require_auth -> Ok(Void)": "cpu:6176823, mem:153535, store:3@587de20f/16@7f082e0f, foot:16@f0278afd, auth:1@e22f5eec/1@eafb4e8d", "1119 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", "1120 call get_ledger_sequence()": "cpu:6183903, mem:153671, store:3@587de20f/-, foot:-", "1121 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__stellar_asset_contract__verify_nested_try_call_rollback.json b/soroban-env-host/observations/test__stellar_asset_contract__verify_nested_try_call_rollback.json index 92d50bc19..cf89dc563 100644 --- a/soroban-env-host/observations/test__stellar_asset_contract__verify_nested_try_call_rollback.json +++ b/soroban-env-host/observations/test__stellar_asset_contract__verify_nested_try_call_rollback.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2227474, mem:1333125, objs:-/5@78af28b2, auth:1@db7fe5fe/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2228160", - " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@db7fe5fe/1@5948d4b8", + " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@db7fe5fe/1@717d06b6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2231315, mem:1333237, objs:-/6@577c0c4", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2269180, mem:1334743, objs:-/7@dd1d44de, store:-/2@56b41591, foot:2@18c30642, auth:-/1@328403da", " 13 call bytes_new_from_slice(1485)": "cpu:2269435, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:4145216, mem:2643519, objs:-/12@e29322e4, auth:1@9539beac/-", " 21 ret obj_cmp -> Ok(0)": "cpu:4145902", - " 22 call get_ledger_network_id()": "cpu:4146160, auth:1@9539beac/1@3df2d56f", + " 22 call get_ledger_network_id()": "cpu:4146160, auth:1@9539beac/1@7e9104a6", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:4149057, mem:2643631, objs:-/13@869f9fd", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:4191930, mem:2645509, objs:-/14@bba49727, store:-/4@57b71466, foot:4@e3aff2b0, auth:-/1@4dbc1328", " 25 call bytes_new_from_slice(44)": "cpu:4199310, mem:2646142, store:-/5@df293737, foot:5@fcffa46f, auth:-/-", @@ -191,7 +191,7 @@ " 189 ret verify_sig_ed25519 -> Ok(Void)": "cpu:5057093", " 190 call bytes_copy_to_slice(Bytes(obj#87), U32(0), 32)": "", " 191 ret bytes_copy_to_slice -> Ok(())": "cpu:5057455", - " 192 ret require_auth -> Ok(Void)": "cpu:5082632, mem:2667784, store:3@1ac54034/7@7f9a0f4f, foot:7@ee905c6f, auth:1@329c08c2/1@fbd6c4d3", + " 192 ret require_auth -> Ok(Void)": "cpu:5082632, mem:2667784, store:3@1ac54034/7@7f9a0f4f, foot:7@ee905c6f, auth:1@329c08c2/1@78d26b23", " 193 call extend_current_contract_instance_and_code_ttl(U32(103680), U32(120960))": "", " 194 call get_ledger_sequence()": "cpu:5088148, mem:2667920, store:3@1ac54034/-, foot:-", " 195 ret get_ledger_sequence -> Ok(U32(123))": "", diff --git a/soroban-env-host/observations/test__storage__test_instance_storage.json b/soroban-env-host/observations/test__storage__test_instance_storage.json index 7987b31f1..aa27d5555 100644 --- a/soroban-env-host/observations/test__storage__test_instance_storage.json +++ b/soroban-env-host/observations/test__storage__test_instance_storage.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2947840, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2948526", - " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2951681, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2989546, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(13)": " auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_large_instance_key.json b/soroban-env-host/observations/test__storage__test_large_instance_key.json index bd657c0ab..943b308f2 100644 --- a/soroban-env-host/observations/test__storage__test_large_instance_key.json +++ b/soroban-env-host/observations/test__storage__test_large_instance_key.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2947840, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2948526", - " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2951681, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2989546, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(12)": " auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_large_instance_value.json b/soroban-env-host/observations/test__storage__test_large_instance_value.json index bd657c0ab..943b308f2 100644 --- a/soroban-env-host/observations/test__storage__test_large_instance_value.json +++ b/soroban-env-host/observations/test__storage__test_large_instance_value.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2947840, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2948526", - " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2951681, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2989546, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(12)": " auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_large_persistent_key.json b/soroban-env-host/observations/test__storage__test_large_persistent_key.json index 376f68583..fcad6d3fa 100644 --- a/soroban-env-host/observations/test__storage__test_large_persistent_key.json +++ b/soroban-env-host/observations/test__storage__test_large_persistent_key.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2947840, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2948526", - " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2951681, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2989546, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(14)": " auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_large_persistent_value.json b/soroban-env-host/observations/test__storage__test_large_persistent_value.json index 376f68583..fcad6d3fa 100644 --- a/soroban-env-host/observations/test__storage__test_large_persistent_value.json +++ b/soroban-env-host/observations/test__storage__test_large_persistent_value.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2947840, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2948526", - " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2951681, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2989546, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(14)": " auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_nested_bump.json b/soroban-env-host/observations/test__storage__test_nested_bump.json index 3828ca16b..40b961485 100644 --- a/soroban-env-host/observations/test__storage__test_nested_bump.json +++ b/soroban-env-host/observations/test__storage__test_nested_bump.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2227474, mem:1333125, objs:-/5@a939acc6, auth:1@f3b792cc/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2228160", - " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@7f37e357", + " 10 call get_ledger_network_id()": "cpu:2228418, auth:1@f3b792cc/1@1edb0d5", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2231315, mem:1333237, objs:-/6@f818df7c", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2269180, mem:1334743, objs:-/7@b0d155fb, store:-/2@1fd2b84, foot:2@986eaacc, auth:-/1@89e73f8e", " 13 call bytes_new_from_slice(3322)": "cpu:2269435, auth:-/-", @@ -21,7 +21,7 @@ " 19 call create_contract(Address(obj#19), Bytes(obj#17), Bytes(obj#21))": "", " 20 call obj_cmp(Address(obj#23), Address(obj#19))": "cpu:5210234, mem:2654563, objs:-/12@b753da18, auth:1@48719546/-", " 21 ret obj_cmp -> Ok(0)": "cpu:5210920", - " 22 call get_ledger_network_id()": "cpu:5211178, auth:1@48719546/1@7daab41b", + " 22 call get_ledger_network_id()": "cpu:5211178, auth:1@48719546/1@c0c786f5", " 23 ret get_ledger_network_id -> Ok(Bytes(obj#25))": "cpu:5214075, mem:2654675, objs:-/13@fa8837d1", " 24 ret create_contract -> Ok(Address(obj#27))": "cpu:5257710, mem:2656553, objs:-/14@cc79b049, store:-/4@6bf3a8, foot:4@9bd798d7, auth:-/1@968f7c47", " 25 call symbol_new_from_slice(14)": "cpu:5260767, mem:2656689, auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_persistent_storage.json b/soroban-env-host/observations/test__storage__test_persistent_storage.json index 6d5957908..25b02c572 100644 --- a/soroban-env-host/observations/test__storage__test_persistent_storage.json +++ b/soroban-env-host/observations/test__storage__test_persistent_storage.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2947840, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2948526", - " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2951681, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2989546, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(13)": " auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_storage_mix.json b/soroban-env-host/observations/test__storage__test_storage_mix.json index a866e0141..692c74d63 100644 --- a/soroban-env-host/observations/test__storage__test_storage_mix.json +++ b/soroban-env-host/observations/test__storage__test_storage_mix.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2937844, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2938530", - " 10 call get_ledger_network_id()": "cpu:2938788, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2938788, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2941685, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2979550, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(13)": " auth:-/-", diff --git a/soroban-env-host/observations/test__storage__test_temp_storage.json b/soroban-env-host/observations/test__storage__test_temp_storage.json index d36b56488..6247cb7a8 100644 --- a/soroban-env-host/observations/test__storage__test_temp_storage.json +++ b/soroban-env-host/observations/test__storage__test_temp_storage.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:2947840, mem:1319448, objs:-/5@416f871f, auth:1@43a3b359/-", " 9 ret obj_cmp -> Ok(0)": "cpu:2948526", - " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@bac76217", + " 10 call get_ledger_network_id()": "cpu:2948784, auth:1@43a3b359/1@fd10b454", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:2951681, mem:1319560, objs:-/6@8d782d71", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:2989546, mem:1321066, objs:-/7@a892bcc2, store:-/2@1627a8ac, foot:2@201b753c, auth:-/1@bc73f883", " 13 call symbol_new_from_slice(13)": " auth:-/-", diff --git a/soroban-env-host/observations/test__vec__linear_memory_operations.json b/soroban-env-host/observations/test__vec__linear_memory_operations.json index ba3c28816..84cb73c03 100644 --- a/soroban-env-host/observations/test__vec__linear_memory_operations.json +++ b/soroban-env-host/observations/test__vec__linear_memory_operations.json @@ -9,7 +9,7 @@ " 7 call create_contract(Address(obj#5), Bytes(obj#3), Bytes(obj#7))": "", " 8 call obj_cmp(Address(obj#9), Address(obj#5))": "cpu:1851968, mem:1306112, objs:-/5@c401ef9d, auth:1@351f54c4/-", " 9 ret obj_cmp -> Ok(0)": "cpu:1852654", - " 10 call get_ledger_network_id()": "cpu:1852912, auth:1@351f54c4/1@6904edb3", + " 10 call get_ledger_network_id()": "cpu:1852912, auth:1@351f54c4/1@bda4a8d6", " 11 ret get_ledger_network_id -> Ok(Bytes(obj#11))": "cpu:1855809, mem:1306224, objs:-/6@792a5a99", " 12 ret create_contract -> Ok(Address(obj#13))": "cpu:1893674, mem:1307730, objs:-/7@d6d51cb7, store:-/2@4836ccd0, foot:2@b1f2e802, auth:-/1@c4bfd12a", " 13 call vec_new()": " auth:-/-", diff --git a/soroban-env-host/src/auth.rs b/soroban-env-host/src/auth.rs index 52faaf79c..860a537be 100644 --- a/soroban-env-host/src/auth.rs +++ b/soroban-env-host/src/auth.rs @@ -199,8 +199,8 @@ pub struct AuthorizationManager { // Contract authorizations are always enforced independently of the `mode`, // as they are self-contained and fully defined by the contract logic. invoker_contract_trackers: RefCell>, - // Current call stack consisting only of the contract invocations (i.e. not - // the host functions). + // Call stack of relevant host function and contract invocations, moves mostly + // in lock step with context stack in the host. call_stack: RefCell>, } @@ -345,8 +345,61 @@ impl RecordingAuthInfo { } } -// Helper for matching the 'sparse' tree of authorized invocations to the actual -// call tree. +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +#[cfg_attr(feature = "testutils", derive(Hash))] +enum MatchState { + Unmatched, + RootMatch, + SubMatch { index_in_parent: usize }, +} + +impl MatchState { + fn is_matched(&self) -> bool { + *self != MatchState::Unmatched + } +} + +/// An `InvocationTracker` is responsible for incrementally matching a single +/// [`AuthorizedInvocation`] tree against the actual invocation tree. In this +/// way the nodes that make up the `AuthorizedInvocation` act as a pattern, and +/// the `InvocationTracker` is an incremental pattern-matcher. The same +/// `InvocationTracker` type is used as the pattern-matching sub-component of +/// [`AccountAuthorizationTracker`] and [`InvokerContractAuthorizationTracker`], +/// as the matching logic is the same in both cases. +/// +/// The `InvocationTracker` maintains a [`InvocationTracker::match_stack`] of +/// [`MatchState`] values that correspond to the frames in +/// [`AuthorizationManager::call_stack`], pushing and popping those values as +/// frames are are pushed and popped from that call stack. The values in the +/// match stack are initially all [`MatchState::Unmatched`]. +/// +/// Matching is initiated by a contract calling +/// [`AuthorizationManager::require_auth`], and the auth manager then works its +/// way through many possible trackers asking each to try to match itself +/// against the current [`AuthorizationManager::call_stack`] context, the last +/// entry of which is the frame requesting the authorization. +/// +/// A tracker may be active or inactive. If active, it means that the +/// `InvocationTracker` has begun matching itself against the call stack +/// already, and the frame requesting authorization will be matched against the +/// _children_ of the last (deepest) already-matched node in the tracker's +/// [`AuthorizedInvocation`]. If inactive, it means that the `InvocationTracker` +/// has not yet begun matching and so the frame requesting authorization will be +/// matched against the root node of the [`AuthorizedInvocation`]. Any +/// successful match is recorded in the [`InvocationTracker::match_stack`] by +/// overwriting the value at the match, changing it from +/// [`MatchState::Unmatched`] to either [`MatchState::RootMatch`] or +/// [`MatchState::SubMatch`] as appropriate. This match-extension logic is in +/// [`InvocationTracker::maybe_extend_invocation_match`] +/// +/// The active-ness of a tracker is defined by the +/// [`AuthorizedInvocation::exhausted`] flag on the root node it's matching, as +/// well as the continued presence of the [`MatchState::RootMatch`] node on the +/// match stack. In other words: the tracker becomes "active" as soon as the +/// root match is pushed on the match stack (which exhausts the root node), and +/// the tracker stops being active when the root match is popped from the match +/// stack. At this point the [`InvocationTracker::is_fully_processed`] flag is +/// set. #[derive(Clone)] #[cfg_attr(feature = "testutils", derive(Hash))] struct InvocationTracker { @@ -354,16 +407,24 @@ struct InvocationTracker { // The authorized invocation tree only contains the contract invocations // that explicitly require authorization on behalf of the address. root_authorized_invocation: AuthorizedInvocation, - // Call stack that tracks the current walk in the tree of authorized - // invocations. - // This is set to `None` if the invocation didn't require authorization on - // behalf of the address. - // When not `None` this is an index of the authorized invocation in the - // parent's `sub_invocations` vector or 0 for the - // `root_authorized_invocation`. - invocation_id_in_call_stack: Vec>, + // Stack that tracks the current match of the tree of authorized invocations + // against the actual invocations made by the host. There is one entry in + // this vector for each entry in [`AuthorizationManager::call_stack`] + // (unless the tracker has been temporary suppressed due to reentry). + // + // The values in the match stack are always initially + // `MatchState::Unmatched`. The match stack may (if the tracker is active) + // contain a subsequence of values in it beginning with + // `MatchState::RootMatch` and continuing with a mixture of + // `MatchState::SubMatch` and `MatchState::Unmatched` values, corresponding + // to frames in the call stack that match or are ignored (respectively) by + // nodes in the `AuthorizedInvocation` pattern tree. If this vector ever + // contains a subsequence starting with `MatchState::SubMatch` (i.e. without + // a root), or contains more than one `MatchState::RootMatch`, there is a + // logic error somewhere. + match_stack: Vec, // If root invocation is exhausted, the index of the stack frame where it - // was exhausted (i.e. index in `invocation_id_in_call_stack`). + // was exhausted (i.e. index in `match_stack`). root_exhausted_frame: Option, // Indicates whether this tracker is fully processed, i.e. the authorized // root frame has been exhausted and then popped from the stack. @@ -386,8 +447,8 @@ pub(crate) struct AccountAuthorizationTracker { // Value representing the signature created by the address to authorize // the invocations tracked here. signature: Val, - // Indicates whether this is a tracker for the transaction invoker. - is_invoker: bool, + // Indicates whether this is a tracker for the transaction source account. + is_transaction_source_account: bool, // When `true`, indicates that the tracker has been successfully verified, // specifically it has been authenticated and has nonce verified and // consumed. @@ -554,17 +615,7 @@ impl AuthorizedFunction { fn to_xdr(&self, host: &Host) -> Result { match self { AuthorizedFunction::ContractFn(contract_fn) => { - let function_name_sc_val = host.from_host_val(contract_fn.function_name.into())?; - let function_name = if let ScVal::Symbol(s) = function_name_sc_val { - s - } else { - return Err(host.err( - ScErrorType::Object, - ScErrorCode::InternalError, - "unexpected non-symbol function name", - &[], - )); - }; + let function_name = host.scsymbol_from_symbol(contract_fn.function_name)?; Ok(SorobanAuthorizedFunction::ContractFn(InvokeContractArgs { contract_address: host.scaddress_from_address(contract_fn.contract_address)?, function_name, @@ -638,32 +689,37 @@ impl AuthorizedInvocation { }) } - // Walks a path in the tree defined by `invocation_id_in_call_stack` and + // Walks a path in the tree defined by `match_stack` and // returns the last visited authorized node. // metering: free fn last_authorized_invocation_mut( &mut self, - invocation_id_in_call_stack: &Vec>, + match_stack: &Vec, call_stack_id: usize, - ) -> &mut AuthorizedInvocation { + ) -> Result<&mut AuthorizedInvocation, HostError> { // Start walking the stack from `call_stack_id`. We trust the callers to - // hold the invariant that `invocation_id_in_call_stack[call_stack_id - 1]` + // hold the invariant that `match_stack[call_stack_id - 1]` // corresponds to this invocation tree, so that the next non-`None` child // corresponds to the child of the current tree. - for (i, id) in invocation_id_in_call_stack - .iter() - .enumerate() - .skip(call_stack_id) - { - if let Some(id) = id { - // We trust the caller to have the correct sub-invocation - // indices. - return self.sub_invocations[*id] - .last_authorized_invocation_mut(invocation_id_in_call_stack, i + 1); + for (i, m) in match_stack.iter().enumerate().skip(call_stack_id) { + match m { + MatchState::SubMatch { index_in_parent } => { + // We trust the caller to have the correct sub-invocation + // indices. + if let Some(sub) = self.sub_invocations.get_mut(*index_in_parent) { + return sub.last_authorized_invocation_mut(match_stack, i + 1); + } else { + return Err((ScErrorType::Auth, ScErrorCode::InternalError).into()); + } + } + MatchState::RootMatch => { + return Err((ScErrorType::Auth, ScErrorCode::InternalError).into()); + } + // Skip Unmatched invocations as they don't require authorization. + MatchState::Unmatched => (), } - // Skip `None` invocations as they don't require authorization. } - self + Ok(self) } // metering: covered @@ -687,8 +743,12 @@ impl AuthorizedInvocation { // This would be a bug. return Err((ScErrorType::Auth, ScErrorCode::InternalError).into()); } - for (i, sub_invocation) in self.sub_invocations.iter_mut().enumerate() { - sub_invocation.rollback(&snapshot.sub_invocations[i])?; + for (sub, snap) in self + .sub_invocations + .iter_mut() + .zip(snapshot.sub_invocations.iter()) + { + sub.rollback(snap)? } Ok(()) } @@ -784,7 +844,7 @@ impl AuthorizationManager { } // metering: covered - pub(crate) fn add_invoker_contract_auth( + pub(crate) fn add_invoker_contract_auth_with_curr_contract_as_invoker( &self, host: &Host, auth_entries: VecObject, @@ -795,13 +855,15 @@ impl AuthorizationManager { Vec::::charge_bulk_init_cpy(auth_entries.len() as u64, host)?; trackers.reserve(auth_entries.len()); for e in auth_entries { - trackers.push(InvokerContractAuthorizationTracker::new(host, e)?) + trackers.push( + InvokerContractAuthorizationTracker::new_with_curr_contract_as_invoker(host, e)?, + ) } Ok(()) } // metering: covered by components - fn verify_contract_invoker_auth( + fn maybe_check_invoker_contract_auth( &self, host: &Host, address: AddressObject, @@ -816,7 +878,9 @@ impl AuthorizationManager { // Try matching the direct invoker contract first. It is considered to // have authorized any direct calls. - let invoker_frame = &call_stack[call_stack.len() - 2]; + let Some(invoker_frame) = &call_stack.get(call_stack.len() - 2) else { + return Err((ScErrorType::Auth, ScErrorCode::InternalError).into()); + }; if let AuthStackFrame::Contract(invoker_contract) = invoker_frame { if host .compare(&invoker_contract.contract_address, &address)? @@ -912,6 +976,116 @@ impl AuthorizationManager { )) } + #[cfg(any(test, feature = "recording_auth"))] + fn require_auth_recording( + &self, + host: &Host, + address: AddressObject, + function: AuthorizedFunction, + recording_info: &RecordingAuthInfo, + ) -> Result<(), HostError> { + // At first, try to find the tracker for this exact address + // object. + // This is a best-effort heuristic to come up with a reasonably + // looking recording tree for cases when multiple instances of + // the same exact address are used. + let address_obj_handle = address.get_handle(); + let existing_tracker_id = recording_info + .try_borrow_tracker_by_address_handle(host)? + .get(&address_obj_handle) + .copied(); + if let Some(tracker_id) = existing_tracker_id { + // The tracker should not be borrowed recursively in + // recording mode, as we don't call `__check_auth` in this + // flow. + let trackers = self.try_borrow_account_trackers(host)?; + let Some(trackercell) = trackers.get(tracker_id) else { + return Err(host.err( + ScErrorType::Auth, + ScErrorCode::InternalError, + "bad index for existing tracker", + &[], + )); + }; + if let Ok(mut tracker) = trackercell.try_borrow_mut() { + // The recording invariant is that trackers are created + // with the first authorized invocation, which means + // that when their stack no longer has authorized + // invocation, then we've popped frames past its root + // and hence need to create a new tracker. + if !tracker.has_authorized_invocations_in_stack() { + recording_info + .try_borrow_tracker_by_address_handle_mut(host)? + .remove(&address_obj_handle); + } else { + return tracker.record_invocation(host, function); + } + } else { + return Err(host.err( + ScErrorType::Auth, + ScErrorCode::InternalError, + "unexpected recursive tracker borrow in recording mode", + &[], + )); + }; + } + // If there is no active tracker for this exact address object, + // try to find any matching active tracker for the address. + for tracker in self.try_borrow_account_trackers(host)?.iter() { + if let Ok(mut tracker) = tracker.try_borrow_mut() { + if !host.compare(&tracker.address, &address)?.is_eq() { + continue; + } + // Take the first tracker that is still active (i.e. has + // active authorizations in the current call stack) and + // hasn't been used for this stack frame yet. + if tracker.has_authorized_invocations_in_stack() + && !tracker.current_frame_is_already_matched() + { + return tracker.record_invocation(host, function); + } + } else { + return Err(host.err( + ScErrorType::Auth, + ScErrorCode::InternalError, + "unexpected borrowed tracker in recording auth mode", + &[], + )); + } + } + // At this stage there is no active tracker to which we could + // match the current invocation, thus we need to create a new + // tracker. + // Alert the user in `disable_non_root_auth` mode if we're not + // in the root stack frame. + if recording_info.disable_non_root_auth && self.try_borrow_call_stack(host)?.len() != 1 { + return Err(host.err( + ScErrorType::Auth, + ScErrorCode::InvalidAction, + "[recording authorization only] encountered authorization not tied \ + to the root contract invocation for an address. Use `require_auth()` \ + in the top invocation or enable non-root authorization.", + &[address.into()], + )); + } + // If a tracker for the new tree doesn't exist yet, create + // it and initialize with the current invocation. + self.try_borrow_account_trackers_mut(host)? + .push(RefCell::new(AccountAuthorizationTracker::new_recording( + host, + address, + function, + self.try_borrow_call_stack(host)?.len(), + )?)); + recording_info + .try_borrow_tracker_by_address_handle_mut(host)? + .insert( + address_obj_handle, + self.try_borrow_account_trackers(host)?.len() - 1, + ); + Ok(()) + } + // metering: covered fn require_auth_internal( &self, @@ -919,114 +1093,17 @@ impl AuthorizationManager { address: AddressObject, function: AuthorizedFunction, ) -> Result<(), HostError> { - // For now we give a blanket approval of the invoker contract to any - // calls it made, but never to the deeper calls. It's possible - // to eventually add a capability to pre-authorize arbitrary call - // stacks on behalf of the contract. - if self.verify_contract_invoker_auth(host, address, &function)? { + // First check the InvokerContractAuthorizationTrackers + if self.maybe_check_invoker_contract_auth(host, address, &function)? { return Ok(()); } - + // Then check the AccountAuthorizationTrackers match &self.mode { AuthorizationMode::Enforcing => self.require_auth_enforcing(host, address, &function), - #[cfg(any(test, feature = "recording_auth"))] // metering: free for recording + #[cfg(any(test, feature = "recording_auth"))] AuthorizationMode::Recording(recording_info) => { - // At first, try to find the tracker for this exact address - // object. - // This is a best-effort heuristic to come up with a reasonably - // looking recording tree for cases when multiple instances of - // the same exact address are used. - let address_obj_handle = address.get_handle(); - let existing_tracker_id = recording_info - .try_borrow_tracker_by_address_handle(host)? - .get(&address_obj_handle) - .copied(); - if let Some(tracker_id) = existing_tracker_id { - // The tracker should not be borrowed recursively in - // recording mode, as we don't call `__check_auth` in this - // flow. - if let Ok(mut tracker) = - self.try_borrow_account_trackers(host)?[tracker_id].try_borrow_mut() - { - // The recording invariant is that trackers are created - // with the first authorized invocation, which means - // that when their stack no longer has authorized - // invocation, then we've popped frames past its root - // and hence need to create a new tracker. - if !tracker.has_authorized_invocations_in_stack() { - recording_info - .try_borrow_tracker_by_address_handle_mut(host)? - .remove(&address_obj_handle); - } else { - return tracker.record_invocation(host, function); - } - } else { - return Err(host.err( - ScErrorType::Auth, - ScErrorCode::InternalError, - "unexpected recursive tracker borrow in recording mode", - &[], - )); - } - } - // If there is no active tracker for this exact address object, - // try to find any matching active tracker for the address. - for tracker in self.try_borrow_account_trackers(host)?.iter() { - if let Ok(mut tracker) = tracker.try_borrow_mut() { - if !host.compare(&tracker.address, &address)?.is_eq() { - continue; - } - // Take the first tracker that is still active (i.e. has - // active authorizations in the current call stack) and - // hasn't been used for this stack frame yet. - if tracker.has_authorized_invocations_in_stack() - && !tracker.current_frame_is_already_matched() - { - return tracker.record_invocation(host, function); - } - } else { - return Err(host.err( - ScErrorType::Auth, - ScErrorCode::InternalError, - "unexpected borrowed tracker in recording auth mode", - &[], - )); - } - } - // At this stage there is no active tracker to which we could - // match the current invocation, thus we need to create a new - // tracker. - // Alert the user in `disable_non_root_auth` mode if we're not - // in the root stack frame. - if recording_info.disable_non_root_auth - && self.try_borrow_call_stack(host)?.len() != 1 - { - return Err(host.err( - ScErrorType::Auth, - ScErrorCode::InvalidAction, - "[recording authorization only] encountered authorization not tied \ - to the root contract invocation for an address. Use `require_auth()` \ - in the top invocation or enable non-root authorization.", - &[address.into()], - )); - } - // If a tracker for the new tree doesn't exist yet, create - // it and initialize with the current invocation. - self.try_borrow_account_trackers_mut(host)? - .push(RefCell::new(AccountAuthorizationTracker::new_recording( - host, - address, - function, - self.try_borrow_call_stack(host)?.len(), - )?)); - recording_info - .try_borrow_tracker_by_address_handle_mut(host)? - .insert( - address_obj_handle, - self.try_borrow_account_trackers(host)?.len() - 1, - ); - Ok(()) + self.require_auth_recording(host, address, function, recording_info) } } } @@ -1110,7 +1187,15 @@ impl AuthorizationManager { )); } for (i, tracker) in trackers.iter().enumerate() { - if let Some(tracker_snapshot) = &trackers_snapshot[i] { + let Some(snapopt) = trackers_snapshot.get(i) else { + return Err(host.err( + ScErrorType::Auth, + ScErrorCode::InternalError, + "unexpected auth snapshot index", + &[], + )); + }; + if let Some(tracker_snapshot) = snapopt { tracker .try_borrow_mut() .map_err(|_| { @@ -1203,7 +1288,6 @@ impl AuthorizationManager { #[cfg(any(test, feature = "testutils"))] Frame::TestContract(tc) => (tc.id.metered_clone(host)?, tc.func), }; - // Currently only contracts might appear in the call stack. let contract_address = host.add_host_object(ScAddress::Contract(contract_id))?; Vec::::charge_bulk_init_cpy(1, host)?; self.try_borrow_call_stack_mut(host)? @@ -1399,7 +1483,7 @@ impl InvocationTracker { ) -> Result { Ok(Self { root_authorized_invocation: AuthorizedInvocation::from_xdr(host, root_invocation)?, - invocation_id_in_call_stack: vec![], + match_stack: vec![], root_exhausted_frame: None, is_fully_processed: false, }) @@ -1409,7 +1493,7 @@ impl InvocationTracker { fn new(root_authorized_invocation: AuthorizedInvocation) -> Self { Self { root_authorized_invocation, - invocation_id_in_call_stack: vec![], + match_stack: vec![], root_exhausted_frame: None, is_fully_processed: false, } @@ -1418,48 +1502,56 @@ impl InvocationTracker { // metering: free for recording #[cfg(any(test, feature = "recording_auth"))] fn new_recording(function: AuthorizedFunction, current_stack_len: usize) -> Self { - // Create the stack of `None` leading to the current invocation to + // Create the stack of `MatchState::Unmatched` leading to the current invocation to // represent invocations that didn't need authorization on behalf of // the tracked address. - let mut invocation_id_in_call_stack = vec![None; current_stack_len - 1]; - // Add the id for the current(root) invocation. - invocation_id_in_call_stack.push(Some(0)); - let root_exhausted_frame = Some(invocation_id_in_call_stack.len() - 1); + let mut match_stack = vec![MatchState::Unmatched; current_stack_len - 1]; + // Add a MatchState for the current(root) invocation. + match_stack.push(MatchState::RootMatch); + let root_exhausted_frame = Some(match_stack.len() - 1); Self { root_authorized_invocation: AuthorizedInvocation::new_recording(function), - invocation_id_in_call_stack, + match_stack, root_exhausted_frame, is_fully_processed: false, } } - // Walks a path in the tree defined by `invocation_id_in_call_stack` and + // Walks a path in the tree defined by `match_stack` and // returns the last visited authorized node. // metering: free - fn last_authorized_invocation_mut(&mut self) -> Option<&mut AuthorizedInvocation> { - for i in 0..self.invocation_id_in_call_stack.len() { - if self.invocation_id_in_call_stack[i].is_some() { - return Some( - self.root_authorized_invocation - .last_authorized_invocation_mut(&self.invocation_id_in_call_stack, i + 1), - ); + fn last_authorized_invocation_mut( + &mut self, + ) -> Result, HostError> { + for (i, m) in self.match_stack.iter().enumerate() { + match m { + MatchState::RootMatch => { + return Ok(Some( + self.root_authorized_invocation + .last_authorized_invocation_mut(&self.match_stack, i + 1)?, + )); + } + MatchState::SubMatch { .. } => { + return Err((ScErrorType::Auth, ScErrorCode::InternalError).into()) + } + MatchState::Unmatched => (), } } - None + Ok(None) } // metering: covered fn push_frame(&mut self, budget: &Budget) -> Result<(), HostError> { Vec::::charge_bulk_init_cpy(1, budget)?; - self.invocation_id_in_call_stack.push(None); + self.match_stack.push(MatchState::Unmatched); Ok(()) } // metering: free fn pop_frame(&mut self) { - self.invocation_id_in_call_stack.pop(); + self.match_stack.pop(); if let Some(root_exhausted_frame) = self.root_exhausted_frame { - if root_exhausted_frame >= self.invocation_id_in_call_stack.len() { + if root_exhausted_frame >= self.match_stack.len() { self.is_fully_processed = true; } } @@ -1467,7 +1559,7 @@ impl InvocationTracker { // metering: free fn is_empty(&self) -> bool { - self.invocation_id_in_call_stack.is_empty() + self.match_stack.is_empty() } // metering: free @@ -1477,18 +1569,23 @@ impl InvocationTracker { // metering: free fn current_frame_is_already_matched(&self) -> bool { - match self.invocation_id_in_call_stack.last() { - Some(Some(_)) => true, + match self.match_stack.last() { + Some(x) => x.is_matched(), _ => false, } } - // Tries to match the provided invocation to the authorized sub-invocation - // of the current tree and push it to the call stack. + // Tries to match the provided invocation as an extension of the last + // currently-matched sub-invocation of the authorized invocation tree (or + // the root, if there is no matched invocation yet). If matching succeeds, + // it writes the match to the corresponding entry in + // [`InvocationTracker::match_stack`]. + // // Returns `true` if the match has been found for the first time per current // frame. + // // Metering: covered by components - fn maybe_push_matching_invocation_frame( + fn maybe_extend_invocation_match( &mut self, host: &Host, function: &AuthorizedFunction, @@ -1497,13 +1594,15 @@ impl InvocationTracker { if self.current_frame_is_already_matched() { return Ok(false); } - let mut frame_index = None; - if let Some(curr_invocation) = self.last_authorized_invocation_mut() { - for (i, sub_invocation) in curr_invocation.sub_invocations.iter_mut().enumerate() { + let mut new_match_state = MatchState::Unmatched; + if let Some(curr_invocation) = self.last_authorized_invocation_mut()? { + for (index_in_parent, sub_invocation) in + curr_invocation.sub_invocations.iter_mut().enumerate() + { if !sub_invocation.is_exhausted && host.compare(&sub_invocation.function, function)?.is_eq() { - frame_index = Some(i); + new_match_state = MatchState::SubMatch { index_in_parent }; sub_invocation.is_exhausted = true; break; } @@ -1514,21 +1613,21 @@ impl InvocationTracker { .compare(&self.root_authorized_invocation.function, &function)? .is_eq() { - frame_index = Some(0); + new_match_state = MatchState::RootMatch; self.root_authorized_invocation.is_exhausted = true; - self.root_exhausted_frame = Some(self.invocation_id_in_call_stack.len() - 1); + self.root_exhausted_frame = Some(self.match_stack.len() - 1); } - if frame_index.is_some() { - *self.invocation_id_in_call_stack.last_mut().ok_or_else(|| { + if new_match_state.is_matched() { + *self.match_stack.last_mut().ok_or_else(|| { host.err( ScErrorType::Auth, ScErrorCode::InternalError, - "invalid invocation_id_in_call_stack", + "invalid match_stack", &[], ) - })? = frame_index; + })? = new_match_state; } - Ok(frame_index.is_some()) + Ok(new_match_state.is_matched()) } // Records the invocation in this tracker. @@ -1550,12 +1649,12 @@ impl InvocationTracker { &[], )); } - if let Some(curr_invocation) = self.last_authorized_invocation_mut() { + if let Some(curr_invocation) = self.last_authorized_invocation_mut()? { curr_invocation .sub_invocations .push(AuthorizedInvocation::new_recording(function)); - *self.invocation_id_in_call_stack.last_mut().unwrap() = - Some(curr_invocation.sub_invocations.len() - 1); + let index_in_parent = curr_invocation.sub_invocations.len() - 1; + *self.match_stack.last_mut().unwrap() = MatchState::SubMatch { index_in_parent }; } else { // This would be a bug return Err(host.err( @@ -1571,7 +1670,7 @@ impl InvocationTracker { // metering: free #[cfg(any(test, feature = "recording_auth"))] fn has_matched_invocations_in_stack(&self) -> bool { - self.invocation_id_in_call_stack.iter().any(|i| i.is_some()) + self.match_stack.iter().any(|i| i.is_matched()) } // metering: covered @@ -1599,35 +1698,37 @@ impl AccountAuthorizationTracker { host: &Host, auth_entry: SorobanAuthorizationEntry, ) -> Result { - let (address, nonce, signature) = match auth_entry.credentials { - SorobanCredentials::SourceAccount => ( - host.source_account_address()?.ok_or_else(|| { - host.err( - ScErrorType::Auth, - ScErrorCode::InternalError, - "source account is missing when setting auth entries", - &[], - ) - })?, - None, - Val::VOID.into(), - ), - SorobanCredentials::Address(address_creds) => ( - host.add_host_object(address_creds.address)?, - Some(( - address_creds.nonce, - address_creds.signature_expiration_ledger, - )), - host.to_host_val(&address_creds.signature)?, - ), - }; - let is_invoker = nonce.is_none(); + let (address, nonce, signature, is_transaction_source_account) = + match auth_entry.credentials { + SorobanCredentials::SourceAccount => ( + host.source_account_address()?.ok_or_else(|| { + host.err( + ScErrorType::Auth, + ScErrorCode::InternalError, + "source account is missing when setting auth entries", + &[], + ) + })?, + None, + Val::VOID.into(), + true, + ), + SorobanCredentials::Address(address_creds) => ( + host.add_host_object(address_creds.address)?, + Some(( + address_creds.nonce, + address_creds.signature_expiration_ledger, + )), + host.to_host_val(&address_creds.signature)?, + false, + ), + }; Ok(Self { address, invocation_tracker: InvocationTracker::from_xdr(host, auth_entry.root_invocation)?, signature, verified: false, - is_invoker, + is_transaction_source_account, nonce, }) } @@ -1649,15 +1750,15 @@ impl AccountAuthorizationTracker { &[], )); } - // If the invoker account is known, set it to `None`, so that the final - // recorded payload wouldn't contain the address. This makes it easier - // to use more optimal payload when only invoker auth is used. - let is_invoker = if let Some(source_acc) = host.source_account_address()? { - host.compare(&source_acc, &address)?.is_eq() - } else { - false - }; - let nonce = if !is_invoker { + // Decide if we're tracking the transaction source account, and if so + // don't bother with a nonce. + let is_transaction_source_account = + if let Some(source_acc) = host.source_account_address()? { + host.compare(&source_acc, &address)?.is_eq() + } else { + false + }; + let nonce = if !is_transaction_source_account { let random_nonce: i64 = host.with_recording_auth_nonce_prng(|p| Ok(p.gen_range(0..=i64::MAX)))?; host.consume_nonce(address, random_nonce, 0)?; @@ -1665,18 +1766,12 @@ impl AccountAuthorizationTracker { } else { None }; - // Create the stack of `None` leading to the current invocation to - // represent invocations that didn't need authorization on behalf of - // the tracked address. - let mut invocation_id_in_call_stack = vec![None; current_stack_len - 1]; - // Add the id for the current(root) invocation. - invocation_id_in_call_stack.push(Some(0)); Ok(Self { address, invocation_tracker: InvocationTracker::new_recording(function, current_stack_len), signature: Val::VOID.into(), verified: true, - is_invoker, + is_transaction_source_account, nonce, }) } @@ -1696,10 +1791,11 @@ impl AccountAuthorizationTracker { function: &AuthorizedFunction, allow_matching_root: bool, ) -> Result { - if !self - .invocation_tracker - .maybe_push_matching_invocation_frame(host, function, allow_matching_root)? - { + if !self.invocation_tracker.maybe_extend_invocation_match( + host, + function, + allow_matching_root, + )? { // The call isn't found in the currently tracked tree or is already // authorized in it. // That doesn't necessarily mean it's unauthorized (it can be @@ -1757,7 +1853,7 @@ impl AccountAuthorizationTracker { fn get_recorded_auth_payload(&self, host: &Host) -> Result { host.as_budget().with_observable_shadow_mode(|| { Ok(RecordedAuthPayload { - address: if !self.is_invoker { + address: if !self.is_transaction_source_account { Some(host.visit_obj(self.address, |a: &ScAddress| a.metered_clone(host))?) } else { None @@ -1801,7 +1897,7 @@ impl AccountAuthorizationTracker { // metering: covered fn verify_and_consume_nonce(&mut self, host: &Host) -> Result<(), HostError> { - if self.is_invoker { + if self.is_transaction_source_account { return Ok(()); } if let Some((nonce, live_until_ledger)) = &self.nonce { @@ -1867,7 +1963,7 @@ impl AccountAuthorizationTracker { // metering: covered by the hsot fn authenticate(&self, host: &Host) -> Result<(), HostError> { - if self.is_invoker { + if self.is_transaction_source_account { return Ok(()); } @@ -1896,7 +1992,7 @@ impl AccountAuthorizationTracker { // metering: covered #[cfg(any(test, feature = "recording_auth"))] fn emulate_authentication(&self, host: &Host) -> Result<(), HostError> { - if self.is_invoker { + if self.is_transaction_source_account { return Ok(()); } let sc_addr = host.scaddress_from_address(self.address)?; @@ -1953,7 +2049,10 @@ impl AccountAuthorizationTracker { impl InvokerContractAuthorizationTracker { // metering: covered by components - fn new(host: &Host, invoker_auth_entry: Val) -> Result { + fn new_with_curr_contract_as_invoker( + host: &Host, + invoker_auth_entry: Val, + ) -> Result { let invoker_sc_addr = ScAddress::Contract(host.get_current_contract_id_internal()?); let authorized_invocation = invoker_contract_auth_to_authorized_invocation( host, @@ -1991,7 +2090,7 @@ impl InvokerContractAuthorizationTracker { // Authorization is successful if function is just matched by the // tracker. No authentication is needed. self.invocation_tracker - .maybe_push_matching_invocation_frame(host, function, true) + .maybe_extend_invocation_match(host, function, true) } } diff --git a/soroban-env-host/src/builtin_contracts/account_contract.rs b/soroban-env-host/src/builtin_contracts/account_contract.rs index 0f94f3185..ee7432f9c 100644 --- a/soroban-env-host/src/builtin_contracts/account_contract.rs +++ b/soroban-env-host/src/builtin_contracts/account_contract.rs @@ -198,18 +198,27 @@ pub(crate) fn check_account_authentication( )); } // Overflow isn't possible here as - // 255 * MAX_ACCOUNT_SIGNATURES is < u32::MAX. - weight += signer_weight as u32; + // 255 * MAX_ACCOUNT_SIGNATURES is < u32::MAX, + // but to future-proof the code we do saturating_add. + weight = weight.saturating_add(signer_weight as u32); prev_pk = Some(sig.public_key); } - let threshold = account.thresholds.0[ThresholdIndexes::Med as usize]; - if weight < threshold as u32 { + // This should always work but again, we err on side + // of future-proofing against changed assumptions. + let Some(threshold) = account.thresholds.0.get(ThresholdIndexes::Med as usize) else { + return Err(host.error( + (ScErrorType::Auth, ScErrorCode::InternalError).into(), + "unexpected thresholds-array size", + &[], + )); + }; + if weight < *threshold as u32 { Err(err!( host, ContractError::AuthenticationError, "signature weight is lower than threshold", weight, - threshold as u32 + *threshold as u32 )) } else { Ok(()) diff --git a/soroban-env-host/src/host.rs b/soroban-env-host/src/host.rs index 59eef095f..897a63333 100644 --- a/soroban-env-host/src/host.rs +++ b/soroban-env-host/src/host.rs @@ -2727,7 +2727,7 @@ impl VmCallerEnv for Host { ) -> Result { Ok(self .try_borrow_authorization_manager()? - .add_invoker_contract_auth(self, auth_entries)? + .add_invoker_contract_auth_with_curr_contract_as_invoker(self, auth_entries)? .into()) } diff --git a/soroban-env-host/src/host/conversion.rs b/soroban-env-host/src/host/conversion.rs index b2a3717ce..257822af6 100644 --- a/soroban-env-host/src/host/conversion.rs +++ b/soroban-env-host/src/host/conversion.rs @@ -1,23 +1,21 @@ use std::rc::Rc; -use super::metered_clone::{ - charge_shallow_copy, MeteredAlloc, MeteredClone, MeteredContainer, MeteredIterator, -}; -use crate::budget::{AsBudget, DepthLimiter}; -use crate::err; -use crate::host_object::{HostMap, HostObject, HostVec}; -use crate::xdr::{Hash, LedgerKey, LedgerKeyContractData, ScVal, ScVec, Uint256}; -use crate::{xdr::ContractCostType, Host, HostError, Val}; -use soroban_env_common::num::{ - i256_from_pieces, i256_into_pieces, u256_from_pieces, u256_into_pieces, -}; -use soroban_env_common::xdr::{ - self, int128_helpers, AccountId, ContractDataDurability, Int128Parts, Int256Parts, ScAddress, - ScBytes, ScErrorCode, ScErrorType, ScMap, ScMapEntry, UInt128Parts, UInt256Parts, VecM, -}; -use soroban_env_common::{ - AddressObject, BytesObject, Convert, Object, ScValObjRef, ScValObject, TryFromVal, TryIntoVal, - U32Val, VecObject, +use crate::{ + budget::{AsBudget, DepthLimiter}, + err, + host::metered_clone::{ + charge_shallow_copy, MeteredAlloc, MeteredClone, MeteredContainer, MeteredIterator, + }, + host_object::{HostMap, HostObject, HostVec}, + num::{i256_from_pieces, i256_into_pieces, u256_from_pieces, u256_into_pieces}, + xdr::{ + self, int128_helpers, AccountId, ContractCostType, ContractDataDurability, Hash, + Int128Parts, Int256Parts, LedgerKey, LedgerKeyContractData, ScAddress, ScBytes, + ScErrorCode, ScErrorType, ScMap, ScMapEntry, ScSymbol, ScVal, ScVec, UInt128Parts, + UInt256Parts, Uint256, VecM, + }, + AddressObject, BytesObject, Convert, Host, HostError, Object, ScValObjRef, ScValObject, Symbol, + SymbolObject, TryFromVal, TryIntoVal, U32Val, Val, VecObject, }; impl Host { @@ -263,6 +261,14 @@ impl Host { self.visit_obj(address, |addr: &ScAddress| addr.metered_clone(self)) } + pub(crate) fn scsymbol_from_symbol(&self, symbol: Symbol) -> Result { + if let Ok(sobj) = SymbolObject::try_from(symbol) { + self.visit_obj(sobj, |sym: &ScSymbol| sym.metered_clone(self)) + } else { + self.map_err(ScSymbol::try_from_val(self, &symbol)) + } + } + pub(crate) fn host_map_to_scmap(&self, map: &HostMap) -> Result { Vec::::charge_bulk_init_cpy(map.len() as u64, self)?; let mut mv = Vec::with_capacity(map.len());