From 32636e535ef5bc67bb3db5cdf9b0fbbd7f564d28 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Fri, 23 Aug 2024 12:17:37 +0200 Subject: [PATCH 01/25] Proto/AI: new dynmax curve --- .../lib_protocol/adaptive_issuance_storage.ml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/proto_alpha/lib_protocol/adaptive_issuance_storage.ml b/src/proto_alpha/lib_protocol/adaptive_issuance_storage.ml index 3f4e34edb958..e42a33eb7dea 100644 --- a/src/proto_alpha/lib_protocol/adaptive_issuance_storage.ml +++ b/src/proto_alpha/lib_protocol/adaptive_issuance_storage.ml @@ -155,14 +155,14 @@ let dyn_max ~stake_ratio = if Compare.Q.(stake_ratio <= Q.(5 // 100)) then Q.(10 // 100) else if Compare.Q.(stake_ratio >= Q.(50 // 100)) then Q.(1 // 100) else - (* (5115 - 17670 * x + 19437 * (x ^ 2)) / (24149 + 178695 * x) *) - let q5115 = Q.of_int 5115 in - let q17670 = Q.of_int 17670 in - let q19437 = Q.of_int 19437 in - let q24149 = Q.of_int 24149 in - let q178695 = Q.of_int 178695 in + (* (1 + 9 * ((50 - 100 * x) / 42 ) ^ 2 ) / 100 *) + let q9 = Q.of_int 9 in + let q50 = Q.of_int 50 in + let q100 = Q.of_int 100 in + let q42 = Q.of_int 42 in let x = stake_ratio in - Q.((q5115 - (q17670 * x) + (q19437 * x * x)) / (q24149 + (q178695 * x))) + let to_square = Q.((q50 - (q100 * x)) / q42) in + Q.((one + (q9 * to_square * to_square)) / q100) in if Compare.Q.(r <= Q.(1 // 100)) then Q.(1 // 100) else if Compare.Q.(r >= Q.(10 // 100)) then Q.(10 // 100) -- GitLab From 744e001a0709a9bcf368cff018ef304b03c40c04 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Fri, 23 Aug 2024 12:17:51 +0200 Subject: [PATCH 02/25] Proto/AI: update tests --- .../lib_protocol/test/unit/test_adaptive_issuance.ml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/proto_alpha/lib_protocol/test/unit/test_adaptive_issuance.ml b/src/proto_alpha/lib_protocol/test/unit/test_adaptive_issuance.ml index 34384dafd13e..6229804b5544 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_adaptive_issuance.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_adaptive_issuance.ml @@ -627,12 +627,12 @@ let test_dyn_max () = (1 // 100, 10 // 100); (5 // 100, 10 // 100); (7_91 // 100_00, 10 // 100); - (10 // 100, 354237 // 4201850); - (15 // 100, 1160733 // 20381300); - (20 // 100, 29481 // 748600); - (30 // 100, 156333 // 7775750); - (40 // 100, 28923 // 2390675); - (49_9 // 100_0, 1137502437 // 113317805000); + (10 // 100, 449 // 4900); + (15 // 100, 29 // 400); + (20 // 100, 137 // 2450); + (30 // 100, 149 // 4900); + (40 // 100, 37 // 2450); + (49_9 // 100_0, 19601 // 1960000); (50 // 100, 1 // 100); (100 // 100, 1 // 100); (222 // 100, 1 // 100); -- GitLab From 1fa6bfb0f52b76130b9693fc2ca7c332f56d6558 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Fri, 23 Aug 2024 12:18:25 +0200 Subject: [PATCH 03/25] beta/Proto/AI: new dynmax curve Porting to proto beta 32636e535ef5bc67bb3db5cdf9b0fbbd7f564d28 - Proto/AI: new dynmax curve --- .../lib_protocol/adaptive_issuance_storage.ml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/proto_beta/lib_protocol/adaptive_issuance_storage.ml b/src/proto_beta/lib_protocol/adaptive_issuance_storage.ml index 3f4e34edb958..e42a33eb7dea 100644 --- a/src/proto_beta/lib_protocol/adaptive_issuance_storage.ml +++ b/src/proto_beta/lib_protocol/adaptive_issuance_storage.ml @@ -155,14 +155,14 @@ let dyn_max ~stake_ratio = if Compare.Q.(stake_ratio <= Q.(5 // 100)) then Q.(10 // 100) else if Compare.Q.(stake_ratio >= Q.(50 // 100)) then Q.(1 // 100) else - (* (5115 - 17670 * x + 19437 * (x ^ 2)) / (24149 + 178695 * x) *) - let q5115 = Q.of_int 5115 in - let q17670 = Q.of_int 17670 in - let q19437 = Q.of_int 19437 in - let q24149 = Q.of_int 24149 in - let q178695 = Q.of_int 178695 in + (* (1 + 9 * ((50 - 100 * x) / 42 ) ^ 2 ) / 100 *) + let q9 = Q.of_int 9 in + let q50 = Q.of_int 50 in + let q100 = Q.of_int 100 in + let q42 = Q.of_int 42 in let x = stake_ratio in - Q.((q5115 - (q17670 * x) + (q19437 * x * x)) / (q24149 + (q178695 * x))) + let to_square = Q.((q50 - (q100 * x)) / q42) in + Q.((one + (q9 * to_square * to_square)) / q100) in if Compare.Q.(r <= Q.(1 // 100)) then Q.(1 // 100) else if Compare.Q.(r >= Q.(10 // 100)) then Q.(10 // 100) -- GitLab From 7635edc1570960cba80d3fc1eab6d4eff9d5596e Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Fri, 23 Aug 2024 12:18:35 +0200 Subject: [PATCH 04/25] beta/Proto/AI: update tests Porting to proto beta 744e001a0709a9bcf368cff018ef304b03c40c04 - Proto/AI: update tests --- .../lib_protocol/test/unit/test_adaptive_issuance.ml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/proto_beta/lib_protocol/test/unit/test_adaptive_issuance.ml b/src/proto_beta/lib_protocol/test/unit/test_adaptive_issuance.ml index 3b4851651224..594ab87e2671 100644 --- a/src/proto_beta/lib_protocol/test/unit/test_adaptive_issuance.ml +++ b/src/proto_beta/lib_protocol/test/unit/test_adaptive_issuance.ml @@ -627,12 +627,12 @@ let test_dyn_max () = (1 // 100, 10 // 100); (5 // 100, 10 // 100); (7_91 // 100_00, 10 // 100); - (10 // 100, 354237 // 4201850); - (15 // 100, 1160733 // 20381300); - (20 // 100, 29481 // 748600); - (30 // 100, 156333 // 7775750); - (40 // 100, 28923 // 2390675); - (49_9 // 100_0, 1137502437 // 113317805000); + (10 // 100, 449 // 4900); + (15 // 100, 29 // 400); + (20 // 100, 137 // 2450); + (30 // 100, 149 // 4900); + (40 // 100, 37 // 2450); + (49_9 // 100_0, 19601 // 1960000); (50 // 100, 1 // 100); (100 // 100, 1 // 100); (222 // 100, 1 // 100); -- GitLab From 2ee6938d8376261c10f1c11cc52b4738d71ec59f Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Fri, 23 Aug 2024 16:21:39 +0200 Subject: [PATCH 05/25] Beta: update hash --- docs/Makefile | 2 +- docs/beta/rpc.rst | 52 +++++++++---------- src/bin_client/octez-init-sandboxed-client.sh | 2 +- .../final_protocol_versions | 2 +- src/proto_beta/lib_protocol/TEZOS_PROTOCOL | 2 +- src/proto_beta/lib_protocol/dune | 2 +- tezt/lib_tezos/protocol.ml | 2 +- ... client) RPC regression tests- mempool.out | 34 ++++++------ ...e proxy) RPC regression tests- mempool.out | 34 ++++++------ .../baker_test.ml/Beta-- Baker rewards.out | 4 +- ...abs--storage125992234--input254251340-.out | 2 +- ...abs--storage125992234--input420401245-.out | 2 +- ...abs--storage125992234--input680650890-.out | 2 +- ...add--storage125992234--input125992234-.out | 2 +- ..._fr--storage921624073--input322109491-.out | 2 +- ..._fr--storage921624073--input461261325-.out | 2 +- ..._fr--storage921624073--input530006774-.out | 2 +- ..._fr--storage921624073--input712570300-.out | 2 +- ...amp--storage921624073--input249636002-.out | 2 +- ...amp--storage921624073--input267363182-.out | 2 +- ...amp--storage921624073--input438561129-.out | 2 +- ...lta--storage921624073--input249636002-.out | 2 +- ...lta--storage921624073--input307538219-.out | 2 +- ...lta--storage921624073--input373737581-.out | 2 +- ...ess--storage921624073--input117475800-.out | 2 +- ...and--storage921624073--input106930123-.out | 2 +- ...and--storage921624073--input181204719-.out | 2 +- ...and--storage921624073--input223774825-.out | 2 +- ...and--storage921624073--input908807505-.out | 2 +- ...ary--storage125992234--input125992234-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...l_1--storage570553153--input106930123-.out | 2 +- ...l_1--storage570553153--input181204719-.out | 2 +- ...l_1--storage570553153--input223774825-.out | 2 +- ...l_1--storage570553153--input908807505-.out | 2 +- ...nce--storage492856247--input125992234-.out | 2 +- ...nat--storage495706788--input453441034-.out | 2 +- ..._nat--storage56274299--input453441034-.out | 2 +- ..._nat--storage56274299--input564400327-.out | 2 +- ..._nat--storage56274299--input654274102-.out | 2 +- ...nat--storage690637660--input453441034-.out | 2 +- ...nat--storage806237530--input453441034-.out | 2 +- ...ng--storage109689253--input1071610051-.out | 2 +- ...ing--storage109689253--input700475845-.out | 2 +- ...ing--storage109689253--input905318451-.out | 2 +- ...ing--storage495706788--input700475845-.out | 2 +- ...ing--storage915708427--input700475845-.out | 2 +- ...ing--storage936682951--input905318451-.out | 2 +- ...t_padded--storage921624073--input12599.out | 2 +- ...nat--storage921624073--input125992234-.out | 2 +- ...nt--storage680650890--input1043734173-.out | 2 +- ...int--storage680650890--input151303925-.out | 2 +- ...int--storage680650890--input520610122-.out | 2 +- ...int--storage680650890--input558805129-.out | 2 +- ...tez--storage680650890--input229402968-.out | 2 +- ...nt--storage287336412--input1019409032-.out | 2 +- ...int--storage698210250--input949526473-.out | 2 +- ...int--storage739946440--input166435292-.out | 2 +- ...int--storage739946440--input583291483-.out | 2 +- ...nt--storage994282947--input1055524890-.out | 2 +- ...int--storage994282947--input453441034-.out | 2 +- ...int--storage994282947--input564400327-.out | 2 +- ...int--storage994282947--input585234482-.out | 2 +- ...int--storage994282947--input680650890-.out | 2 +- ...int--storage994282947--input701858804-.out | 2 +- ...at--storage287336412--input1019409032-.out | 2 +- ...nat--storage698210250--input949526473-.out | 2 +- ...nat--storage739946440--input166435292-.out | 2 +- ...nat--storage739946440--input583291483-.out | 2 +- ...at--storage994282947--input1055524890-.out | 2 +- ...nat--storage994282947--input453441034-.out | 2 +- ...nat--storage994282947--input564400327-.out | 2 +- ...nat--storage994282947--input680650890-.out | 2 +- ...nt--storage287336412--input1019409032-.out | 2 +- ...int--storage698210250--input949526473-.out | 2 +- ...int--storage739946440--input166435292-.out | 2 +- ...int--storage739946440--input583291483-.out | 2 +- ...nt--storage994282947--input1055524890-.out | 2 +- ...int--storage994282947--input453441034-.out | 2 +- ...int--storage994282947--input564400327-.out | 2 +- ...int--storage994282947--input585234482-.out | 2 +- ...int--storage994282947--input680650890-.out | 2 +- ...int--storage994282947--input701858804-.out | 2 +- ...at--storage287336412--input1019409032-.out | 2 +- ...nat--storage698210250--input949526473-.out | 2 +- ...nat--storage739946440--input166435292-.out | 2 +- ...nat--storage739946440--input583291483-.out | 2 +- ...at--storage994282947--input1055524890-.out | 2 +- ...nat--storage994282947--input453441034-.out | 2 +- ...nat--storage994282947--input564400327-.out | 2 +- ...nat--storage994282947--input680650890-.out | 2 +- ...int--storage125992234--input125992234-.out | 2 +- ...nat--storage125992234--input125992234-.out | 2 +- ...car--storage680650890--input783124233-.out | 2 +- ...cdr--storage680650890--input783124233-.out | 2 +- ...ore--storage109160754--input125992234-.out | 2 +- ...ore--storage921624073--input125992234-.out | 2 +- ...ore--storage981066851--input125992234-.out | 2 +- ...omb--storage950292965--input125992234-.out | 2 +- ...get--storage125992234--input186507116-.out | 2 +- ...set--storage186507116--input125992234-.out | 2 +- ...t-2--storage921624073--input186507116-.out | 2 +- ...are--storage125992234--input125992234-.out | 2 +- ...ons--storage457300675--input281780712-.out | 2 +- ...llo--storage457300675--input392583650-.out | 2 +- ...llo--storage457300675--input457300675-.out | 2 +- ...llo--storage457300675--input640104625-.out | 2 +- ...tes--storage457300675--input354091714-.out | 2 +- ...tes--storage457300675--input441061063-.out | 2 +- ...tes--storage457300675--input457300675-.out | 2 +- ...list--storage79230375--input264787654-.out | 2 +- ...list--storage79230375--input316676251-.out | 2 +- ...list--storage79230375--input457300675-.out | 2 +- ...ons--storage457300675--input798141440-.out | 2 +- ...ons--storage581876226--input166122047-.out | 2 +- ...ons--storage793461282--input781487591-.out | 2 +- ...all--storage921624073--input315650912-.out | 2 +- ..._all--storage921624073--input51111414-.out | 2 +- ...all--storage921624073--input545734274-.out | 2 +- ...all--storage921624073--input772794967-.out | 2 +- ...all--storage921624073--input917967660-.out | 2 +- ...all--storage921624073--input964818218-.out | 2 +- ...act--storage125992234--input117475800-.out | 2 +- ...act--storage921624073--input125992234-.out | 2 +- ...ps--storage492856247--input1011138251-.out | 2 +- ...ps--storage492856247--input1018564342-.out | 2 +- ...ps--storage492856247--input1031049988-.out | 2 +- ...mps--storage492856247--input685590443-.out | 2 +- ..._eq--storage125992234--input246866101-.out | 2 +- ...g_eq--storage125992234--input26856104-.out | 2 +- ...ign--storage680650890--input529388602-.out | 2 +- ...ip--storage1011138251--input590117173-.out | 2 +- ...ip--storage1011138251--input850887554-.out | 2 +- ...ipn--storage680650890--input529388602-.out | 2 +- ...opn--storage680650890--input529388602-.out | 2 +- ...ugn--storage680650890--input529388602-.out | 2 +- ...p-n--storage125992234--input125992234-.out | 2 +- ...div--storage994417987--input247451205-.out | 2 +- ...div--storage994417987--input250545589-.out | 2 +- ...ediv--storage994417987--input79625541-.out | 2 +- ...tez--storage977883604--input147133089-.out | 2 +- ...tez--storage977883604--input215785357-.out | 2 +- ...tez--storage977883604--input389351431-.out | 2 +- ...utez--storage977883604--input44513000-.out | 2 +- ...tez--storage977883604--input635398196-.out | 2 +- ...tez--storage977883604--input734264738-.out | 2 +- ...tez--storage977883604--input993071382-.out | 2 +- ...mit--storage125992234--input125992234-.out | 2 +- ...map--storage457300675--input125992234-.out | 2 +- ...cat--storage398998998--input246262487-.out | 2 +- ...ncat--storage398998998--input79230375-.out | 2 +- ...rst--storage492856247--input478406404-.out | 2 +- ...rst--storage492856247--input962874972-.out | 2 +- ...ap--storage1026405794--input329240220-.out | 2 +- ...map--storage382368661--input329240220-.out | 2 +- ...map--storage496578814--input329240220-.out | 2 +- ...map--storage496578814--input507231566-.out | 2 +- ...map--storage547821324--input329240220-.out | 2 +- ...map--storage796012494--input156280093-.out | 2 +- ...map--storage796012494--input228164856-.out | 2 +- ...lue--storage139236239--input329240220-.out | 2 +- ...alue--storage139236239--input79230375-.out | 2 +- ...lue--storage329396864--input156280093-.out | 2 +- ...ey--storage921624073--input1040351577-.out | 2 +- ...key--storage921624073--input153350004-.out | 2 +- ...tring--storage151303925--input3431716-.out | 2 +- ...ing--storage151303925--input535018041-.out | 2 +- ...-if--storage921624073--input570553153-.out | 2 +- ...-if--storage921624073--input954397288-.out | 2 +- ...ome--storage398998998--input288201633-.out | 2 +- ...ome--storage398998998--input921624073-.out | 2 +- ...int--storage921624073--input453441034-.out | 2 +- ...int--storage921624073--input535454136-.out | 2 +- ...int--storage921624073--input680650890-.out | 2 +- ...ak--storage921624073--input1008262038-.out | 2 +- ...right--storage4177631--input202098045-.out | 2 +- ..._right--storage4177631--input44576556-.out | 2 +- ...vel--storage492856247--input125992234-.out | 2 +- ...cat--storage717096222--input457300675-.out | 2 +- ...cat--storage717096222--input546523343-.out | 2 +- ...tes--storage149262694--input220724351-.out | 2 +- ...tes--storage149262694--input457300675-.out | 2 +- ...ytes--storage65410082--input457300675-.out | 2 +- ...tes--storage726220441--input972761363-.out | 2 +- ..._id--storage528921618--input264787654-.out | 2 +- ..._id--storage528921618--input457300675-.out | 2 +- ..._id--storage528921618--input656499821-.out | 2 +- ...map--storage528921618--input264787654-.out | 2 +- ...map--storage528921618--input457300675-.out | 2 +- ...map--storage528921618--input656499821-.out | 2 +- ...ter--storage680650890--input568817463-.out | 2 +- ...ter--storage680650890--input737923774-.out | 2 +- ...ock--storage907453363--input457300675-.out | 2 +- ...ock--storage907453363--input648737279-.out | 2 +- ...ock--storage907453363--input908379154-.out | 2 +- ...ize--storage492856247--input403499055-.out | 2 +- ...ize--storage492856247--input457300675-.out | 2 +- ...ize--storage492856247--input469078912-.out | 2 +- ...ize--storage492856247--input802622031-.out | 2 +- ...eft--storage528921618--input457300675-.out | 2 +- ...eft--storage528921618--input851203613-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...id--storage457300675--input1027566226-.out | 2 +- ..._id--storage457300675--input276660554-.out | 2 +- ..._id--storage457300675--input599923743-.out | 2 +- ...er--storage1011138251--input403579222-.out | 2 +- ...er--storage1011138251--input532072758-.out | 2 +- ...map--storage457300675--input798141440-.out | 2 +- ...map--storage794999348--input152441147-.out | 2 +- ..._map--storage88008216--input798141440-.out | 2 +- ...nat--storage495706788--input453441034-.out | 2 +- ..._nat--storage56274299--input453441034-.out | 2 +- ..._nat--storage56274299--input564400327-.out | 2 +- ..._nat--storage56274299--input654274102-.out | 2 +- ...nat--storage690637660--input453441034-.out | 2 +- ...nat--storage806237530--input453441034-.out | 2 +- ...ng--storage109689253--input1071610051-.out | 2 +- ...ing--storage109689253--input700475845-.out | 2 +- ...ing--storage109689253--input905318451-.out | 2 +- ...ing--storage495706788--input700475845-.out | 2 +- ...ing--storage915708427--input700475845-.out | 2 +- ...ing--storage936682951--input905318451-.out | 2 +- ...size--storage492856247--input15265129-.out | 2 +- ...ize--storage492856247--input158311065-.out | 2 +- ...ize--storage492856247--input456982702-.out | 2 +- ...ize--storage492856247--input457300675-.out | 2 +- ...mul--storage125992234--input125992234-.out | 2 +- ..._fr--storage151303925--input216277421-.out | 2 +- ..._fr--storage287799761--input485842614-.out | 2 +- ...eg--storage680650890--input1067298059-.out | 2 +- ...neg--storage680650890--input380029349-.out | 2 +- ...neg--storage680650890--input563503226-.out | 2 +- ...neg--storage680650890--input788662499-.out | 2 +- ...neg--storage680650890--input972832189-.out | 2 +- ...none--storage11179311--input125992234-.out | 2 +- ...not--storage921624073--input570553153-.out | 2 +- ...not--storage921624073--input954397288-.out | 2 +- ...ry--storage921624073--input1051197453-.out | 2 +- ...ary--storage921624073--input123939249-.out | 2 +- ...nary--storage921624073--input24243730-.out | 2 +- ...ary--storage921624073--input518945720-.out | 2 +- ...ary--storage921624073--input788662499-.out | 2 +- ...ary--storage921624073--input906118781-.out | 2 +- ...ary--storage921624073--input921874253-.out | 2 +- ...ary--storage921624073--input972832189-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...-or--storage921624073--input106930123-.out | 2 +- ...-or--storage921624073--input181204719-.out | 2 +- ...-or--storage921624073--input223774825-.out | 2 +- ...-or--storage921624073--input908807505-.out | 2 +- ...ry--storage921624073--input1056991424-.out | 2 +- ...ary--storage921624073--input375993021-.out | 2 +- ...ary--storage921624073--input673240563-.out | 2 +- ...ary--storage921624073--input747448890-.out | 2 +- ...ary--storage921624073--input832403787-.out | 2 +- ...ary--storage921624073--input858098961-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...rev--storage125992234--input305844558-.out | 2 +- ...rev--storage125992234--input646365167-.out | 2 +- ...ty--storage125992234--input1028781121-.out | 2 +- ...cty--storage125992234--input802670583-.out | 2 +- ..._id--storage921624073--input106930123-.out | 2 +- ..._id--storage921624073--input181204719-.out | 2 +- ..._id--storage921624073--input223774825-.out | 2 +- ..._id--storage921624073--input908807505-.out | 2 +- ...ec--storage256947135--input1050356042-.out | 2 +- ...c_2--storage197120858--input179371027-.out | 2 +- ...int--storage921624073--input125992234-.out | 2 +- ...rse--storage528921618--input457300675-.out | 2 +- ...rse--storage528921618--input851203613-.out | 2 +- ...oop--storage528921618--input457300675-.out | 2 +- ...oop--storage528921618--input851203613-.out | 2 +- ...ate--storage457300675--input125992234-.out | 2 +- ...ess--storage125992234--input125992234-.out | 2 +- ...int--storage125992234--input125992234-.out | 2 +- ...int--storage125992234--input289072903-.out | 2 +- ...car--storage224747103--input620760059-.out | 2 +- ...car--storage224747103--input717096222-.out | 2 +- ..._car--storage224747103--input79230375-.out | 2 +- ...cdr--storage205576101--input654274102-.out | 2 +- ...cdr--storage224747103--input453441034-.out | 2 +- ...cdr--storage611418174--input967284912-.out | 2 +- ..._id--storage457300675--input264787654-.out | 2 +- ..._id--storage457300675--input457300675-.out | 2 +- ..._id--storage457300675--input989507347-.out | 2 +- ...ter--storage492856247--input457300675-.out | 2 +- ...ter--storage492856247--input701684511-.out | 2 +- ...ter--storage492856247--input802622031-.out | 2 +- ...mber--storage495706788--input33757838-.out | 2 +- ...mber--storage550087893--input79230375-.out | 2 +- ...mber--storage605111220--input33757838-.out | 2 +- ...ize--storage492856247--input403499055-.out | 2 +- ...ize--storage492856247--input457300675-.out | 2 +- ...ize--storage492856247--input469078912-.out | 2 +- ...ize--storage492856247--input802622031-.out | 2 +- ...a3--storage921624073--input1008262038-.out | 2 +- ...fts--storage921624073--input115382786-.out | 2 +- ...fts--storage921624073--input271566295-.out | 2 +- ...fts--storage921624073--input340971987-.out | 2 +- ...fts--storage921624073--input374168553-.out | 2 +- ...fts--storage921624073--input413621582-.out | 2 +- ...fts--storage921624073--input424849461-.out | 2 +- ...fts--storage921624073--input485030042-.out | 2 +- ...fts--storage921624073--input705767726-.out | 2 +- ...fts--storage921624073--input769385932-.out | 2 +- ...fts--storage921624073--input913715337-.out | 2 +- ...lice--storage351480851--input65907686-.out | 2 +- ...ice--storage364922380--input198821575-.out | 2 +- ...ice--storage364922380--input359592843-.out | 2 +- ...ice--storage364922380--input551316239-.out | 2 +- ...ice--storage364922380--input722749044-.out | 2 +- ...ice--storage364922380--input839234860-.out | 2 +- ...ice--storage364922380--input919180079-.out | 2 +- ...ice--storage921624073--input551316239-.out | 2 +- ...tes--storage229749865--input198821575-.out | 2 +- ...tes--storage229749865--input462551352-.out | 2 +- ...tes--storage229749865--input489157380-.out | 2 +- ...tes--storage229749865--input551316239-.out | 2 +- ...tes--storage229749865--input669330759-.out | 2 +- ...tes--storage229749865--input743596105-.out | 2 +- ...tes--storage229749865--input839234860-.out | 2 +- ...ytes--storage504917929--input65907686-.out | 2 +- ...tes--storage921624073--input462551352-.out | 2 +- ...id--storage921624073--input1016369050-.out | 2 +- ...r_id--storage921624073--input93477117-.out | 2 +- ...lta--storage492856247--input249636002-.out | 2 +- ...lta--storage492856247--input307538219-.out | 2 +- ...lta--storage492856247--input831449542-.out | 2 +- ...sub--storage921624073--input706350605-.out | 2 +- ...sub--storage921624073--input856198194-.out | 2 +- ...omb--storage680650890--input394061083-.out | 2 +- ...air--storage125992234--input125992234-.out | 2 +- ...r--storage1011138251--input1040351577-.out | 2 +- ...or--storage921624073--input1058477720-.out | 2 +- ...or--storage921624073--input1073176155-.out | 2 +- ...xor--storage921624073--input246594902-.out | 2 +- ...xor--storage921624073--input506603577-.out | 2 +- ...xor--storage921624073--input576248088-.out | 2 +- ...xor--storage921624073--input612012282-.out | 2 +- ...xor--storage921624073--input617591686-.out | 2 +- ...xor--storage921624073--input639311176-.out | 2 +- ...xor--storage921624073--input688315180-.out | 2 +- ...xor--storage921624073--input967929605-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- .../Beta-- Tc scripts.out | 2 +- ... integration (Use all available slots).out | 6 +-- .../tzt_regression.ml/Beta-- Run TZT.out | 2 +- 348 files changed, 408 insertions(+), 408 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index 42fdc9e662b0..44ac251db9a0 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -21,7 +21,7 @@ PROTOCOLS = $(NAMED_PROTOS) alpha beta # The following variables names are lowercase, so their names can be computed # from the names of the corresponding protocol directories paris_long = PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi -beta_long = PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg +beta_long = Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY alpha_long = ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK paris_short = PtParisC diff --git a/docs/beta/rpc.rst b/docs/beta/rpc.rst index f397679bdee9..7188b03f7a38 100644 --- a/docs/beta/rpc.rst +++ b/docs/beta/rpc.rst @@ -257,7 +257,7 @@ Full description
     { /* block_info_encoding_v1 */
-      "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+      "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
       "chain_id": $Chain_id,
       "hash": $block_hash,
       "header": $raw_block_header,
@@ -2885,8 +2885,8 @@ Full description
       /* A block identifier (Base58Check-encoded) */
       $unistring
     $block_header_metadata:
-      { "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
-        "next_protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+      { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+        "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "test_chain_status": $test_chain_status,
         "max_operations_ttl": integer ∈ [-2^30, 2^30],
         "max_operation_data_length": integer ∈ [-2^30, 2^30],
@@ -2991,7 +2991,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $operation:
       { /* An operation's shell header. */
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "chain_id": $Chain_id,
         "hash": $Operation_hash,
         "branch": $block_hash,
@@ -2999,14 +2999,14 @@ Full description
         "signature"?: $Signature.V1,
         "metadata": "too large" }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
            "contents": [ $beta.operation.alpha.contents ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -3014,7 +3014,7 @@ Full description
              [ $beta.operation.alpha.operation_contents_and_result ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -16622,7 +16622,7 @@ Full description
     { /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
-      "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+      "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
       "chain_id": $Chain_id,
       "hash": $block_hash,
       "level": integer ∈ [-2^31-1, 2^31],
@@ -16846,7 +16846,7 @@ Full description
             
-    { "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+    { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
       "payload_hash": $value_hash,
       "payload_round": integer ∈ [-2^31-1, 2^31],
       "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
@@ -17328,7 +17328,7 @@ Full description
   
     { "protocol_data":
-        { "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
           "payload_hash": $value_hash,
           "payload_round": integer ∈ [-2^31-1, 2^31],
           "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
@@ -17980,7 +17980,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $next_operation:
       /* An operation's shell header. */
-      { "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+      { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": $block_hash,
         "contents": [ $beta.operation.alpha.contents ... ],
         "signature"?: $Signature.V1 }
@@ -21281,7 +21281,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $next_operation:
       /* An operation's shell header. */
-      { "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+      { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": $block_hash,
         "contents": [ $beta.operation.alpha.contents ... ],
         "signature"?: $Signature.V1 }
@@ -33169,8 +33169,8 @@ Full description
       /* A block identifier (Base58Check-encoded) */
       $unistring
     $block_header_metadata:
-      { "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
-        "next_protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+      { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+        "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "test_chain_status": $test_chain_status,
         "max_operations_ttl": integer ∈ [-2^30, 2^30],
         "max_operation_data_length": integer ∈ [-2^30, 2^30],
@@ -38065,7 +38065,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $operation:
       { /* An operation's shell header. */
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "chain_id": $Chain_id,
         "hash": $Operation_hash,
         "branch": $block_hash,
@@ -38073,14 +38073,14 @@ Full description
         "signature"?: $Signature.V1,
         "metadata": "too large" }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
            "contents": [ $beta.operation.alpha.contents ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -38088,7 +38088,7 @@ Full description
              [ $beta.operation.alpha.operation_contents_and_result ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -47398,7 +47398,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $operation:
       { /* An operation's shell header. */
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "chain_id": $Chain_id,
         "hash": $Operation_hash,
         "branch": $block_hash,
@@ -47406,14 +47406,14 @@ Full description
         "signature"?: $Signature.V1,
         "metadata": "too large" }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
            "contents": [ $beta.operation.alpha.contents ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -47421,7 +47421,7 @@ Full description
              [ $beta.operation.alpha.operation_contents_and_result ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -56717,7 +56717,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $operation:
       { /* An operation's shell header. */
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "chain_id": $Chain_id,
         "hash": $Operation_hash,
         "branch": $block_hash,
@@ -56725,14 +56725,14 @@ Full description
         "signature"?: $Signature.V1,
         "metadata": "too large" }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
            "contents": [ $beta.operation.alpha.contents ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -56740,7 +56740,7 @@ Full description
              [ $beta.operation.alpha.operation_contents_and_result ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
diff --git a/src/bin_client/octez-init-sandboxed-client.sh b/src/bin_client/octez-init-sandboxed-client.sh
index 66efa231a1f3..6f39beac2070 100755
--- a/src/bin_client/octez-init-sandboxed-client.sh
+++ b/src/bin_client/octez-init-sandboxed-client.sh
@@ -207,7 +207,7 @@ main() {
   cat << EOF
 if type octez-client-reset >/dev/null 2>&1 ; then octez-client-reset; fi ;
 PATH="$client_dir/bin:\$PATH" ; export PATH ;
-alias octez-activate-beta="$client -block genesis activate protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg with fitness 1 and key activator and parameters $beta_parameters_file";
+alias octez-activate-beta="$client -block genesis activate protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY with fitness 1 and key activator and parameters $beta_parameters_file";
 alias octez-activate-alpha="$client  -block genesis activate protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK with fitness 1 and key activator and parameters $parameters_file" ;
 alias octez-client-reset="rm -rf \"$client_dir\"; unalias octez-activate-alpha octez-client-reset" ;
 alias octez-autocomplete="if [ \$ZSH_NAME ] ; then autoload bashcompinit ; bashcompinit ; fi ; source \"$bin_dir/bash-completion.sh\"" ;
diff --git a/src/lib_protocol_compiler/final_protocol_versions b/src/lib_protocol_compiler/final_protocol_versions
index 71d46fdf20c7..2931fff46c75 100644
--- a/src/lib_protocol_compiler/final_protocol_versions
+++ b/src/lib_protocol_compiler/final_protocol_versions
@@ -21,4 +21,4 @@ PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf
 ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH
 PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ
 PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi
-PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg
+Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY
diff --git a/src/proto_beta/lib_protocol/TEZOS_PROTOCOL b/src/proto_beta/lib_protocol/TEZOS_PROTOCOL
index 91d6535cb5e9..5846084c0cbb 100644
--- a/src/proto_beta/lib_protocol/TEZOS_PROTOCOL
+++ b/src/proto_beta/lib_protocol/TEZOS_PROTOCOL
@@ -1,6 +1,6 @@
 {
     "expected_env_version": 13,
-    "hash": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+    "hash": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
     "modules": [
         "Misc",
         "Non_empty_string",
diff --git a/src/proto_beta/lib_protocol/dune b/src/proto_beta/lib_protocol/dune
index c6d5bd145d9a..f676cd141603 100644
--- a/src/proto_beta/lib_protocol/dune
+++ b/src/proto_beta/lib_protocol/dune
@@ -314,7 +314,7 @@
  (action
   (write-file
    %{targets}
-   "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg\"\nlet name = Tezos_protocol_environment_beta.Name.name\ninclude Tezos_raw_protocol_beta\ninclude Tezos_raw_protocol_beta.Main\n")))
+   "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY\"\nlet name = Tezos_protocol_environment_beta.Name.name\ninclude Tezos_raw_protocol_beta\ninclude Tezos_raw_protocol_beta.Main\n")))
 
 (rule
  (targets tezos_protocol_beta.ml)
diff --git a/tezt/lib_tezos/protocol.ml b/tezt/lib_tezos/protocol.ml
index 8d410ff88a71..96aaafcc1e22 100644
--- a/tezt/lib_tezos/protocol.ml
+++ b/tezt/lib_tezos/protocol.ml
@@ -60,7 +60,7 @@ let tag protocol = String.lowercase_ascii (name protocol)
 let hash = function
   | Alpha -> "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK"
   | ParisC -> "PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi"
-  | Beta -> "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg"
+  | Beta -> "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY"
 (* DO NOT REMOVE, AUTOMATICALLY ADD STABILISED PROTOCOL HASH HERE *)
 
 let genesis_hash = "ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im"
diff --git a/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out
index d30a4fad5d12..eab8c54bb975 100644
--- a/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out	
+++ b/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out	
@@ -1,10 +1,10 @@
 
 curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true'
 []
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}]
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
 
 ./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true'
 { "validated":
@@ -20,7 +20,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
           "[SIGNATURE]" } ],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -36,7 +36,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -53,7 +53,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
               "expected": "2", "found": "1" } ] } ],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -87,7 +87,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
           "[SIGNATURE]" } ],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -103,7 +103,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -120,7 +120,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
               "expected": "2", "found": "1" } ] } ],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -150,7 +150,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
           "[SIGNATURE]" } ],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -166,7 +166,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -183,7 +183,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
               "expected": "2", "found": "1" } ] } ],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -222,7 +222,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
 { "validated": [],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -242,7 +242,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
 { "validated": [], "refused": [], "outdated": [], "branch_refused": [],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -262,7 +262,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
 { "validated": [], "refused": [], "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -284,7 +284,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "branch_delayed": [], "unprocessed": [] }
 
 curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true'
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
 
 ./octez-client rpc get /chains/main/mempool/filter
 { "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ],
diff --git a/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out
index 81b725494fbe..5bd731a0bee8 100644
--- a/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out	
+++ b/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out	
@@ -1,10 +1,10 @@
 
 curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true'
 []
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}]
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}]
 
 ./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true'
 { "validated":
@@ -20,7 +20,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
           "[SIGNATURE]" } ],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -36,7 +36,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -53,7 +53,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
               "expected": "2", "found": "1" } ] } ],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -87,7 +87,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
           "[SIGNATURE]" } ],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -103,7 +103,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -120,7 +120,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
               "expected": "2", "found": "1" } ] } ],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -150,7 +150,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
           "[SIGNATURE]" } ],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -166,7 +166,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -183,7 +183,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
               "expected": "2", "found": "1" } ] } ],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -222,7 +222,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
 { "validated": [],
   "refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -242,7 +242,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
 { "validated": [], "refused": [], "outdated": [], "branch_refused": [],
   "branch_delayed":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -262,7 +262,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
 { "validated": [], "refused": [], "outdated": [],
   "branch_refused":
     [ { "hash": "[OPERATION_HASH]",
-        "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
         "branch": "[BRANCH_HASH]",
         "contents":
           [ { "kind": "transaction",
@@ -284,7 +284,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t
   "branch_delayed": [], "unprocessed": [] }
 
 curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true'
-[{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
+[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}]
 
 ./octez-client --mode proxy rpc get /chains/main/mempool/filter
 { "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ],
diff --git a/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out b/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out
index a0baf31117d8..2a162bd14181 100644
--- a/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out	
+++ b/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out	
@@ -1,7 +1,7 @@
 
 ./octez-client rpc get /chains/main/blocks/head/metadata
-{ "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
-  "next_protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+{ "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+  "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
   "test_chain_status": { "status": "not_running" }, "max_operations_ttl": 2,
   "max_operation_data_length": 32768, "max_block_header_length": 289,
   "max_operation_list_length":
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out
index 8bca2e2d77a0..8aedc56863f0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out
index 47d3f4e8bb62..b1acf5625ef0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out
index a50ba9abe71f..709fa5db018c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out
index 4532081cc12e..85689de884e2 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out
index 897e66591bc4..22d08a99a3db 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack
 storage
   (Some 0x0100000000000000000000000000000000000000000000000000000000000000)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out
index 42cc650ba077..d0974f71a6b3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack
 storage
   (Some 0x0200000000000000000000000000000000000000000000000000000000000000)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out
index ab4016b3b190..dcc050c7a0fc 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack
 storage
   (Some 0x0100000000000000000000000000000000000000000000000000000000000000)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out
index 6d549c34fe04..c0dbdced85b4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack
 storage
   (Some 0x0000000000000000000000000000000000000000000000000000000000000000)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out
index e1526ea684d0..595da02825ce 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack
 storage
   (Some "1970-01-01T00:03:20Z")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out
index bacf2da2482d..e6d0cd633045 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack
 storage
   (Some "1970-01-01T00:00:00Z")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out
index 23430ff76aa1..f7cad2319bcc 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack
 storage
   (Some "1970-01-01T00:00:00Z")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out
index 35827af4a636..958c166f5eba 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack
 storage
   (Some "1970-01-01T00:03:20Z")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out
index 3f678216343a..c1311ab9a3ce 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack
 storage
   (Some "1970-01-01T00:00:00Z")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out
index f0cda9aba0c1..0489e1c046b4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack
 storage
   (Some "1970-01-01T00:00:00Z")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out
index 4e23447a07a7..dcf10f68d4f8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack
 storage
   (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out
index 87c863206d0b..e6b2572af5b1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out
index d3ee069bade3..28e2da25b283 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out
index 75f2df853ea4..202a98c2c1bc 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out
index c3313417e76c..d20207adb544 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out
index a29233984ccf..a727a8cb5000 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out
index dd665b4367f0..a8e17e49339b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out
index 0813088a9691..22acfbd1e476 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack
 storage
   False
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out
index c8073d67a53a..4e0c225b4363 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack
 storage
   False
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out
index f5ec70ae9556..6728b797792a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack
 storage
   False
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out
index 5140d5a8eed0..7bc47633b187 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack
 storage
   True
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out
index c275f8f4f3f0..8306c8ac1ae1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack
 storage
   4000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out
index ab369bc8a4b4..f4be767d992c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack
 storage
   (Pair 4 (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out
index ce3aa38340df..dbcb44089600 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack
 storage
   (Pair 4 (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out
index bdf4e08a3a90..32c6faf1cd1b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack
 storage
   (Pair 4 (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out
index 832c52a7da9d..23941a1a0513 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack
 storage
   (Pair 4 (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out
index abccc5b83253..dc5e6c49f69b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack
 storage
   (Pair 4 (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out
index bb8a4745e8af..00683e191601 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack
 storage
   (Pair 4 (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out
index 177677e1aaa4..43480a4c916a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack
 storage
   (Pair 4 (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out
index dbbb692e2255..87256bafd9b8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack
 storage
   (Pair 4 (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out
index fdb9640195f0..f61608fb0835 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack
 storage
   (Pair 4 (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out
index 8a79b935752f..bc538d84d6b1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack
 storage
   (Pair 4 (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out
index 6b28b0222ea8..dd1ded8e43ff 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack
 storage
   (Pair 4 (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out
index 192434dc4c28..b8ddab0922a6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack
 storage
   (Pair 4 (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out
index 5fb6379c51d9..f16b7bdd1fc8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack
 storage
   (Some 0x0000000000000000000000000000000000000000000000000000000000000000)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out
index 3be40e012ff8..3f1ac6450175 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack
 storage
   (Some 0x1000000000000000000000000000000000000000000000000000000000000000)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out
index 78b79e65adeb..5fa85dfeeb62 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out
index 692adafcc079..92f65630c1c9 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out
index 2c9e2f1459c6..5c1440293775 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack
 storage
   11320265829256585830781521966149529460476767408210445238902869222031333517497
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out
index 5e33d399e048..453e7b726011 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack
 storage
   17832688077013577776524784494464728518213913213412866604053735695200962927400
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out
index 85445919865f..9e4b6e573450 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack
 storage
   16
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out
index 1e3cf1c6ec77..19117149d4fd 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
 storage
   0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out
index dbeb53025b8e..8733fc75a55a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
 storage
   0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out
index 1d668531316a..22f7ea2a0485 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out
index 57614276988f..cde2c83388b5 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out
index 5662feeadda9..0fb0fb8b88e1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out
index ca30d846aa49..5f4572e2d300 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out
index c547478616a6..848a57200c75 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
 storage
   0x0200000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out
index b11753b7d137..885dba3004ec 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack
 storage
   0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out
index a0f3fb86f67b..c042c76cf705 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
 storage
   0x0000000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out
index c1a4b6db6616..4df9aa19c57f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack
 storage
   0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out
index 54a6d5d66fb9..4ed6bd428f1d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
 storage
   0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out
index 31dc96fcdf05..790c42f7d340 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
 storage
   0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out
index 540bc46d8866..41880044e415 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out
index 3114fb59bebd..9e2fb0222b47 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out
index dabf98389125..7eac320750d8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out
index 410cb068d7c9..ab4a4af613ec 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out
index 56b269a919a1..447436126f10 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
 storage
   0x0200000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out
index d979304feb73..39ef2eba692c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
 storage
   0x0000000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out
index 318c0591be2a..bfea9dee0d6d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
 storage
   0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out
index 46d016e32cf3..3a451113277f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
 storage
   0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out
index 5a2c9a0f811c..025cfa948409 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out
index 43b83ff16db7..14a9a9fcb76c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out
index d994123af93e..944c4f7a7183 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out
index af5e04cc9f25..ac1c1aac8b4a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out
index 139bd3ed1da9..7b7339c49ad5 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
 storage
   0x0200000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out
index b318dbd92656..0c457e989735 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack
 storage
   0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out
index f2acf172f3db..e714626e23a4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
 storage
   0x0000000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out
index 95f0524364bf..d0fb4f4008e3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack
 storage
   0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out
index 5775f5bdfe62..cc9ece83666d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack
 storage
   0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out
index 7f191a732d4b..3b0e11dd6b37 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack
 storage
   0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out
index b6276ee5a044..cf5f028e8f95 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out
index 461132595e76..8d7adea1dbc1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack
 storage
   0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out
index ac876e6dee2c..8004565f6159 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out
index 987a4b9818c4..8317aa531d96 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack
 storage
   0x0100000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out
index 3c49f7c48bc7..409ec7b43e65 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack
 storage
   0x0200000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out
index 563f411a6ce4..b62b00c60f07 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack
 storage
   0x0000000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out
index 16dc65e179f6..e9e0d695d65e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_int_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_int_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out
index 53857a969689..cf7ec8d036a4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_nat_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_nat_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out
index 5d6749dd89b7..8a99217e3735 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack
 storage
   34
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out
index f4edc13d61a5..cc3e037066a0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack
 storage
   17
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out
index 6c476609876a..323899d04954 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack
 storage
   (Some "NetXynUjJNZm7wi")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out
index ddf05f8f0f82..c9fb3c79c6e4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack
 storage
   (Some "NetXynUjJNZm7wi")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out
index 30b8febbbcd6..f2d173027028 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack
 storage
   (Some "NetXynUjJNZm7wi")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out
index 49cbdc544beb..b018dc32c841 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack
 storage
   (Pair 1 2 3)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out
index 87ea991a8f94..868637853043 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out
index 3d66e92abf98..f9cac9c2e703 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack
 storage
   (Pair 2 12 8 Unit)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out
index 5a85ef887e55..39e1cf06bddb 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack
 storage
   (Some (Pair 2 4 "toto" 0x01))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out
index 2ce6d45afde5..f375f7e6c2d8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out
index a2cd7ebf8d4a..39f31b0da339 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack
 storage
   { { False ; False ; False ; True ; True } ;
     { False ; False ; True ; True ; True } ;
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out
index 246e7938617d..d6c2778ccfc4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack
 storage
   { "Hello test1" ; "Hello test2" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out
index aeaee9e4c414..b6b5da4cba3a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out
index b48025979bcf..0249ea6c809a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack
 storage
   { "Hello World!" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out
index a3374b1bc893..7dd45b1f8c3f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack
 storage
   { 0xffab ; 0xffcd }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out
index 825f917d6c88..5aafd13f8bf0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack
 storage
   { 0xffcd }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out
index 00a7fdfb8e9f..2de52b5ad665 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out
index 92582abe2287..9212e4c752d1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
 storage
   "abc"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out
index 801f6258aaa5..d6e51c8f2c2a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack
 storage
   "Hello World!"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out
index 75c732c60083..6ae75474261f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack
 storage
   ""
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out
index 094ab59aba88..5bba9a5f71f7 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack
 storage
   { 10 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out
index ecbad624f267..047fc6b07794 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack
 storage
   { -5 ; 10 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out
index cb5b894c0609..f5cd90c5eb80 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack
 storage
   { 99 ; -5 ; 10 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out
index a64324e5f008..35747337e294 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out
index e56c2f919761..7af42b756c5d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out
index 06b48265cf63..472aeecbf422 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out
index 7a1bacf7edfc..a41e46ef014a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out
index 9811bf5c1af4..c829b60847c3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out
index 3b489c00ddc7..43e58c6813c3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out
index 3f344b7c122d..d00ebf1aac3e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out
index a59f5fc75917..a1b9e3bd1484 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack
 storage
   (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out
index 217dc36f2416..23975145d828 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out
index 256be795767a..d3155b0caebf 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack
 storage
   -1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out
index b0cb2cce142b..947b90f8306b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack
 storage
   200
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out
index 320a8fd42c5f..63f0f8f38e5d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out
index 53dedbb55570..f86331a8b87a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out
index d500ec36f313..85fd891e5e0e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out
index b0adbeb712d5..85e47161cbd6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
 storage
   5
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out
index 47b75e9f9d60..eb41db2eb99b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack
 storage
   (Pair 1 2)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out
index 06cd7505f40b..32522916c02a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack
 storage
   (Pair 15 24)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out
index f6db83c35331..eb33546d482b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
 storage
   6
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out
index 1cde054761bb..6de969b985e1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
 storage
   5
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out
index 0385d93c2af6..9780b994ad11 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out
index a702c20ce79d..18ef3deef4a3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out
index 3fa4356cf4bd..461f69741088 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack
 storage
   (Pair None None None None)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out
index dc0b684f8637..23b16c91fe9b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack
 storage
   (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out
index 26bf4a014eec..badb1c03c0ba 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack
 storage
   (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out
index 0476b53c071e..14c1adad94ee 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack
 storage
   (Right None)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out
index b147777e2fa1..29300d3ae449 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack
 storage
   (Right (Some (Pair 3 1)))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out
index d6af1eb5e2ba..19c846a26014 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack
 storage
   (Left (Some (Pair 1 0)))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out
index 9de78a295a72..bac85618c540 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack
 storage
   (Left None)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out
index e640435fb093..f1bc0bb7c99e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack
 storage
   (Left (Some (Pair 3 1)))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out
index 60b8eb0ff082..87f6704e4b96 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack
 storage
   (Right (Some (Pair 1 0)))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out
index cb194125ac16..6277928dea0e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack
 storage
   (Right (Some (Pair 0 5)))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out
index a774a1441b61..bf64584b3188 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out
index 3db706c37423..3a3bf0a15519 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack
 storage
   { Elt "hello" "world" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out
index 62fae3123273..59c4b5f097c6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack
 storage
   "test_abc"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out
index f78cef924aee..db354c690ba3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack
 storage
   "_abc"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out
index 7dd171f4395d..9a637fa52cbd 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack
 storage
   4
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out
index 12ce98da2378..d12e472b8bae 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out
index 8c53408847ba..027a9cbd9a00 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack
 storage
   (Pair (Some 4) {})
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out
index d3e5bb52e3e6..ab39039ae35a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack
 storage
   (Pair None { Elt "hello" 4 })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out
index 5a5590392e31..a8d22889df19 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack
 storage
   (Pair (Some 4) { Elt "hello" 5 })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out
index ea07c909ffe8..7031b7b17af2 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack
 storage
   (Pair None { Elt "hello" 4 ; Elt "hi" 5 })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out
index db661171a484..aeb43c6426ae 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack
 storage
   (Pair None {})
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out
index 9079ba65feda..009a78475dcd 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack
 storage
   (Pair (Some 1) { Elt "2" 2 })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out
index 6170cca087e9..893067fea180 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack
 storage
   (Pair (Some 2) { Elt "1" 1 })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out
index fe6ff9861867..4dd25ee0474a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack
 storage
   (Pair (Some "hi") { Elt "hello" "hi" })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out
index 3afce2b85157..bf4258ea3655 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack
 storage
   (Pair None { Elt "hello" "hi" })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out
index 23cd6f131896..f0c9b28914df 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack
 storage
   (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out
index f926c258b0f8..fc74c740a469 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack
 storage
   (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out
index 3781dbbc0bbe..7fa2caca4f70 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack
 storage
   (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out
index 5857cd721636..26310cb2dd6c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack
 storage
   0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out
index eeecd0dd55dd..f6052fdc3a86 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack
 storage
   0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out
index 05540f7fe926..cbdf54690628 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input False --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input False --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out
index a5ed3e8662a9..4ec815d1a3e4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input True --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input True --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out
index 0e5c988c6a3f..bb16afdb4d73 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack
 storage
   "hello"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out
index 75d90b6428dc..a7a003802134 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack
 storage
   ""
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out
index 1c66a5ee6c1d..f0fb66a5e650 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack
 storage
   (Some 1)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out
index 5a778dbf9b2e..c59f219b339f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack
 storage
   (Some 9999)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out
index 670051968671..9088ee55b531 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack
 storage
   (Some 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out
index 88a2e0ed8219..791245043bfb 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack
 storage
   (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out
index 3cbb0a248190..56295d6b4b1b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack
 storage
   (Right True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out
index cf94b46cc8a0..be216d354faa 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack
 storage
   (Left "a")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out
index 7531e2553a49..303be80ed128 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out
index 129b0f740f11..4ef8a9b6d8d0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack
 storage
   "abc"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out
index be33b8871b3d..ad82c0887e8f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack
 storage
   "abcdef"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out
index f4ec76a91ac0..c24c28976f06 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack
 storage
   0x001100
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out
index 1e3d7f0f718c..9b39bd7593ff 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack
 storage
   0x
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out
index 5b527cf4ab41..aaa5031021e8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack
 storage
   0xabcd
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out
index 7030eeaee840..d75d50309954 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack
 storage
   0x00abcdef00
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out
index 7657c809ae87..a4728525168f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
 storage
   { "a" ; "b" ; "c" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out
index 5377a82358c5..06fa025f65c9 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out
index 22595542164a..9f940627dd3d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack
 storage
   { "1" ; "2" ; "3" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out
index ddc40ef3175a..77f8015991d4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
 storage
   { "a" ; "b" ; "c" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out
index adc69b66b29e..df9818e79bc0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out
index 5f90f845698d..71f875f99280 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack
 storage
   { "1" ; "2" ; "3" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out
index 75d2bd3b1c2e..75bbae05fe5c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack
 storage
   20
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out
index 0cfd167c503d..7bc166f0e7c4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack
 storage
   162
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out
index 158e078c7bab..05df3a80babc 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out
index f8309ee0f2f1..3a09b07b7764 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack
 storage
   { 1 ; 3 ; 5 ; 3 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out
index 63ac93734a0d..aadc12022035 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack
 storage
   { 1 ; 2 ; 3 ; 4 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out
index 38a34e7cce71..82ec64a4826a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack
 storage
   6
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out
index 1692ecdc02d9..4d5481234198 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out
index 26b394e47961..73d830887000 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack
 storage
   3
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out
index 71de7ee9606b..fc60f1bd0d41 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out
index adeb050d258c..616482b1e619 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out
index 4625396beaff..29d81aacd087 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack
 storage
   { "a" ; "b" ; "c" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out
index df4eee6cbcb5..fbfa0297f0b1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsl_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsl_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out
index f775c88f3c45..eb40ab93ae38 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsr_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsr_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out
index bc809d9d9d2e..c7b3d0bcc6ab 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack
 storage
   { Elt 0 0 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out
index d268ba0ac3f5..de084914d24d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack
 storage
   { Elt 0 0 ; Elt 3 4 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out
index f28d69899f14..6023127daee0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack
 storage
   { Elt 0 1 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out
index f3bb64c6c610..99bb9ffa1b1b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack
 storage
   (Pair 3 101)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out
index ac555348fc06..ce7404644bcd 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack
 storage
   (Pair 2 200)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out
index 127c15e482bb..dcaeef9bccd0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out
index cba5dca5b79f..0890a8d10306 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack
 storage
   { Elt "bar" 20 ; Elt "foo" 16 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out
index d82f93f50b33..7cbc236e54b1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack
 storage
   { Elt "foo" 11 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out
index d651bde555df..ea2befa0cad7 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack
 storage
   (Pair {} (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out
index be51314b8559..d788a29e8944 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack
 storage
   (Pair { Elt 1 4 ; Elt 2 11 } (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out
index 6c849b2fe86b..3167fb8413d3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack
 storage
   (Pair { Elt 1 4 ; Elt 2 11 } (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out
index 990613f07850..6fc48dde7a25 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack
 storage
   (Pair { Elt 1 4 ; Elt 2 11 } (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out
index db077a3a1b78..dc737570814d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack
 storage
   (Pair { Elt 1 0 } (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out
index 2ba268a0fbc1..a84c7e9a0cc9 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack
 storage
   (Pair { Elt 0 1 } (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out
index d4f11a12556d..b5e2796464ae 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack
 storage
   (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out
index 400d9b736713..1b1809317741 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack
 storage
   (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out
index ada800a4232d..39b90c1df6e8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack
 storage
   (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out
index 605ccd50aab1..c4fad380474b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack
 storage
   (Pair {} (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out
index 5129e254d97f..d84decb962d5 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack
 storage
   (Pair { Elt "foo" 1 } (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out
index 6d984365d857..54d69b2d1c21 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack
 storage
   (Pair { Elt "foo" 0 } (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out
index 335389ac944c..7b42af654b4c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out
index 12354070a8b3..fb28d588a8a8 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack
 storage
   3
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out
index a88b64119c58..a85af44e36e3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack
 storage
   6
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out
index f5f28453f42e..7ab79d0089fd 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out
index b59eecfa315e..b00d32069317 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out
index 1390e9fe75ca..77199b1910c0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack
 storage
   0x0101000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out
index f88a46ab3e33..a4d0757f6ebb 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack
 storage
   0x1000000000000000000000000000000000000000000000000000000000000000
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out
index 051c6c003486..1de42521343e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack
 storage
   2
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out
index 11b95a4b32d1..7756f01e131d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack
 storage
   -2
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out
index a6002387c77c..155fad33174d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack
 storage
   -2
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out
index cf1d8cf33d4c..daaa97f9bda6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out
index 6bc766551664..58584866000c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out
index aa2b9475b4fc..d7fdacefeac0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out
index ae5f3aa745e5..a5ee413f2c99 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input False --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input False --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out
index 36bbbfbef5b6..06a36205a109 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input True --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input True --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out
index 01a4e87ba439..c4538c5d01d5 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack
 storage
   (Some -9)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out
index fc477f3865c0..95af6200ca27 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack
 storage
   (Some -8)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out
index b235e1e3ce73..0f77bc0e9f90 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack
 storage
   (Some 7)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out
index 24e84a27b51f..bc6b8837356e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack
 storage
   (Some -9)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out
index 23403265d940..48f546948e69 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack
 storage
   (Some -1)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out
index 456555595f90..a602fe2ae3a0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack
 storage
   (Some -8)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out
index c2a17bbcd8cc..b48af1d3dc1a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack
 storage
   (Some 8)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out
index 88503a389573..188d5d601b82 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack
 storage
   (Some -1)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out
index d0a9c0747810..62591526f17e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out
index 9684c3f932bf..c8dec9401a3f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out
index e70cc0383457..2f8509fb52b0 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out
index 25f7edb442b2..a3e86675d6bd 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack
 storage
   (Some False)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out
index 88555383e207..511dfcfefcc3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack
 storage
   (Some True)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out
index a295b5566450..807b62c63b5e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack
 storage
   (Some 8)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out
index cb32e33277fd..0ba8267a179c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack
 storage
   (Some 15)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out
index 715459e0a6f5..c47111a954f1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack
 storage
   (Some 8)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out
index fef73b1d709b..7e0a3192a80f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack
 storage
   (Some 7)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out
index 01de531d8c7e..91ff7bac3f8e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack
 storage
   (Some 15)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out
index 5c18d5846218..7756a1bd5ac4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack
 storage
   (Some 12)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out
index f408b58810c5..f479aeddf2ec 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out
index 98ace2afee57..c652e4d3892d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out
index 904166775a3d..f26e413e7b70 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1  (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1  (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out
index dd74463fb6c1..cdb836dd0c16 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit }  (Pair { True }  (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" }  { PACK } )))))))))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit }  (Pair { True }  (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" }  { PACK } )))))))))' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out
index 21e439b39718..e619b5af1926 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair {  }  (Pair {  }  (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair {  }  { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair {  }  (Pair {  }  (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair {  }  { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out
index 11069999e261..456cca3f7841 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack
 storage
   (Some (Pair False True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out
index 49c0ef093e9d..08fdc90d0cbb 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack
 storage
   (Some (Pair True False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out
index ed92a44b88c3..cc832e203edf 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack
 storage
   (Some (Pair False False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out
index 023345e71061..7579d41f688c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack
 storage
   (Some (Pair True True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out
index 879bed56238f..5403882b4b44 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack
 storage
   52
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out
index ff3c4eede203..95c8d32cd8fe 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack
 storage
   { 0 ; 7 ; 14 ; 21 }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out
index 62773bd3fc72..c9230f4d9262 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack
 storage
   (Some 300)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out
index 1cad225a4a37..d558aaf3bd95 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out
index 491c20b2e2a1..da1e9cef329d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack
 storage
   { "a" ; "b" ; "c" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out
index cd22aa69e86a..9895ebdffa63 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out
index c858a1016697..94a0f093ba13 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack
 storage
   { "a" ; "b" ; "c" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out
index 41d7c1d03ef9..aa2de372f498 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out
index fca381d868ea..439d2baf9532 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out
index 3f30e2b05c8c..82c04ab6f5c4 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out
index 49328c982885..a74ed40f6270 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out
index 4aa1c69a8866..2a0c7cbcff9b 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack
 storage
   (Pair "world" 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out
index e571035ffa20..93123c54aa96 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack
 storage
   (Pair "abc" 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out
index 7e75d9808cf6..42e1c02b8671 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack
 storage
   (Pair "" 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out
index 46ee9968d218..c1a6193faae3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack
 storage
   (Pair "hello" 3)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out
index dc44e067943d..de492102755f 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack
 storage
   (Pair "hello" 1)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out
index 0626914582c9..89fd806f4fb6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack
 storage
   (Pair "hello" 100)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out
index 94ba8d35a735..96e76c09b1ac 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack
 storage
   { "a" ; "b" ; "c" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out
index 17422d5a2f09..d6f503f76803 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack
 storage
   {}
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out
index b813da78ec21..a4a5aa675cae 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack
 storage
   { "asdf" ; "bcde" }
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out
index d775564c01b1..20185cfeb461 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out
index 6a5b3c17acd5..e79615a31fa6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack
 storage
   -94
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out
index cfa4ab1669b9..c59448b67e28 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out
index efd6c2543f28..08b806d4fe70 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack
 storage
   (Pair {} (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out
index 03cef649a7eb..9d21da484707 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack
 storage
   (Pair { "Hello" ; "World" } (Some False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out
index b2225123d71b..7a264ef5fc34 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack
 storage
   (Pair { "Hi" } (Some True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out
index 7d7310d5b611..09e816070d22 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack
 storage
   6
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out
index 53743616d96d..cd877078eff2 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack
 storage
   0
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out
index f96348fb55ff..0ed12cb9d7e1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack
 storage
   3
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out
index dff72a39adf3..aaf368fbed42 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack
 storage
   1
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out
index 8de2d4b8cf40..87bf909749e9 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack
 storage
   (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out
index 3ebd691d1e39..5e18f15293e6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack
 storage
   (Some 60)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out
index 580eef2ac244..883562f305d3 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack
 storage
   (Some 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out
index 218ec5d3f08c..4ec2131812e9 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack
 storage
   (Some 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out
index 1a8512da8c38..61bd91df6ca9 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack
 storage
   (Some 3)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out
index 2547d34e8a1b..b4f09c75e464 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack
 storage
   (Some 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out
index 13ef92f763c0..b9e2c1f5da3a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack
 storage
   (Some 4)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out
index be5db1b22e1b..a0924d554e42 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack
 storage
   (Some 16)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out
index f7677171c28d..b47420b26d04 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack
 storage
   (Some 4)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out
index 610f3c8a9ad6..5c80cf8fb775 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack
 storage
   (Some 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out
index 96529461b576..d628e6e1a9d2 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack
 storage
   (Some 0)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out
index 17f365622fd2..6e31cd8a812a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out
index f0db2b2f2e75..2204f2877078 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack
 storage
   (Some "o")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out
index 2d533ba2c5e3..6ff4e7f09d4d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out
index a0267efa6d71..407154de8fae 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack
 storage
   (Some "")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out
index e35f07cb9ee3..cb6da9570834 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out
index 3b5c7c55815a..cff673495a86 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out
index c2943f5000b5..2510c3a43e8e 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack
 storage
   (Some "Fo")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out
index 47898337967b..db4cfbf47e72 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out
index ac18d61264ee..3bb91a68ad89 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack
 storage
   (Some 0xbb)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out
index a96872d102fd..f77b8d18f822 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack
 storage
   (Some 0xaa)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out
index 692ca6038af3..c7b17ab27c02 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack
 storage
   (Some 0xbbcc)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out
index e23502f4f9d5..53dcbb68a392 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack
 storage
   (Some 0x)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out
index 8573cff36ae8..325b0e58273c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out
index 3a9bae243513..cd36aa197200 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack
 storage
   (Some 0xcc)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out
index e17821764fa0..05b803c2a814 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out
index eb3544ce822d..72c8372cbf39 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out
index 4607f246f7e2..081098d30f4c 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack
 storage
   None
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out
index ca989dd84564..c4a168b686e5 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack
 storage
   (Some "abcd")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out
index 8230b853ec6c..8810ec1be9c6 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack
 storage
   (Some "Hello")
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out
index f21fccb986ef..5f1e6d63a185 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack
 storage
   "1970-01-01T00:00:00Z"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out
index bbc5954edc76..2305e302d1c2 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack
 storage
   "1970-01-01T00:03:20Z"
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out
index 789345b88508..f55e23424375 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack
 storage
   -1999999999999999900
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out
index 4cadd4b8f3bd..1b56fe4c6c36 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack
 storage
   (Some (Pair 3320000 1300000))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out
index cf02bb1c87b1..03de49b923c7 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack
 storage
   (Some (Pair 3000000 1000000))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out
index b612c6fc5e36..bc12e681944a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack
 storage
   142
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out
index 33a79a2e07b5..d5c143f1f8ac 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out
index a7ca398a655b..faa678869e55 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack
 storage
   (Pair 4000000000000 20000000000000)
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out
index 0a464993bc6b..26ebea341420 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack
 storage
   (Some (Left False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out
index 191c4ce0a970..fa87f9de3012 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack
 storage
   (Some (Right 0))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out
index d228560e9f33..00b8840bf5cf 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack
 storage
   (Some (Left True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out
index 68249c4e6f64..6a5c9eed2553 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack
 storage
   (Some (Right 0))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out
index 7b4301503c75..3fca93bef28d 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack
 storage
   (Some (Right 1))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out
index 0da144fffc69..ce38ef24babc 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack
 storage
   (Some (Right 63))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out
index f68f49c43aaf..78080c6ccd96 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack
 storage
   (Some (Left True))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out
index b11c45ad8986..0ec3532de834 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack
 storage
   (Some (Left False))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out
index 4216769e2e8e..efd51b965cb1 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack
 storage
   (Some (Right 21))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out
index 10f9f2d3ae21..2fafd0c78257 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack
 storage
   (Some (Right 1))
 emitted operations
diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out
index 5c787b142e57..15ef4d716b8a 100644
--- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out	
+++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack
 storage
   Unit
 emitted operations
diff --git a/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out b/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out
index ff471b409984..a24c365ae48c 100644
--- a/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out	
+++ b/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings typecheck script michelson_test_scripts/attic/accounts.tz michelson_test_scripts/attic/add1.tz michelson_test_scripts/attic/add1_list.tz michelson_test_scripts/attic/after_strategy.tz michelson_test_scripts/attic/always.tz michelson_test_scripts/attic/append.tz michelson_test_scripts/attic/at_least.tz michelson_test_scripts/attic/auction.tz michelson_test_scripts/attic/bad_lockup.tz michelson_test_scripts/attic/big_map_union.tz michelson_test_scripts/attic/cadr_annotation.tz michelson_test_scripts/attic/concat.tz michelson_test_scripts/attic/conditionals.tz michelson_test_scripts/attic/cons_twice.tz michelson_test_scripts/attic/cps_fact.tz michelson_test_scripts/attic/create_add1_lists.tz michelson_test_scripts/attic/data_publisher.tz michelson_test_scripts/attic/dispatch.tz michelson_test_scripts/attic/empty.tz michelson_test_scripts/attic/fail_amount.tz michelson_test_scripts/attic/faucet.tz michelson_test_scripts/attic/forward.tz michelson_test_scripts/attic/id.tz michelson_test_scripts/attic/infinite_loop.tz michelson_test_scripts/attic/insertion_sort.tz michelson_test_scripts/attic/int_publisher.tz michelson_test_scripts/attic/king_of_tez.tz michelson_test_scripts/attic/list_of_transactions.tz michelson_test_scripts/attic/queue.tz michelson_test_scripts/attic/reduce_map.tz michelson_test_scripts/attic/reentrancy.tz michelson_test_scripts/attic/reservoir.tz michelson_test_scripts/attic/scrutable_reservoir.tz michelson_test_scripts/attic/spawn_identities.tz michelson_test_scripts/entrypoints/big_map_entrypoints.tz michelson_test_scripts/entrypoints/delegatable_target.tz michelson_test_scripts/entrypoints/manager.tz michelson_test_scripts/entrypoints/no_default_target.tz michelson_test_scripts/entrypoints/no_entrypoint_target.tz michelson_test_scripts/entrypoints/rooted_target.tz michelson_test_scripts/entrypoints/simple_entrypoints.tz michelson_test_scripts/macros/assert.tz michelson_test_scripts/macros/assert_cmpeq.tz michelson_test_scripts/macros/assert_cmpge.tz michelson_test_scripts/macros/assert_cmpgt.tz michelson_test_scripts/macros/assert_cmple.tz michelson_test_scripts/macros/assert_cmplt.tz michelson_test_scripts/macros/assert_cmpneq.tz michelson_test_scripts/macros/assert_eq.tz michelson_test_scripts/macros/assert_ge.tz michelson_test_scripts/macros/assert_gt.tz michelson_test_scripts/macros/assert_le.tz michelson_test_scripts/macros/assert_lt.tz michelson_test_scripts/macros/assert_neq.tz michelson_test_scripts/macros/big_map_get_add.tz michelson_test_scripts/macros/big_map_mem.tz michelson_test_scripts/macros/build_list.tz michelson_test_scripts/macros/carn_and_cdrn.tz michelson_test_scripts/macros/compare.tz michelson_test_scripts/macros/compare_bytes.tz michelson_test_scripts/macros/fail.tz michelson_test_scripts/macros/guestbook.tz michelson_test_scripts/macros/macro_annotations.tz michelson_test_scripts/macros/map_caddaadr.tz michelson_test_scripts/macros/max_in_list.tz michelson_test_scripts/macros/min.tz michelson_test_scripts/macros/pair_macro.tz michelson_test_scripts/macros/set_caddaadr.tz michelson_test_scripts/macros/take_my_money.tz michelson_test_scripts/macros/unpair_macro.tz michelson_test_scripts/mini_scenarios/999_constant.tz michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz michelson_test_scripts/mini_scenarios/always_fails.tz michelson_test_scripts/mini_scenarios/authentication.tz michelson_test_scripts/mini_scenarios/big_map_all.tz michelson_test_scripts/mini_scenarios/big_map_entrypoints.tz michelson_test_scripts/mini_scenarios/big_map_magic.tz michelson_test_scripts/mini_scenarios/big_map_read.tz michelson_test_scripts/mini_scenarios/big_map_store.tz michelson_test_scripts/mini_scenarios/big_map_write.tz michelson_test_scripts/mini_scenarios/cache_consistency.tz michelson_test_scripts/mini_scenarios/check_signature.tz michelson_test_scripts/mini_scenarios/constant_entrypoints.tz michelson_test_scripts/mini_scenarios/constant_unit.tz michelson_test_scripts/mini_scenarios/create_contract.tz michelson_test_scripts/mini_scenarios/create_contract_simple.tz michelson_test_scripts/mini_scenarios/default_account.tz michelson_test_scripts/mini_scenarios/emit_events.tz michelson_test_scripts/mini_scenarios/execution_order_appender.tz michelson_test_scripts/mini_scenarios/execution_order_caller.tz michelson_test_scripts/mini_scenarios/execution_order_storer.tz michelson_test_scripts/mini_scenarios/fa12_reference.tz michelson_test_scripts/mini_scenarios/fail_on_false.tz michelson_test_scripts/mini_scenarios/generic_multisig.tz michelson_test_scripts/mini_scenarios/groth16.tz michelson_test_scripts/mini_scenarios/hardlimit.tz michelson_test_scripts/mini_scenarios/large_error.tz michelson_test_scripts/mini_scenarios/large_flat_contract.tz michelson_test_scripts/mini_scenarios/large_str_id.tz michelson_test_scripts/mini_scenarios/legacy_multisig.tz michelson_test_scripts/mini_scenarios/lockup.tz michelson_test_scripts/mini_scenarios/loop.tz michelson_test_scripts/mini_scenarios/lqt_fa12.mligo.tz michelson_test_scripts/mini_scenarios/multiple_en2.tz michelson_test_scripts/mini_scenarios/multiple_entrypoints_counter.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint_arg.tz michelson_test_scripts/mini_scenarios/nat_id.tz michelson_test_scripts/mini_scenarios/noop_bytes.tz michelson_test_scripts/mini_scenarios/originate_contract.tz michelson_test_scripts/mini_scenarios/parameterized_multisig.tz michelson_test_scripts/mini_scenarios/parsable_contract.tz michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz michelson_test_scripts/mini_scenarios/replay.tz michelson_test_scripts/mini_scenarios/reveal_signed_preimage.tz michelson_test_scripts/mini_scenarios/sc_rollup_forward.tz michelson_test_scripts/mini_scenarios/sc_rollup_mint_and_forward.tz michelson_test_scripts/mini_scenarios/self_address_receiver.tz michelson_test_scripts/mini_scenarios/self_address_sender.tz michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz michelson_test_scripts/mini_scenarios/send_ticket_list_multiple_016.tz michelson_test_scripts/mini_scenarios/send_tickets_from_storage_016.tz michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz michelson_test_scripts/mini_scenarios/smart_rollup_mint_and_deposit_ticket_016.tz michelson_test_scripts/mini_scenarios/smart_rollup_receive_tickets_016.tz michelson_test_scripts/mini_scenarios/str_id.tz michelson_test_scripts/mini_scenarios/ticket_builder_fungible.tz michelson_test_scripts/mini_scenarios/ticket_builder_non_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_non_fungible.tz michelson_test_scripts/mini_scenarios/tickets_015.tz michelson_test_scripts/mini_scenarios/tickets_bag_016.tz michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_create_and_send_015.tz michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_mint_and_store_complex_param.tz michelson_test_scripts/mini_scenarios/tickets_receive_and_store.tz michelson_test_scripts/mini_scenarios/tickets_send_016.tz michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz michelson_test_scripts/mini_scenarios/tickets_store_fst_and_rely_snd.tz michelson_test_scripts/mini_scenarios/tzip4_view.tz michelson_test_scripts/mini_scenarios/very_small.tz michelson_test_scripts/mini_scenarios/view_check_caller.tz michelson_test_scripts/mini_scenarios/view_registers_callers.tz michelson_test_scripts/mini_scenarios/viewable.tz michelson_test_scripts/mini_scenarios/vote_for_delegate.tz michelson_test_scripts/mini_scenarios/weather_insurance.tz michelson_test_scripts/mini_scenarios/xcat.tz michelson_test_scripts/mini_scenarios/xcat_dapp.tz michelson_test_scripts/non_regression/262_bug.tz michelson_test_scripts/non_regression/843_bug.tz michelson_test_scripts/non_regression/bad_annot_contract.tz michelson_test_scripts/non_regression/pairk_annot.tz michelson_test_scripts/opcodes/abs.tz michelson_test_scripts/opcodes/add.tz michelson_test_scripts/opcodes/add_bls12_381_fr.tz michelson_test_scripts/opcodes/add_bls12_381_g1.tz michelson_test_scripts/opcodes/add_bls12_381_g2.tz michelson_test_scripts/opcodes/add_delta_timestamp.tz michelson_test_scripts/opcodes/add_timestamp_delta.tz michelson_test_scripts/opcodes/address.tz michelson_test_scripts/opcodes/amount_after_fib_view.tz michelson_test_scripts/opcodes/amount_after_nonexistent_view.tz michelson_test_scripts/opcodes/amount_after_view.tz michelson_test_scripts/opcodes/and.tz michelson_test_scripts/opcodes/and_binary.tz michelson_test_scripts/opcodes/and_bytes_016.tz michelson_test_scripts/opcodes/and_logical_1.tz michelson_test_scripts/opcodes/balance.tz michelson_test_scripts/opcodes/balance_after_fib_view.tz michelson_test_scripts/opcodes/balance_after_nonexistent_view.tz michelson_test_scripts/opcodes/balance_after_view.tz michelson_test_scripts/opcodes/big_map_mem_nat.tz michelson_test_scripts/opcodes/big_map_mem_string.tz michelson_test_scripts/opcodes/big_map_to_self.tz michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz michelson_test_scripts/opcodes/bytes.tz michelson_test_scripts/opcodes/bytes_of_int_016.tz michelson_test_scripts/opcodes/bytes_of_nat_016.tz michelson_test_scripts/opcodes/car.tz michelson_test_scripts/opcodes/cdr.tz michelson_test_scripts/opcodes/chain_id.tz michelson_test_scripts/opcodes/chain_id_store.tz michelson_test_scripts/opcodes/check_signature.tz michelson_test_scripts/opcodes/comb.tz michelson_test_scripts/opcodes/comb-get.tz michelson_test_scripts/opcodes/comb-literals.tz michelson_test_scripts/opcodes/comb-set.tz michelson_test_scripts/opcodes/comb-set-2.tz michelson_test_scripts/opcodes/compare.tz michelson_test_scripts/opcodes/compare_big_type.tz michelson_test_scripts/opcodes/compare_big_type2.tz michelson_test_scripts/opcodes/comparisons.tz michelson_test_scripts/opcodes/concat_hello.tz michelson_test_scripts/opcodes/concat_hello_bytes.tz michelson_test_scripts/opcodes/concat_list.tz michelson_test_scripts/opcodes/cons.tz michelson_test_scripts/opcodes/contains_all.tz michelson_test_scripts/opcodes/contract.tz michelson_test_scripts/opcodes/create_contract.tz michelson_test_scripts/opcodes/create_contract_rootname.tz michelson_test_scripts/opcodes/create_contract_rootname_alt.tz michelson_test_scripts/opcodes/create_contract_with_view.tz michelson_test_scripts/opcodes/diff_timestamps.tz michelson_test_scripts/opcodes/dig_eq.tz michelson_test_scripts/opcodes/dign.tz michelson_test_scripts/opcodes/dip.tz michelson_test_scripts/opcodes/dipn.tz michelson_test_scripts/opcodes/dropn.tz michelson_test_scripts/opcodes/dugn.tz michelson_test_scripts/opcodes/dup-n.tz michelson_test_scripts/opcodes/ediv.tz michelson_test_scripts/opcodes/ediv_mutez.tz michelson_test_scripts/opcodes/emit.tz michelson_test_scripts/opcodes/empty_map.tz michelson_test_scripts/opcodes/exec_concat.tz michelson_test_scripts/opcodes/fact.tz michelson_test_scripts/opcodes/first.tz michelson_test_scripts/opcodes/get_and_update_big_map.tz michelson_test_scripts/opcodes/get_and_update_map.tz michelson_test_scripts/opcodes/get_big_map_value.tz michelson_test_scripts/opcodes/get_map_value.tz michelson_test_scripts/opcodes/hash_consistency_checker.tz michelson_test_scripts/opcodes/hash_key.tz michelson_test_scripts/opcodes/hash_string.tz michelson_test_scripts/opcodes/if.tz michelson_test_scripts/opcodes/if_some.tz michelson_test_scripts/opcodes/int.tz michelson_test_scripts/opcodes/iter_fail.tz michelson_test_scripts/opcodes/keccak.tz michelson_test_scripts/opcodes/left_right.tz michelson_test_scripts/opcodes/level.tz michelson_test_scripts/opcodes/list_concat.tz michelson_test_scripts/opcodes/list_concat_bytes.tz michelson_test_scripts/opcodes/list_id.tz michelson_test_scripts/opcodes/list_id_map.tz michelson_test_scripts/opcodes/list_iter.tz michelson_test_scripts/opcodes/list_map_block.tz michelson_test_scripts/opcodes/list_size.tz michelson_test_scripts/opcodes/loop_failwith.tz michelson_test_scripts/opcodes/loop_left.tz michelson_test_scripts/opcodes/loop_left_failwith.tz michelson_test_scripts/opcodes/lsl_bytes_016.tz michelson_test_scripts/opcodes/lsr_bytes_016.tz michelson_test_scripts/opcodes/map_car.tz michelson_test_scripts/opcodes/map_id.tz michelson_test_scripts/opcodes/map_iter.tz michelson_test_scripts/opcodes/map_map.tz michelson_test_scripts/opcodes/map_map_sideeffect.tz michelson_test_scripts/opcodes/map_mem_nat.tz michelson_test_scripts/opcodes/map_mem_string.tz michelson_test_scripts/opcodes/map_size.tz michelson_test_scripts/opcodes/merge_comparable_pairs.tz michelson_test_scripts/opcodes/mul.tz michelson_test_scripts/opcodes/mul_bls12_381_fr.tz michelson_test_scripts/opcodes/mul_bls12_381_g1.tz michelson_test_scripts/opcodes/mul_bls12_381_g2.tz michelson_test_scripts/opcodes/mul_overflow.tz michelson_test_scripts/opcodes/munch.tz michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz michelson_test_scripts/opcodes/neg.tz michelson_test_scripts/opcodes/neg_bls12_381_fr.tz michelson_test_scripts/opcodes/neg_bls12_381_g1.tz michelson_test_scripts/opcodes/neg_bls12_381_g2.tz michelson_test_scripts/opcodes/none.tz michelson_test_scripts/opcodes/noop.tz michelson_test_scripts/opcodes/not.tz michelson_test_scripts/opcodes/not_binary.tz michelson_test_scripts/opcodes/not_bytes_016.tz michelson_test_scripts/opcodes/or.tz michelson_test_scripts/opcodes/or_binary.tz michelson_test_scripts/opcodes/or_bytes_016.tz michelson_test_scripts/opcodes/originate_big_map.tz michelson_test_scripts/opcodes/packunpack.tz michelson_test_scripts/opcodes/packunpack_rev.tz michelson_test_scripts/opcodes/packunpack_rev_cty.tz michelson_test_scripts/opcodes/pair_id.tz michelson_test_scripts/opcodes/pairing_check.tz michelson_test_scripts/opcodes/pexec.tz michelson_test_scripts/opcodes/pexec_2.tz michelson_test_scripts/opcodes/proxy.tz michelson_test_scripts/opcodes/ret_int.tz michelson_test_scripts/opcodes/reverse.tz michelson_test_scripts/opcodes/reverse_loop.tz michelson_test_scripts/opcodes/sapling_empty_state.tz michelson_test_scripts/opcodes/self.tz michelson_test_scripts/opcodes/self_address.tz michelson_test_scripts/opcodes/self_address_after_fib_view.tz michelson_test_scripts/opcodes/self_address_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_address_after_view.tz michelson_test_scripts/opcodes/self_after_fib_view.tz michelson_test_scripts/opcodes/self_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_after_view.tz michelson_test_scripts/opcodes/self_with_default_entrypoint.tz michelson_test_scripts/opcodes/self_with_entrypoint.tz michelson_test_scripts/opcodes/sender.tz michelson_test_scripts/opcodes/sender_after_fib_view.tz michelson_test_scripts/opcodes/sender_after_nonexistent_view.tz michelson_test_scripts/opcodes/sender_after_view.tz michelson_test_scripts/opcodes/set_car.tz michelson_test_scripts/opcodes/set_cdr.tz michelson_test_scripts/opcodes/set_delegate.tz michelson_test_scripts/opcodes/set_id.tz michelson_test_scripts/opcodes/set_iter.tz michelson_test_scripts/opcodes/set_member.tz michelson_test_scripts/opcodes/set_size.tz michelson_test_scripts/opcodes/sets.tz michelson_test_scripts/opcodes/sha3.tz michelson_test_scripts/opcodes/shifts.tz michelson_test_scripts/opcodes/slice.tz michelson_test_scripts/opcodes/slice_bytes.tz michelson_test_scripts/opcodes/slices.tz michelson_test_scripts/opcodes/source.tz michelson_test_scripts/opcodes/split_bytes.tz michelson_test_scripts/opcodes/split_string.tz michelson_test_scripts/opcodes/store_bls12_381_fr.tz michelson_test_scripts/opcodes/store_bls12_381_g1.tz michelson_test_scripts/opcodes/store_bls12_381_g2.tz michelson_test_scripts/opcodes/store_input.tz michelson_test_scripts/opcodes/store_now.tz michelson_test_scripts/opcodes/str_id.tz michelson_test_scripts/opcodes/sub_timestamp_delta.tz michelson_test_scripts/opcodes/subset.tz michelson_test_scripts/opcodes/tez_add_sub.tz michelson_test_scripts/opcodes/ticket_bad.tz michelson_test_scripts/opcodes/ticket_big_store.tz michelson_test_scripts/opcodes/ticket_join.tz michelson_test_scripts/opcodes/ticket_read.tz michelson_test_scripts/opcodes/ticket_split.tz michelson_test_scripts/opcodes/ticket_store.tz michelson_test_scripts/opcodes/ticket_store-2.tz michelson_test_scripts/opcodes/ticketer.tz michelson_test_scripts/opcodes/ticketer-2.tz michelson_test_scripts/opcodes/transfer_amount.tz michelson_test_scripts/opcodes/transfer_tokens.tz michelson_test_scripts/opcodes/uncomb.tz michelson_test_scripts/opcodes/unpair.tz michelson_test_scripts/opcodes/unpair_field_annotation_mismatch.tz michelson_test_scripts/opcodes/update_big_map.tz michelson_test_scripts/opcodes/utxo_read.tz michelson_test_scripts/opcodes/utxor.tz michelson_test_scripts/opcodes/view_fib.tz michelson_test_scripts/opcodes/view_mutual_recursion.tz michelson_test_scripts/opcodes/view_op_add.tz michelson_test_scripts/opcodes/view_op_constant.tz michelson_test_scripts/opcodes/view_op_id.tz michelson_test_scripts/opcodes/view_op_nonexistent_addr.tz michelson_test_scripts/opcodes/view_op_nonexistent_func.tz michelson_test_scripts/opcodes/view_op_test_step_contants.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_input_type.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_output_type.tz michelson_test_scripts/opcodes/view_rec.tz michelson_test_scripts/opcodes/view_toplevel_lib.tz michelson_test_scripts/opcodes/voting_power.tz michelson_test_scripts/opcodes/xor.tz michelson_test_scripts/opcodes/xor_bytes_016.tz --details --display-names
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings typecheck script michelson_test_scripts/attic/accounts.tz michelson_test_scripts/attic/add1.tz michelson_test_scripts/attic/add1_list.tz michelson_test_scripts/attic/after_strategy.tz michelson_test_scripts/attic/always.tz michelson_test_scripts/attic/append.tz michelson_test_scripts/attic/at_least.tz michelson_test_scripts/attic/auction.tz michelson_test_scripts/attic/bad_lockup.tz michelson_test_scripts/attic/big_map_union.tz michelson_test_scripts/attic/cadr_annotation.tz michelson_test_scripts/attic/concat.tz michelson_test_scripts/attic/conditionals.tz michelson_test_scripts/attic/cons_twice.tz michelson_test_scripts/attic/cps_fact.tz michelson_test_scripts/attic/create_add1_lists.tz michelson_test_scripts/attic/data_publisher.tz michelson_test_scripts/attic/dispatch.tz michelson_test_scripts/attic/empty.tz michelson_test_scripts/attic/fail_amount.tz michelson_test_scripts/attic/faucet.tz michelson_test_scripts/attic/forward.tz michelson_test_scripts/attic/id.tz michelson_test_scripts/attic/infinite_loop.tz michelson_test_scripts/attic/insertion_sort.tz michelson_test_scripts/attic/int_publisher.tz michelson_test_scripts/attic/king_of_tez.tz michelson_test_scripts/attic/list_of_transactions.tz michelson_test_scripts/attic/queue.tz michelson_test_scripts/attic/reduce_map.tz michelson_test_scripts/attic/reentrancy.tz michelson_test_scripts/attic/reservoir.tz michelson_test_scripts/attic/scrutable_reservoir.tz michelson_test_scripts/attic/spawn_identities.tz michelson_test_scripts/entrypoints/big_map_entrypoints.tz michelson_test_scripts/entrypoints/delegatable_target.tz michelson_test_scripts/entrypoints/manager.tz michelson_test_scripts/entrypoints/no_default_target.tz michelson_test_scripts/entrypoints/no_entrypoint_target.tz michelson_test_scripts/entrypoints/rooted_target.tz michelson_test_scripts/entrypoints/simple_entrypoints.tz michelson_test_scripts/macros/assert.tz michelson_test_scripts/macros/assert_cmpeq.tz michelson_test_scripts/macros/assert_cmpge.tz michelson_test_scripts/macros/assert_cmpgt.tz michelson_test_scripts/macros/assert_cmple.tz michelson_test_scripts/macros/assert_cmplt.tz michelson_test_scripts/macros/assert_cmpneq.tz michelson_test_scripts/macros/assert_eq.tz michelson_test_scripts/macros/assert_ge.tz michelson_test_scripts/macros/assert_gt.tz michelson_test_scripts/macros/assert_le.tz michelson_test_scripts/macros/assert_lt.tz michelson_test_scripts/macros/assert_neq.tz michelson_test_scripts/macros/big_map_get_add.tz michelson_test_scripts/macros/big_map_mem.tz michelson_test_scripts/macros/build_list.tz michelson_test_scripts/macros/carn_and_cdrn.tz michelson_test_scripts/macros/compare.tz michelson_test_scripts/macros/compare_bytes.tz michelson_test_scripts/macros/fail.tz michelson_test_scripts/macros/guestbook.tz michelson_test_scripts/macros/macro_annotations.tz michelson_test_scripts/macros/map_caddaadr.tz michelson_test_scripts/macros/max_in_list.tz michelson_test_scripts/macros/min.tz michelson_test_scripts/macros/pair_macro.tz michelson_test_scripts/macros/set_caddaadr.tz michelson_test_scripts/macros/take_my_money.tz michelson_test_scripts/macros/unpair_macro.tz michelson_test_scripts/mini_scenarios/999_constant.tz michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz michelson_test_scripts/mini_scenarios/always_fails.tz michelson_test_scripts/mini_scenarios/authentication.tz michelson_test_scripts/mini_scenarios/big_map_all.tz michelson_test_scripts/mini_scenarios/big_map_entrypoints.tz michelson_test_scripts/mini_scenarios/big_map_magic.tz michelson_test_scripts/mini_scenarios/big_map_read.tz michelson_test_scripts/mini_scenarios/big_map_store.tz michelson_test_scripts/mini_scenarios/big_map_write.tz michelson_test_scripts/mini_scenarios/cache_consistency.tz michelson_test_scripts/mini_scenarios/check_signature.tz michelson_test_scripts/mini_scenarios/constant_entrypoints.tz michelson_test_scripts/mini_scenarios/constant_unit.tz michelson_test_scripts/mini_scenarios/create_contract.tz michelson_test_scripts/mini_scenarios/create_contract_simple.tz michelson_test_scripts/mini_scenarios/default_account.tz michelson_test_scripts/mini_scenarios/emit_events.tz michelson_test_scripts/mini_scenarios/execution_order_appender.tz michelson_test_scripts/mini_scenarios/execution_order_caller.tz michelson_test_scripts/mini_scenarios/execution_order_storer.tz michelson_test_scripts/mini_scenarios/fa12_reference.tz michelson_test_scripts/mini_scenarios/fail_on_false.tz michelson_test_scripts/mini_scenarios/generic_multisig.tz michelson_test_scripts/mini_scenarios/groth16.tz michelson_test_scripts/mini_scenarios/hardlimit.tz michelson_test_scripts/mini_scenarios/large_error.tz michelson_test_scripts/mini_scenarios/large_flat_contract.tz michelson_test_scripts/mini_scenarios/large_str_id.tz michelson_test_scripts/mini_scenarios/legacy_multisig.tz michelson_test_scripts/mini_scenarios/lockup.tz michelson_test_scripts/mini_scenarios/loop.tz michelson_test_scripts/mini_scenarios/lqt_fa12.mligo.tz michelson_test_scripts/mini_scenarios/multiple_en2.tz michelson_test_scripts/mini_scenarios/multiple_entrypoints_counter.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint_arg.tz michelson_test_scripts/mini_scenarios/nat_id.tz michelson_test_scripts/mini_scenarios/noop_bytes.tz michelson_test_scripts/mini_scenarios/originate_contract.tz michelson_test_scripts/mini_scenarios/parameterized_multisig.tz michelson_test_scripts/mini_scenarios/parsable_contract.tz michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz michelson_test_scripts/mini_scenarios/replay.tz michelson_test_scripts/mini_scenarios/reveal_signed_preimage.tz michelson_test_scripts/mini_scenarios/sc_rollup_forward.tz michelson_test_scripts/mini_scenarios/sc_rollup_mint_and_forward.tz michelson_test_scripts/mini_scenarios/self_address_receiver.tz michelson_test_scripts/mini_scenarios/self_address_sender.tz michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz michelson_test_scripts/mini_scenarios/send_ticket_list_multiple_016.tz michelson_test_scripts/mini_scenarios/send_tickets_from_storage_016.tz michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz michelson_test_scripts/mini_scenarios/smart_rollup_mint_and_deposit_ticket_016.tz michelson_test_scripts/mini_scenarios/smart_rollup_receive_tickets_016.tz michelson_test_scripts/mini_scenarios/str_id.tz michelson_test_scripts/mini_scenarios/ticket_builder_fungible.tz michelson_test_scripts/mini_scenarios/ticket_builder_non_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_non_fungible.tz michelson_test_scripts/mini_scenarios/tickets_015.tz michelson_test_scripts/mini_scenarios/tickets_bag_016.tz michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_create_and_send_015.tz michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_mint_and_store_complex_param.tz michelson_test_scripts/mini_scenarios/tickets_receive_and_store.tz michelson_test_scripts/mini_scenarios/tickets_send_016.tz michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz michelson_test_scripts/mini_scenarios/tickets_store_fst_and_rely_snd.tz michelson_test_scripts/mini_scenarios/tzip4_view.tz michelson_test_scripts/mini_scenarios/very_small.tz michelson_test_scripts/mini_scenarios/view_check_caller.tz michelson_test_scripts/mini_scenarios/view_registers_callers.tz michelson_test_scripts/mini_scenarios/viewable.tz michelson_test_scripts/mini_scenarios/vote_for_delegate.tz michelson_test_scripts/mini_scenarios/weather_insurance.tz michelson_test_scripts/mini_scenarios/xcat.tz michelson_test_scripts/mini_scenarios/xcat_dapp.tz michelson_test_scripts/non_regression/262_bug.tz michelson_test_scripts/non_regression/843_bug.tz michelson_test_scripts/non_regression/bad_annot_contract.tz michelson_test_scripts/non_regression/pairk_annot.tz michelson_test_scripts/opcodes/abs.tz michelson_test_scripts/opcodes/add.tz michelson_test_scripts/opcodes/add_bls12_381_fr.tz michelson_test_scripts/opcodes/add_bls12_381_g1.tz michelson_test_scripts/opcodes/add_bls12_381_g2.tz michelson_test_scripts/opcodes/add_delta_timestamp.tz michelson_test_scripts/opcodes/add_timestamp_delta.tz michelson_test_scripts/opcodes/address.tz michelson_test_scripts/opcodes/amount_after_fib_view.tz michelson_test_scripts/opcodes/amount_after_nonexistent_view.tz michelson_test_scripts/opcodes/amount_after_view.tz michelson_test_scripts/opcodes/and.tz michelson_test_scripts/opcodes/and_binary.tz michelson_test_scripts/opcodes/and_bytes_016.tz michelson_test_scripts/opcodes/and_logical_1.tz michelson_test_scripts/opcodes/balance.tz michelson_test_scripts/opcodes/balance_after_fib_view.tz michelson_test_scripts/opcodes/balance_after_nonexistent_view.tz michelson_test_scripts/opcodes/balance_after_view.tz michelson_test_scripts/opcodes/big_map_mem_nat.tz michelson_test_scripts/opcodes/big_map_mem_string.tz michelson_test_scripts/opcodes/big_map_to_self.tz michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz michelson_test_scripts/opcodes/bytes.tz michelson_test_scripts/opcodes/bytes_of_int_016.tz michelson_test_scripts/opcodes/bytes_of_nat_016.tz michelson_test_scripts/opcodes/car.tz michelson_test_scripts/opcodes/cdr.tz michelson_test_scripts/opcodes/chain_id.tz michelson_test_scripts/opcodes/chain_id_store.tz michelson_test_scripts/opcodes/check_signature.tz michelson_test_scripts/opcodes/comb.tz michelson_test_scripts/opcodes/comb-get.tz michelson_test_scripts/opcodes/comb-literals.tz michelson_test_scripts/opcodes/comb-set.tz michelson_test_scripts/opcodes/comb-set-2.tz michelson_test_scripts/opcodes/compare.tz michelson_test_scripts/opcodes/compare_big_type.tz michelson_test_scripts/opcodes/compare_big_type2.tz michelson_test_scripts/opcodes/comparisons.tz michelson_test_scripts/opcodes/concat_hello.tz michelson_test_scripts/opcodes/concat_hello_bytes.tz michelson_test_scripts/opcodes/concat_list.tz michelson_test_scripts/opcodes/cons.tz michelson_test_scripts/opcodes/contains_all.tz michelson_test_scripts/opcodes/contract.tz michelson_test_scripts/opcodes/create_contract.tz michelson_test_scripts/opcodes/create_contract_rootname.tz michelson_test_scripts/opcodes/create_contract_rootname_alt.tz michelson_test_scripts/opcodes/create_contract_with_view.tz michelson_test_scripts/opcodes/diff_timestamps.tz michelson_test_scripts/opcodes/dig_eq.tz michelson_test_scripts/opcodes/dign.tz michelson_test_scripts/opcodes/dip.tz michelson_test_scripts/opcodes/dipn.tz michelson_test_scripts/opcodes/dropn.tz michelson_test_scripts/opcodes/dugn.tz michelson_test_scripts/opcodes/dup-n.tz michelson_test_scripts/opcodes/ediv.tz michelson_test_scripts/opcodes/ediv_mutez.tz michelson_test_scripts/opcodes/emit.tz michelson_test_scripts/opcodes/empty_map.tz michelson_test_scripts/opcodes/exec_concat.tz michelson_test_scripts/opcodes/fact.tz michelson_test_scripts/opcodes/first.tz michelson_test_scripts/opcodes/get_and_update_big_map.tz michelson_test_scripts/opcodes/get_and_update_map.tz michelson_test_scripts/opcodes/get_big_map_value.tz michelson_test_scripts/opcodes/get_map_value.tz michelson_test_scripts/opcodes/hash_consistency_checker.tz michelson_test_scripts/opcodes/hash_key.tz michelson_test_scripts/opcodes/hash_string.tz michelson_test_scripts/opcodes/if.tz michelson_test_scripts/opcodes/if_some.tz michelson_test_scripts/opcodes/int.tz michelson_test_scripts/opcodes/iter_fail.tz michelson_test_scripts/opcodes/keccak.tz michelson_test_scripts/opcodes/left_right.tz michelson_test_scripts/opcodes/level.tz michelson_test_scripts/opcodes/list_concat.tz michelson_test_scripts/opcodes/list_concat_bytes.tz michelson_test_scripts/opcodes/list_id.tz michelson_test_scripts/opcodes/list_id_map.tz michelson_test_scripts/opcodes/list_iter.tz michelson_test_scripts/opcodes/list_map_block.tz michelson_test_scripts/opcodes/list_size.tz michelson_test_scripts/opcodes/loop_failwith.tz michelson_test_scripts/opcodes/loop_left.tz michelson_test_scripts/opcodes/loop_left_failwith.tz michelson_test_scripts/opcodes/lsl_bytes_016.tz michelson_test_scripts/opcodes/lsr_bytes_016.tz michelson_test_scripts/opcodes/map_car.tz michelson_test_scripts/opcodes/map_id.tz michelson_test_scripts/opcodes/map_iter.tz michelson_test_scripts/opcodes/map_map.tz michelson_test_scripts/opcodes/map_map_sideeffect.tz michelson_test_scripts/opcodes/map_mem_nat.tz michelson_test_scripts/opcodes/map_mem_string.tz michelson_test_scripts/opcodes/map_size.tz michelson_test_scripts/opcodes/merge_comparable_pairs.tz michelson_test_scripts/opcodes/mul.tz michelson_test_scripts/opcodes/mul_bls12_381_fr.tz michelson_test_scripts/opcodes/mul_bls12_381_g1.tz michelson_test_scripts/opcodes/mul_bls12_381_g2.tz michelson_test_scripts/opcodes/mul_overflow.tz michelson_test_scripts/opcodes/munch.tz michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz michelson_test_scripts/opcodes/neg.tz michelson_test_scripts/opcodes/neg_bls12_381_fr.tz michelson_test_scripts/opcodes/neg_bls12_381_g1.tz michelson_test_scripts/opcodes/neg_bls12_381_g2.tz michelson_test_scripts/opcodes/none.tz michelson_test_scripts/opcodes/noop.tz michelson_test_scripts/opcodes/not.tz michelson_test_scripts/opcodes/not_binary.tz michelson_test_scripts/opcodes/not_bytes_016.tz michelson_test_scripts/opcodes/or.tz michelson_test_scripts/opcodes/or_binary.tz michelson_test_scripts/opcodes/or_bytes_016.tz michelson_test_scripts/opcodes/originate_big_map.tz michelson_test_scripts/opcodes/packunpack.tz michelson_test_scripts/opcodes/packunpack_rev.tz michelson_test_scripts/opcodes/packunpack_rev_cty.tz michelson_test_scripts/opcodes/pair_id.tz michelson_test_scripts/opcodes/pairing_check.tz michelson_test_scripts/opcodes/pexec.tz michelson_test_scripts/opcodes/pexec_2.tz michelson_test_scripts/opcodes/proxy.tz michelson_test_scripts/opcodes/ret_int.tz michelson_test_scripts/opcodes/reverse.tz michelson_test_scripts/opcodes/reverse_loop.tz michelson_test_scripts/opcodes/sapling_empty_state.tz michelson_test_scripts/opcodes/self.tz michelson_test_scripts/opcodes/self_address.tz michelson_test_scripts/opcodes/self_address_after_fib_view.tz michelson_test_scripts/opcodes/self_address_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_address_after_view.tz michelson_test_scripts/opcodes/self_after_fib_view.tz michelson_test_scripts/opcodes/self_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_after_view.tz michelson_test_scripts/opcodes/self_with_default_entrypoint.tz michelson_test_scripts/opcodes/self_with_entrypoint.tz michelson_test_scripts/opcodes/sender.tz michelson_test_scripts/opcodes/sender_after_fib_view.tz michelson_test_scripts/opcodes/sender_after_nonexistent_view.tz michelson_test_scripts/opcodes/sender_after_view.tz michelson_test_scripts/opcodes/set_car.tz michelson_test_scripts/opcodes/set_cdr.tz michelson_test_scripts/opcodes/set_delegate.tz michelson_test_scripts/opcodes/set_id.tz michelson_test_scripts/opcodes/set_iter.tz michelson_test_scripts/opcodes/set_member.tz michelson_test_scripts/opcodes/set_size.tz michelson_test_scripts/opcodes/sets.tz michelson_test_scripts/opcodes/sha3.tz michelson_test_scripts/opcodes/shifts.tz michelson_test_scripts/opcodes/slice.tz michelson_test_scripts/opcodes/slice_bytes.tz michelson_test_scripts/opcodes/slices.tz michelson_test_scripts/opcodes/source.tz michelson_test_scripts/opcodes/split_bytes.tz michelson_test_scripts/opcodes/split_string.tz michelson_test_scripts/opcodes/store_bls12_381_fr.tz michelson_test_scripts/opcodes/store_bls12_381_g1.tz michelson_test_scripts/opcodes/store_bls12_381_g2.tz michelson_test_scripts/opcodes/store_input.tz michelson_test_scripts/opcodes/store_now.tz michelson_test_scripts/opcodes/str_id.tz michelson_test_scripts/opcodes/sub_timestamp_delta.tz michelson_test_scripts/opcodes/subset.tz michelson_test_scripts/opcodes/tez_add_sub.tz michelson_test_scripts/opcodes/ticket_bad.tz michelson_test_scripts/opcodes/ticket_big_store.tz michelson_test_scripts/opcodes/ticket_join.tz michelson_test_scripts/opcodes/ticket_read.tz michelson_test_scripts/opcodes/ticket_split.tz michelson_test_scripts/opcodes/ticket_store.tz michelson_test_scripts/opcodes/ticket_store-2.tz michelson_test_scripts/opcodes/ticketer.tz michelson_test_scripts/opcodes/ticketer-2.tz michelson_test_scripts/opcodes/transfer_amount.tz michelson_test_scripts/opcodes/transfer_tokens.tz michelson_test_scripts/opcodes/uncomb.tz michelson_test_scripts/opcodes/unpair.tz michelson_test_scripts/opcodes/unpair_field_annotation_mismatch.tz michelson_test_scripts/opcodes/update_big_map.tz michelson_test_scripts/opcodes/utxo_read.tz michelson_test_scripts/opcodes/utxor.tz michelson_test_scripts/opcodes/view_fib.tz michelson_test_scripts/opcodes/view_mutual_recursion.tz michelson_test_scripts/opcodes/view_op_add.tz michelson_test_scripts/opcodes/view_op_constant.tz michelson_test_scripts/opcodes/view_op_id.tz michelson_test_scripts/opcodes/view_op_nonexistent_addr.tz michelson_test_scripts/opcodes/view_op_nonexistent_func.tz michelson_test_scripts/opcodes/view_op_test_step_contants.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_input_type.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_output_type.tz michelson_test_scripts/opcodes/view_rec.tz michelson_test_scripts/opcodes/view_toplevel_lib.tz michelson_test_scripts/opcodes/voting_power.tz michelson_test_scripts/opcodes/xor.tz michelson_test_scripts/opcodes/xor_bytes_016.tz --details --display-names
 Well typed (Gas remaining: 1039933.430 units remaining)	michelson_test_scripts/attic/accounts.tz
 { parameter
     (or (key_hash %Initialize)
diff --git a/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out b/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out
index 4b9928f4b78a..dd2f3144764d 100644
--- a/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out	
+++ b/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out	
@@ -1,10 +1,10 @@
 GET http://[HOST]:[PORT]/chains/main/blocks/head/metadata
 200 OK
-{"protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","next_protocol":"PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg","test_chain_status":{"status":"not_running"},"max_operations_ttl":3,"max_operation_data_length":32768,"max_block_header_length":289,"max_operation_list_length":[{"max_size":4194304,"max_op":2048},{"max_size":32768},{"max_size":135168,"max_op":132},{"max_size":524288}],"proposer":"[PUBLIC_KEY_HASH]","baker":"[PUBLIC_KEY_HASH]","level_info":{"level":3,"level_position":2,"cycle":0,"cycle_position":2,"expected_commitment":false},"voting_period_info":{"voting_period":{"index":0,"kind":"proposal","start_position":0},"position":2,"remaining":61},"nonce_hash":null,"deactivated":[],"balance_updates":[{"kind":"accumulator","category":"block fees","change":"-416000","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"416000","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-16667","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16667","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-316666","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-16666","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-316646","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316646","origin":"block"}],"liquidity_baking_toggle_ema":0,"adaptive_issuance_vote_ema":0,"adaptive_issuance_activation_cycle":5,"implicit_operations_results":[{"kind":"transaction","storage":[{"int":"1"},{"int":"166766"},{"int":"100"},{"bytes":"01e927f00ef734dfc85919635e9afc9166c83ef9fc00"},{"bytes":"0115eb0104481a6d7921160bc982c5e0a561cd8a3a00"}],"balance_updates":[{"kind":"minted","category":"subsidy","change":"-83333","origin":"subsidy"},{"kind":"contract","contract":"[CONTRACT_HASH]","change":"83333","origin":"subsidy"}],"consumed_milligas":"206420","storage_size":"4629"}],"proposer_consensus_key":"[PUBLIC_KEY_HASH]","baker_consensus_key":"[PUBLIC_KEY_HASH]","consumed_milligas":"544000000","dal_attestation":"0"}
+{"protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","next_protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","test_chain_status":{"status":"not_running"},"max_operations_ttl":3,"max_operation_data_length":32768,"max_block_header_length":289,"max_operation_list_length":[{"max_size":4194304,"max_op":2048},{"max_size":32768},{"max_size":135168,"max_op":132},{"max_size":524288}],"proposer":"[PUBLIC_KEY_HASH]","baker":"[PUBLIC_KEY_HASH]","level_info":{"level":3,"level_position":2,"cycle":0,"cycle_position":2,"expected_commitment":false},"voting_period_info":{"voting_period":{"index":0,"kind":"proposal","start_position":0},"position":2,"remaining":61},"nonce_hash":null,"deactivated":[],"balance_updates":[{"kind":"accumulator","category":"block fees","change":"-416000","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"416000","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-16667","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16667","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-316666","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-16666","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-316646","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316646","origin":"block"}],"liquidity_baking_toggle_ema":0,"adaptive_issuance_vote_ema":0,"adaptive_issuance_activation_cycle":5,"implicit_operations_results":[{"kind":"transaction","storage":[{"int":"1"},{"int":"166766"},{"int":"100"},{"bytes":"01e927f00ef734dfc85919635e9afc9166c83ef9fc00"},{"bytes":"0115eb0104481a6d7921160bc982c5e0a561cd8a3a00"}],"balance_updates":[{"kind":"minted","category":"subsidy","change":"-83333","origin":"subsidy"},{"kind":"contract","contract":"[CONTRACT_HASH]","change":"83333","origin":"subsidy"}],"consumed_milligas":"206420","storage_size":"4629"}],"proposer_consensus_key":"[PUBLIC_KEY_HASH]","baker_consensus_key":"[PUBLIC_KEY_HASH]","consumed_milligas":"544000000","dal_attestation":"0"}
 
 {
-  "protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
-  "next_protocol": "PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg",
+  "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+  "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
   "test_chain_status": {
     "status": "not_running"
   },
diff --git a/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out b/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out
index 293c7a37890c..69d209086794 100644
--- a/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out	
+++ b/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out	
@@ -1,5 +1,5 @@
 
-./octez-client --protocol PsPxPKEtaNmZbEArSYm2HdPk419cHLqe8DpkxDmMWpToKHwu2Bg --mode mockup --no-base-dir-warnings run unit tests from tzt_reference_test_suite/abs_00.tzt tzt_reference_test_suite/abs_01.tzt tzt_reference_test_suite/abs_02.tzt tzt_reference_test_suite/add_00.tc.tzt tzt_reference_test_suite/add_01.tc.tzt tzt_reference_test_suite/add_int-int_00.tzt tzt_reference_test_suite/add_int-nat_00.tzt tzt_reference_test_suite/add_int-nat_01.tzt tzt_reference_test_suite/add_int-timestamp_00.tzt tzt_reference_test_suite/add_mutez-mutez_00.tzt tzt_reference_test_suite/add_mutez-mutez_01.tzt tzt_reference_test_suite/add_nat-int_00.tzt tzt_reference_test_suite/add_nat-nat_00.tzt tzt_reference_test_suite/add_timestamp-int_00.tzt tzt_reference_test_suite/add_timestamp-int_01.tzt tzt_reference_test_suite/add_timestamp-int_02.tzt tzt_reference_test_suite/add_timestamp-int_03.tzt tzt_reference_test_suite/address_00.tzt tzt_reference_test_suite/address_00.tc.tzt tzt_reference_test_suite/address_01.tzt tzt_reference_test_suite/address_02.tzt tzt_reference_test_suite/amount_00.tzt tzt_reference_test_suite/and_bool-bool_00.tzt tzt_reference_test_suite/and_bool-bool_01.tzt tzt_reference_test_suite/and_bool-bool_02.tzt tzt_reference_test_suite/and_bool-bool_03.tzt tzt_reference_test_suite/and_bytes-bytes_00.tzt tzt_reference_test_suite/and_bytes-bytes_01.tzt tzt_reference_test_suite/and_bytes-bytes_02.tzt tzt_reference_test_suite/and_bytes-bytes_03.tzt tzt_reference_test_suite/and_bytes-bytes_04.tzt tzt_reference_test_suite/and_bytes-bytes_05.tzt tzt_reference_test_suite/and_bytes-bytes_06.tzt tzt_reference_test_suite/and_int-nat_00.tzt tzt_reference_test_suite/and_int-nat_01.tzt tzt_reference_test_suite/and_int-nat_02.tzt tzt_reference_test_suite/and_int-nat_03.tzt tzt_reference_test_suite/and_int-nat_04.tzt tzt_reference_test_suite/and_int-nat_05.tzt tzt_reference_test_suite/and_int-nat_06.tzt tzt_reference_test_suite/and_nat-nat_00.tzt tzt_reference_test_suite/and_nat-nat_01.tzt tzt_reference_test_suite/and_nat-nat_02.tzt tzt_reference_test_suite/apply_00.tzt tzt_reference_test_suite/apply_01.tzt tzt_reference_test_suite/apply_02.tzt tzt_reference_test_suite/balance_00.tzt tzt_reference_test_suite/blake2b_00.tzt tzt_reference_test_suite/blake2b_01.tzt tzt_reference_test_suite/car_00.tzt tzt_reference_test_suite/car_00.tc.tzt tzt_reference_test_suite/car_01.tzt tzt_reference_test_suite/cdr_00.tzt tzt_reference_test_suite/cdr_00.tc.tzt tzt_reference_test_suite/cdr_01.tzt tzt_reference_test_suite/chain_id_00.tzt tzt_reference_test_suite/chain_id_01.tzt tzt_reference_test_suite/checksignature_00.tzt tzt_reference_test_suite/checksignature_00.tc.tzt tzt_reference_test_suite/checksignature_01.tzt tzt_reference_test_suite/compare_00.tc.tzt tzt_reference_test_suite/compare_01.tc.tzt tzt_reference_test_suite/compare_02.tc.tzt tzt_reference_test_suite/compare_bool_00.tzt tzt_reference_test_suite/compare_bool_01.tzt tzt_reference_test_suite/compare_bool_02.tzt tzt_reference_test_suite/compare_bool_03.tzt tzt_reference_test_suite/compare_bytes_00.tzt tzt_reference_test_suite/compare_bytes_01.tzt tzt_reference_test_suite/compare_bytes_02.tzt tzt_reference_test_suite/compare_bytes_03.tzt tzt_reference_test_suite/compare_bytes_04.tzt tzt_reference_test_suite/compare_int_00.tzt tzt_reference_test_suite/compare_int_01.tzt tzt_reference_test_suite/compare_int_02.tzt tzt_reference_test_suite/compare_int_03.tzt tzt_reference_test_suite/compare_int_04.tzt tzt_reference_test_suite/compare_keyhash_00.tzt tzt_reference_test_suite/compare_keyhash_01.tzt tzt_reference_test_suite/compare_keyhash_02.tzt tzt_reference_test_suite/compare_mutez_00.tzt tzt_reference_test_suite/compare_mutez_01.tzt tzt_reference_test_suite/compare_mutez_02.tzt tzt_reference_test_suite/compare_mutez_03.tzt tzt_reference_test_suite/compare_mutez_04.tzt tzt_reference_test_suite/compare_mutez_05.tzt tzt_reference_test_suite/compare_nat_00.tzt tzt_reference_test_suite/compare_nat_01.tzt tzt_reference_test_suite/compare_nat_02.tzt tzt_reference_test_suite/compare_nat_03.tzt tzt_reference_test_suite/compare_nat_04.tzt tzt_reference_test_suite/compare_nat_05.tzt tzt_reference_test_suite/compare_never_00.tzt tzt_reference_test_suite/compare_pairintint_00.tzt tzt_reference_test_suite/compare_pairintint_01.tzt tzt_reference_test_suite/compare_pairintint_02.tzt tzt_reference_test_suite/compare_pairintint_03.tzt tzt_reference_test_suite/compare_string_00.tzt tzt_reference_test_suite/compare_string_01.tzt tzt_reference_test_suite/compare_string_02.tzt tzt_reference_test_suite/compare_string_03.tzt tzt_reference_test_suite/compare_string_04.tzt tzt_reference_test_suite/compare_timestamp_00.tzt tzt_reference_test_suite/compare_timestamp_01.tzt tzt_reference_test_suite/compare_timestamp_02.tzt tzt_reference_test_suite/compare_timestamp_03.tzt tzt_reference_test_suite/compare_timestamp_04.tzt tzt_reference_test_suite/compare_timestamp_05.tzt tzt_reference_test_suite/concat_00.tc.tzt tzt_reference_test_suite/concat_bytes_00.tzt tzt_reference_test_suite/concat_bytes_01.tzt tzt_reference_test_suite/concat_listbytes_00.tzt tzt_reference_test_suite/concat_listbytes_01.tzt tzt_reference_test_suite/concat_listbytes_02.tzt tzt_reference_test_suite/concat_liststring_00.tzt tzt_reference_test_suite/concat_liststring_01.tzt tzt_reference_test_suite/concat_liststring_02.tzt tzt_reference_test_suite/concat_liststring_03.tzt tzt_reference_test_suite/concat_liststring_04.tzt tzt_reference_test_suite/concat_string_00.tzt tzt_reference_test_suite/concat_string_01.tzt tzt_reference_test_suite/concat_string_02.tzt tzt_reference_test_suite/cons_int_00.tzt tzt_reference_test_suite/cons_int_01.tzt tzt_reference_test_suite/cons_int_02.tzt tzt_reference_test_suite/cons_lists_00.tc.tzt tzt_reference_test_suite/cons_string_00.tzt tzt_reference_test_suite/contract_00.tzt tzt_reference_test_suite/contract_01.tzt tzt_reference_test_suite/contract_02.tzt tzt_reference_test_suite/contract_03.tzt tzt_reference_test_suite/contract_04.tzt tzt_reference_test_suite/contract_05.tzt tzt_reference_test_suite/createcontract_00.tzt tzt_reference_test_suite/createcontract_01.tzt tzt_reference_test_suite/dig_00.tzt tzt_reference_test_suite/dig_01.tzt tzt_reference_test_suite/dig_02.tzt tzt_reference_test_suite/dig_03.tzt tzt_reference_test_suite/dig_04.tzt tzt_reference_test_suite/dip_00.tzt tzt_reference_test_suite/dip_00.tc.tzt tzt_reference_test_suite/dip_01.tzt tzt_reference_test_suite/dip_02.tzt tzt_reference_test_suite/dipn_00.tzt tzt_reference_test_suite/dipn_00.tc.tzt tzt_reference_test_suite/dipn_01.tzt tzt_reference_test_suite/dipn_01.tc.tzt tzt_reference_test_suite/dipn_02.tzt tzt_reference_test_suite/dipn_02.tc.tzt tzt_reference_test_suite/dipn_03.tzt tzt_reference_test_suite/drop_00.tzt tzt_reference_test_suite/drop_00.tc.tzt tzt_reference_test_suite/dropn_00.tzt tzt_reference_test_suite/dropn_00.tc.tzt tzt_reference_test_suite/dropn_01.tzt tzt_reference_test_suite/dropn_02.tzt tzt_reference_test_suite/dropn_03.tzt tzt_reference_test_suite/dugn_00.tzt tzt_reference_test_suite/dup_00.tzt tzt_reference_test_suite/dup_00.tc.tzt tzt_reference_test_suite/dupn_00.tzt tzt_reference_test_suite/dupn_00.tc.tzt tzt_reference_test_suite/dupn_01.tzt tzt_reference_test_suite/dupn_01.tc.tzt tzt_reference_test_suite/dupn_02.tzt tzt_reference_test_suite/dupn_03.tzt tzt_reference_test_suite/dupn_04.tzt tzt_reference_test_suite/ediv_int-int_00.tzt tzt_reference_test_suite/ediv_int-int_01.tzt tzt_reference_test_suite/ediv_int-int_02.tzt tzt_reference_test_suite/ediv_int-int_03.tzt tzt_reference_test_suite/ediv_int-int_04.tzt tzt_reference_test_suite/ediv_int-int_05.tzt tzt_reference_test_suite/ediv_int-int_06.tzt tzt_reference_test_suite/ediv_int-int_07.tzt tzt_reference_test_suite/ediv_int-int_08.tzt tzt_reference_test_suite/ediv_int-nat_00.tzt tzt_reference_test_suite/ediv_int-nat_01.tzt tzt_reference_test_suite/ediv_int-nat_02.tzt tzt_reference_test_suite/ediv_int-nat_03.tzt tzt_reference_test_suite/ediv_int-nat_04.tzt tzt_reference_test_suite/ediv_int-nat_05.tzt tzt_reference_test_suite/ediv_mutez-mutez_00.tzt tzt_reference_test_suite/ediv_mutez-mutez_01.tzt tzt_reference_test_suite/ediv_mutez-mutez_02.tzt tzt_reference_test_suite/ediv_mutez-mutez_03.tzt tzt_reference_test_suite/ediv_mutez-mutez_04.tzt tzt_reference_test_suite/ediv_mutez-mutez_05.tzt tzt_reference_test_suite/ediv_mutez-nat_00.tzt tzt_reference_test_suite/ediv_mutez-nat_01.tzt tzt_reference_test_suite/ediv_mutez-nat_02.tzt tzt_reference_test_suite/ediv_mutez-nat_03.tzt tzt_reference_test_suite/ediv_mutez-nat_04.tzt tzt_reference_test_suite/ediv_mutez-nat_05.tzt tzt_reference_test_suite/ediv_mutez-nat_06.tzt tzt_reference_test_suite/ediv_nat-int_00.tzt tzt_reference_test_suite/ediv_nat-int_01.tzt tzt_reference_test_suite/ediv_nat-int_02.tzt tzt_reference_test_suite/ediv_nat-int_03.tzt tzt_reference_test_suite/ediv_nat-int_04.tzt tzt_reference_test_suite/ediv_nat-int_05.tzt tzt_reference_test_suite/ediv_nat-nat_00.tzt tzt_reference_test_suite/ediv_nat-nat_01.tzt tzt_reference_test_suite/ediv_nat-nat_02.tzt tzt_reference_test_suite/ediv_nat-nat_03.tzt tzt_reference_test_suite/ediv_nat-nat_04.tzt tzt_reference_test_suite/emptybigmap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_string-string_00.tzt tzt_reference_test_suite/emptyset_00.tc.tzt tzt_reference_test_suite/emptyset_nat_00.tzt tzt_reference_test_suite/eq_00.tzt tzt_reference_test_suite/eq_01.tzt tzt_reference_test_suite/eq_02.tzt tzt_reference_test_suite/eq_03.tzt tzt_reference_test_suite/eq_04.tzt tzt_reference_test_suite/exec_00.tzt tzt_reference_test_suite/exec_01.tzt tzt_reference_test_suite/exec_02.tzt tzt_reference_test_suite/exec_03.tzt tzt_reference_test_suite/failwith_00.tzt tzt_reference_test_suite/failwith_00.tc.tzt tzt_reference_test_suite/gas_exhaustion.tzt tzt_reference_test_suite/ge_00.tzt tzt_reference_test_suite/ge_01.tzt tzt_reference_test_suite/ge_02.tzt tzt_reference_test_suite/ge_03.tzt tzt_reference_test_suite/ge_04.tzt tzt_reference_test_suite/get_00.tc.tzt tzt_reference_test_suite/get_bigmapstringstring_00.tzt tzt_reference_test_suite/get_bigmapstringstring_01.tzt tzt_reference_test_suite/get_bigmapstringstring_02.tzt tzt_reference_test_suite/get_map_00.tc.tzt tzt_reference_test_suite/get_mapintint_00.tzt tzt_reference_test_suite/get_mapintint_01.tzt tzt_reference_test_suite/get_mapstringstring_00.tzt tzt_reference_test_suite/get_mapstringstring_01.tzt tzt_reference_test_suite/get_mapstringstring_02.tzt tzt_reference_test_suite/gt_00.tzt tzt_reference_test_suite/gt_00.tc.tzt tzt_reference_test_suite/gt_01.tzt tzt_reference_test_suite/gt_02.tzt tzt_reference_test_suite/gt_03.tzt tzt_reference_test_suite/gt_04.tzt tzt_reference_test_suite/if_00.tzt tzt_reference_test_suite/if_00.tc.tzt tzt_reference_test_suite/if_01.tzt tzt_reference_test_suite/if_01.tc.tzt tzt_reference_test_suite/ifcons_00.tc.tzt tzt_reference_test_suite/ifcons_listint_00.tzt tzt_reference_test_suite/ifcons_listint_01.tzt tzt_reference_test_suite/ifcons_listnat_00.tzt tzt_reference_test_suite/ifcons_listnat_01.tzt tzt_reference_test_suite/ifleft_00.tc.tzt tzt_reference_test_suite/ifleft_orintstring_00.tzt tzt_reference_test_suite/ifleft_orstringint_00.tzt tzt_reference_test_suite/ifnone_00.tc.tzt tzt_reference_test_suite/ifnone_optionint_00.tzt tzt_reference_test_suite/ifnone_optionnat_00.tzt tzt_reference_test_suite/implicitaccount_00.tzt tzt_reference_test_suite/int_00.tc.tzt tzt_reference_test_suite/int_nat_00.tzt tzt_reference_test_suite/int_nat_01.tzt tzt_reference_test_suite/isnat_00.tzt tzt_reference_test_suite/isnat_01.tzt tzt_reference_test_suite/iter_00.tc.tzt tzt_reference_test_suite/iter_listint_00.tzt tzt_reference_test_suite/iter_listint_01.tzt tzt_reference_test_suite/iter_listint_02.tzt tzt_reference_test_suite/iter_listint_03.tzt tzt_reference_test_suite/iter_liststring_00.tzt tzt_reference_test_suite/iter_liststring_01.tzt tzt_reference_test_suite/iter_mapintint_00.tzt tzt_reference_test_suite/iter_mapintint_01.tzt tzt_reference_test_suite/iter_mapintint_02.tzt tzt_reference_test_suite/iter_mapintint_03.tzt tzt_reference_test_suite/iter_mapintint_04.tzt tzt_reference_test_suite/iter_mapstringstring_00.tzt tzt_reference_test_suite/iter_setint_00.tzt tzt_reference_test_suite/iter_setint_01.tzt tzt_reference_test_suite/iter_setint_02.tzt tzt_reference_test_suite/iter_setstring_00.tzt tzt_reference_test_suite/iter_setstring_01.tzt tzt_reference_test_suite/iter_setstring_02.tzt tzt_reference_test_suite/join_tickets_00.tzt tzt_reference_test_suite/join_tickets_01.tzt tzt_reference_test_suite/join_tickets_02.tzt tzt_reference_test_suite/join_tickets_03.tzt tzt_reference_test_suite/keccak_00.tzt tzt_reference_test_suite/keccak_01.tzt tzt_reference_test_suite/le_00.tzt tzt_reference_test_suite/le_01.tzt tzt_reference_test_suite/le_02.tzt tzt_reference_test_suite/le_03.tzt tzt_reference_test_suite/le_04.tzt tzt_reference_test_suite/left_int-nat_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_01.tzt tzt_reference_test_suite/loop_00.tzt tzt_reference_test_suite/loop_00.tc.tzt tzt_reference_test_suite/loop_01.tzt tzt_reference_test_suite/loop_01.tc.tzt tzt_reference_test_suite/loop_02.tzt tzt_reference_test_suite/loopleft_00.tzt tzt_reference_test_suite/loopleft_01.tzt tzt_reference_test_suite/loopleft_02.tzt tzt_reference_test_suite/loopleft_03.tzt tzt_reference_test_suite/loopleft_04.tzt tzt_reference_test_suite/lsl_bytes_00.tzt tzt_reference_test_suite/lsl_bytes_01.tzt tzt_reference_test_suite/lsl_bytes_02.tzt tzt_reference_test_suite/lsl_bytes_03.tzt tzt_reference_test_suite/lsl_bytes_04.tzt tzt_reference_test_suite/lsl_bytes_05.tzt tzt_reference_test_suite/lsl_bytes_06.tzt tzt_reference_test_suite/lsl_nat_00.tzt tzt_reference_test_suite/lsl_nat_01.tzt tzt_reference_test_suite/lsl_nat_02.tzt tzt_reference_test_suite/lsl_nat_03.tzt tzt_reference_test_suite/lsl_nat_04.tzt tzt_reference_test_suite/lsl_nat_05.tzt tzt_reference_test_suite/lsl_nat_06.tzt tzt_reference_test_suite/lsl_nat_07.tzt tzt_reference_test_suite/lsl_nat_08.tzt tzt_reference_test_suite/lsr_bytes_00.tzt tzt_reference_test_suite/lsr_bytes_01.tzt tzt_reference_test_suite/lsr_bytes_02.tzt tzt_reference_test_suite/lsr_bytes_03.tzt tzt_reference_test_suite/lsr_bytes_04.tzt tzt_reference_test_suite/lsr_bytes_05.tzt tzt_reference_test_suite/lsr_bytes_06.tzt tzt_reference_test_suite/lsr_bytes_07.tzt tzt_reference_test_suite/lsr_nat_00.tzt tzt_reference_test_suite/lsr_nat_01.tzt tzt_reference_test_suite/lsr_nat_02.tzt tzt_reference_test_suite/lsr_nat_03.tzt tzt_reference_test_suite/lsr_nat_04.tzt tzt_reference_test_suite/lsr_nat_05.tzt tzt_reference_test_suite/lsr_nat_06.tzt tzt_reference_test_suite/lsr_nat_07.tzt tzt_reference_test_suite/lt_00.tzt tzt_reference_test_suite/lt_01.tzt tzt_reference_test_suite/lt_02.tzt tzt_reference_test_suite/lt_03.tzt tzt_reference_test_suite/lt_04.tzt tzt_reference_test_suite/macro_pack/assert_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpeq_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpge_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpgt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmple_00.tzt tzt_reference_test_suite/macro_pack/assert_cmplt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpneq_00.tzt tzt_reference_test_suite/macro_pack/assert_eq_00.tzt tzt_reference_test_suite/macro_pack/assert_ge_00.tzt tzt_reference_test_suite/macro_pack/assert_gt_00.tzt tzt_reference_test_suite/macro_pack/assert_le_00.tzt tzt_reference_test_suite/macro_pack/assert_left_00.tzt tzt_reference_test_suite/macro_pack/assert_lt_00.tzt tzt_reference_test_suite/macro_pack/assert_neq_00.tzt tzt_reference_test_suite/macro_pack/assert_none_00.tzt tzt_reference_test_suite/macro_pack/assert_right_00.tzt tzt_reference_test_suite/macro_pack/assert_some_00.tzt tzt_reference_test_suite/macro_pack/cadr_00.tzt tzt_reference_test_suite/macro_pack/carn_00.tzt tzt_reference_test_suite/macro_pack/carn_01.tzt tzt_reference_test_suite/macro_pack/cdrn_00.tzt tzt_reference_test_suite/macro_pack/cdrn_01.tzt tzt_reference_test_suite/macro_pack/cmpeq_00.tzt tzt_reference_test_suite/macro_pack/cmpge_00.tzt tzt_reference_test_suite/macro_pack/cmpgt_00.tzt tzt_reference_test_suite/macro_pack/cmple_00.tzt tzt_reference_test_suite/macro_pack/cmplt_00.tzt tzt_reference_test_suite/macro_pack/cmpneq_00.tzt tzt_reference_test_suite/macro_pack/fail_00.tzt tzt_reference_test_suite/macro_pack/ifcmpeq_00.tzt tzt_reference_test_suite/macro_pack/ifcmpge_00.tzt tzt_reference_test_suite/macro_pack/ifcmpgt_00.tzt tzt_reference_test_suite/macro_pack/ifcmple_00.tzt tzt_reference_test_suite/macro_pack/ifcmplt_00.tzt tzt_reference_test_suite/macro_pack/ifcmpneq_00.tzt tzt_reference_test_suite/macro_pack/ifeq_00.tzt tzt_reference_test_suite/macro_pack/ifge_00.tzt tzt_reference_test_suite/macro_pack/ifgt_00.tzt tzt_reference_test_suite/macro_pack/ifle_00.tzt tzt_reference_test_suite/macro_pack/iflt_00.tzt tzt_reference_test_suite/macro_pack/ifneq_00.tzt tzt_reference_test_suite/macro_pack/ifright_00.tzt tzt_reference_test_suite/macro_pack/ifsome_00.tzt tzt_reference_test_suite/macro_pack/mapcadr_00.tzt tzt_reference_test_suite/macro_pack/mapcar_00.tzt tzt_reference_test_suite/macro_pack/mapcdr_00.tzt tzt_reference_test_suite/macro_pack/papair_00.tzt tzt_reference_test_suite/macro_pack/setcadr_00.tzt tzt_reference_test_suite/macro_pack/setcar_00.tzt tzt_reference_test_suite/macro_pack/setcdr_00.tzt tzt_reference_test_suite/macro_pack/unpapair_00.tzt tzt_reference_test_suite/map_listint_00.tzt tzt_reference_test_suite/map_listint_01.tzt tzt_reference_test_suite/map_listint_02.tzt tzt_reference_test_suite/map_listint_03.tzt tzt_reference_test_suite/map_listint_04.tzt tzt_reference_test_suite/map_listint_05.tzt tzt_reference_test_suite/map_listint_06.tzt tzt_reference_test_suite/map_liststring_00.tzt tzt_reference_test_suite/map_liststring_01.tzt tzt_reference_test_suite/map_liststring_02.tzt tzt_reference_test_suite/map_liststring_04.tzt tzt_reference_test_suite/map_liststring_05.tzt tzt_reference_test_suite/map_liststring_06.tzt tzt_reference_test_suite/map_liststring_07.tzt tzt_reference_test_suite/map_liststring_08.tzt tzt_reference_test_suite/map_mapintint_00.tzt tzt_reference_test_suite/map_mapintint_01.tzt tzt_reference_test_suite/map_mapintstring_00.tzt tzt_reference_test_suite/map_mapintstring_01.tzt tzt_reference_test_suite/map_mapstringnat_00.tzt tzt_reference_test_suite/map_mapstringnat_01.tzt tzt_reference_test_suite/map_mapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_00.tzt tzt_reference_test_suite/mem_bigmapnatnat_01.tzt tzt_reference_test_suite/mem_bigmapnatnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_03.tzt tzt_reference_test_suite/mem_bigmapnatnat_04.tzt tzt_reference_test_suite/mem_bigmapnatnat_05.tzt tzt_reference_test_suite/mem_bigmapstringnat_00.tzt tzt_reference_test_suite/mem_bigmapstringnat_01.tzt tzt_reference_test_suite/mem_bigmapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapstringnat_03.tzt tzt_reference_test_suite/mem_bigmapstringnat_04.tzt tzt_reference_test_suite/mem_bigmapstringnat_05.tzt tzt_reference_test_suite/mem_mapintint_00.tzt tzt_reference_test_suite/mem_mapnatnat_00.tzt tzt_reference_test_suite/mem_mapnatnat_01.tzt tzt_reference_test_suite/mem_mapnatnat_02.tzt tzt_reference_test_suite/mem_mapnatnat_03.tzt tzt_reference_test_suite/mem_mapnatnat_04.tzt tzt_reference_test_suite/mem_mapnatnat_05.tzt tzt_reference_test_suite/mem_mapstringnat_00.tzt tzt_reference_test_suite/mem_mapstringnat_01.tzt tzt_reference_test_suite/mem_mapstringnat_02.tzt tzt_reference_test_suite/mem_mapstringnat_03.tzt tzt_reference_test_suite/mem_mapstringnat_04.tzt tzt_reference_test_suite/mem_mapstringnat_05.tzt tzt_reference_test_suite/mem_setint_00.tzt tzt_reference_test_suite/mem_setint_01.tzt tzt_reference_test_suite/mem_setstring_00.tzt tzt_reference_test_suite/mem_setstring_01.tzt tzt_reference_test_suite/mem_setstring_02.tzt tzt_reference_test_suite/mul_int-int_00.tzt tzt_reference_test_suite/mul_int-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_01.tzt tzt_reference_test_suite/mul_nat-int_00.tzt tzt_reference_test_suite/mul_nat-mutez_00.tzt tzt_reference_test_suite/mul_nat-mutez_01.tzt tzt_reference_test_suite/mul_nat-nat_00.tzt tzt_reference_test_suite/neg_int_00.tzt tzt_reference_test_suite/neg_int_01.tzt tzt_reference_test_suite/neg_int_02.tzt tzt_reference_test_suite/neg_nat_00.tzt tzt_reference_test_suite/neg_nat_01.tzt tzt_reference_test_suite/neq_00.tzt tzt_reference_test_suite/neq_01.tzt tzt_reference_test_suite/neq_02.tzt tzt_reference_test_suite/neq_03.tzt tzt_reference_test_suite/neq_04.tzt tzt_reference_test_suite/never_00.tzt tzt_reference_test_suite/never_00.tc.tzt tzt_reference_test_suite/nil_nat_00.tzt tzt_reference_test_suite/none_int_00.tzt tzt_reference_test_suite/none_pair-nat-string.tzt tzt_reference_test_suite/not_bool_00.tzt tzt_reference_test_suite/not_bool_01.tzt tzt_reference_test_suite/not_bytes_00.tzt tzt_reference_test_suite/not_bytes_01.tzt tzt_reference_test_suite/not_bytes_02.tzt tzt_reference_test_suite/not_bytes_03.tzt tzt_reference_test_suite/not_bytes_04.tzt tzt_reference_test_suite/not_bytes_05.tzt tzt_reference_test_suite/not_int_00.tzt tzt_reference_test_suite/not_nat_00.tzt tzt_reference_test_suite/not_nat_01.tzt tzt_reference_test_suite/not_nat_02.tzt tzt_reference_test_suite/not_nat_03.tzt tzt_reference_test_suite/not_nat_04.tzt tzt_reference_test_suite/not_nat_05.tzt tzt_reference_test_suite/not_nat_06.tzt tzt_reference_test_suite/not_nat_07.tzt tzt_reference_test_suite/now_00.tzt tzt_reference_test_suite/or_bool-bool_00.tzt tzt_reference_test_suite/or_bool-bool_01.tzt tzt_reference_test_suite/or_bool-bool_02.tzt tzt_reference_test_suite/or_bool-bool_03.tzt tzt_reference_test_suite/or_bytes-bytes_00.tzt tzt_reference_test_suite/or_bytes-bytes_01.tzt tzt_reference_test_suite/or_bytes-bytes_02.tzt tzt_reference_test_suite/or_bytes-bytes_03.tzt tzt_reference_test_suite/or_bytes-bytes_04.tzt tzt_reference_test_suite/or_bytes-bytes_05.tzt tzt_reference_test_suite/or_bytes-bytes_06.tzt tzt_reference_test_suite/or_nat-nat_00.tzt tzt_reference_test_suite/or_nat-nat_01.tzt tzt_reference_test_suite/or_nat-nat_02.tzt tzt_reference_test_suite/or_nat-nat_03.tzt tzt_reference_test_suite/or_nat-nat_04.tzt tzt_reference_test_suite/or_nat-nat_05.tzt tzt_reference_test_suite/or_nat-nat_06.tzt tzt_reference_test_suite/pack_address_00.tzt tzt_reference_test_suite/pack_address_01.tzt tzt_reference_test_suite/pack_address_02.tzt tzt_reference_test_suite/pack_address_03.tzt tzt_reference_test_suite/pack_address_04.tzt tzt_reference_test_suite/pack_address_05.tzt tzt_reference_test_suite/pack_bool_00.tzt tzt_reference_test_suite/pack_bool_01.tzt tzt_reference_test_suite/pack_bytes_00.tzt tzt_reference_test_suite/pack_bytes_01.tzt tzt_reference_test_suite/pack_bytes_02.tzt tzt_reference_test_suite/pack_chainid_00.tzt tzt_reference_test_suite/pack_contract_00.tzt tzt_reference_test_suite/pack_key_00.tzt tzt_reference_test_suite/pack_key_01.tzt tzt_reference_test_suite/pack_key_02.tzt tzt_reference_test_suite/pack_key_03.tzt tzt_reference_test_suite/pack_keyhash_01.tzt tzt_reference_test_suite/pack_keyhash_02.tzt tzt_reference_test_suite/pack_keyhash_03.tzt tzt_reference_test_suite/pack_keyhash_04.tzt tzt_reference_test_suite/pack_lambda_comb_pairs.tzt tzt_reference_test_suite/pack_list-bool_00.tzt tzt_reference_test_suite/pack_list-bool_01.tzt tzt_reference_test_suite/pack_list-list-bool.tzt tzt_reference_test_suite/pack_list_large_00.tzt tzt_reference_test_suite/pack_map-bool-unit_00.tzt tzt_reference_test_suite/pack_operation_00.tc.tzt tzt_reference_test_suite/pack_option-unit_00.tzt tzt_reference_test_suite/pack_option-unit_01.tzt tzt_reference_test_suite/pack_or-unit-bool_00.tzt tzt_reference_test_suite/pack_or-unit-bool_01.tzt tzt_reference_test_suite/pack_pair-bool-unit_00.tzt tzt_reference_test_suite/pack_signature_00.tzt tzt_reference_test_suite/pack_signature_01.tzt tzt_reference_test_suite/pack_signature_02.tzt tzt_reference_test_suite/pack_signature_03.tzt tzt_reference_test_suite/pack_string_00.tzt tzt_reference_test_suite/pack_string_01.tzt tzt_reference_test_suite/pack_string_02.tzt tzt_reference_test_suite/pack_string_03.tzt tzt_reference_test_suite/pack_unit_00.tzt tzt_reference_test_suite/packunpack_address_00.tzt tzt_reference_test_suite/packunpack_bool_00.tzt tzt_reference_test_suite/packunpack_bytes_00.tzt tzt_reference_test_suite/packunpack_int_00.tzt tzt_reference_test_suite/packunpack_keyhash_00.tzt tzt_reference_test_suite/packunpack_mutez_00.tzt tzt_reference_test_suite/packunpack_nat_00.tzt tzt_reference_test_suite/packunpack_string_00.tzt tzt_reference_test_suite/packunpack_timestamp_00.tzt tzt_reference_test_suite/pair_00.tc.tzt tzt_reference_test_suite/pair_int-int_00.tzt tzt_reference_test_suite/pair_nat-string_00.tzt tzt_reference_test_suite/pair_pair-nat-string-pair-string-nat_00.tzt tzt_reference_test_suite/push_00.tc.tzt tzt_reference_test_suite/push_int_00.tzt tzt_reference_test_suite/push_string_00.tzt tzt_reference_test_suite/read_ticket_00.tzt tzt_reference_test_suite/right_nat-int_00.tzt tzt_reference_test_suite/self_00.tzt tzt_reference_test_suite/self_01.tzt tzt_reference_test_suite/self_in_lambda.tc.tzt tzt_reference_test_suite/sender_00.tzt tzt_reference_test_suite/setdelegate_00.tzt tzt_reference_test_suite/setdelegate_00.tc.tzt tzt_reference_test_suite/sha256_00.tzt tzt_reference_test_suite/sha256_01.tzt tzt_reference_test_suite/sha3_00.tzt tzt_reference_test_suite/sha3_01.tzt tzt_reference_test_suite/sha512_00.tzt tzt_reference_test_suite/sha512_01.tzt tzt_reference_test_suite/size_bytes_00.tzt tzt_reference_test_suite/size_listint_00.tzt tzt_reference_test_suite/size_listint_01.tzt tzt_reference_test_suite/size_listint_02.tzt tzt_reference_test_suite/size_listint_03.tzt tzt_reference_test_suite/size_mapintint_00.tzt tzt_reference_test_suite/size_mapstringnat_00.tzt tzt_reference_test_suite/size_mapstringnat_01.tzt tzt_reference_test_suite/size_mapstringnat_02.tzt tzt_reference_test_suite/size_mapstringnat_03.tzt tzt_reference_test_suite/size_setint_00.tzt tzt_reference_test_suite/size_setint_01.tzt tzt_reference_test_suite/size_setint_02.tzt tzt_reference_test_suite/size_setint_03.tzt tzt_reference_test_suite/size_setstring_00.tzt tzt_reference_test_suite/size_string_00.tzt tzt_reference_test_suite/slice_bytes_00.tzt tzt_reference_test_suite/slice_bytes_01.tzt tzt_reference_test_suite/slice_bytes_02.tzt tzt_reference_test_suite/slice_bytes_03.tzt tzt_reference_test_suite/slice_bytes_04.tzt tzt_reference_test_suite/slice_string_00.tzt tzt_reference_test_suite/slice_string_01.tzt tzt_reference_test_suite/slice_string_02.tzt tzt_reference_test_suite/slice_string_03.tzt tzt_reference_test_suite/slice_string_04.tzt tzt_reference_test_suite/slice_string_05.tzt tzt_reference_test_suite/some_00.tc.tzt tzt_reference_test_suite/some_int_00.tzt tzt_reference_test_suite/some_pairintint_00.tzt tzt_reference_test_suite/some_string_00.tzt tzt_reference_test_suite/source_00.tzt tzt_reference_test_suite/split_ticket_00.tzt tzt_reference_test_suite/split_ticket_01.tzt tzt_reference_test_suite/split_ticket_02.tzt tzt_reference_test_suite/split_ticket_03.tzt tzt_reference_test_suite/split_ticket_04.tzt tzt_reference_test_suite/sub_int-int_00.tzt tzt_reference_test_suite/sub_int-int_01.tzt tzt_reference_test_suite/sub_int-int_02.tzt tzt_reference_test_suite/sub_int-int_03.tzt tzt_reference_test_suite/sub_int-int_04.tzt tzt_reference_test_suite/sub_int-int_05.tzt tzt_reference_test_suite/sub_int-nat_00.tzt tzt_reference_test_suite/sub_int-nat_01.tzt tzt_reference_test_suite/sub_int-nat_02.tzt tzt_reference_test_suite/sub_int-nat_03.tzt tzt_reference_test_suite/sub_int-nat_04.tzt tzt_reference_test_suite/sub_int-nat_05.tzt tzt_reference_test_suite/sub_mutez_00.tzt tzt_reference_test_suite/sub_mutez_01.tzt tzt_reference_test_suite/sub_nat-int_00.tzt tzt_reference_test_suite/sub_nat-int_01.tzt tzt_reference_test_suite/sub_nat-int_02.tzt tzt_reference_test_suite/sub_nat-int_03.tzt tzt_reference_test_suite/sub_nat-int_04.tzt tzt_reference_test_suite/sub_nat-int_05.tzt tzt_reference_test_suite/sub_nat-nat_00.tzt tzt_reference_test_suite/sub_nat-nat_01.tzt tzt_reference_test_suite/sub_nat-nat_02.tzt tzt_reference_test_suite/sub_nat-nat_03.tzt tzt_reference_test_suite/sub_nat-nat_04.tzt tzt_reference_test_suite/sub_timestamp-int_00.tzt tzt_reference_test_suite/sub_timestamp-int_01.tzt tzt_reference_test_suite/sub_timestamp-int_02.tzt tzt_reference_test_suite/sub_timestamp-int_03.tzt tzt_reference_test_suite/sub_timestamp-int_04.tzt tzt_reference_test_suite/sub_timestamp-int_05.tzt tzt_reference_test_suite/sub_timestamp-int_06.tzt tzt_reference_test_suite/sub_timestamp-timestamp_00.tzt tzt_reference_test_suite/sub_timestamp-timestamp_01.tzt tzt_reference_test_suite/sub_timestamp-timestamp_02.tzt tzt_reference_test_suite/sub_timestamp-timestamp_03.tzt tzt_reference_test_suite/sub_timestamp-timestamp_04.tzt tzt_reference_test_suite/swap_00.tzt tzt_reference_test_suite/swap_00.tc.tzt tzt_reference_test_suite/swap_01.tc.tzt tzt_reference_test_suite/ticket_00.tzt tzt_reference_test_suite/ticket_01.tzt tzt_reference_test_suite/transfertokens_00.tzt tzt_reference_test_suite/transfertokens_00.tc.tzt tzt_reference_test_suite/transfertokens_01.tzt tzt_reference_test_suite/unit_00.tzt tzt_reference_test_suite/unpair_00.tc.tzt tzt_reference_test_suite/unpair_pairstringstring_00.tzt tzt_reference_test_suite/update_00.tc.tzt tzt_reference_test_suite/update_bigmapstringstring_00.tzt tzt_reference_test_suite/update_bigmapstringstring_01.tzt tzt_reference_test_suite/update_bigmapstringstring_02.tzt tzt_reference_test_suite/update_bigmapstringstring_03.tzt tzt_reference_test_suite/update_bigmapstringstring_04.tzt tzt_reference_test_suite/update_bigmapstringstring_05.tzt tzt_reference_test_suite/update_bigmapstringstring_06.tzt tzt_reference_test_suite/update_bigmapstringstring_07.tzt tzt_reference_test_suite/update_mapintint_00.tzt tzt_reference_test_suite/update_mapintint_01.tzt tzt_reference_test_suite/update_setint_00.tzt tzt_reference_test_suite/update_setint_01.tzt tzt_reference_test_suite/update_setint_02.tzt tzt_reference_test_suite/xor_bool-bool_00.tzt tzt_reference_test_suite/xor_bool-bool_01.tzt tzt_reference_test_suite/xor_bool-bool_02.tzt tzt_reference_test_suite/xor_bool-bool_03.tzt tzt_reference_test_suite/xor_bytes-bytes_00.tzt tzt_reference_test_suite/xor_bytes-bytes_01.tzt tzt_reference_test_suite/xor_bytes-bytes_02.tzt tzt_reference_test_suite/xor_bytes-bytes_03.tzt tzt_reference_test_suite/xor_bytes-bytes_04.tzt tzt_reference_test_suite/xor_bytes-bytes_05.tzt tzt_reference_test_suite/xor_bytes-bytes_06.tzt tzt_reference_test_suite/xor_nat-nat_00.tzt tzt_reference_test_suite/xor_nat-nat_01.tzt tzt_reference_test_suite/xor_nat-nat_02.tzt tzt_reference_test_suite/xor_nat-nat_03.tzt tzt_reference_test_suite/xor_nat-nat_04.tzt tzt_reference_test_suite/xor_nat-nat_05.tzt tzt_reference_test_suite/xor_nat-nat_06.tzt
+./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run unit tests from tzt_reference_test_suite/abs_00.tzt tzt_reference_test_suite/abs_01.tzt tzt_reference_test_suite/abs_02.tzt tzt_reference_test_suite/add_00.tc.tzt tzt_reference_test_suite/add_01.tc.tzt tzt_reference_test_suite/add_int-int_00.tzt tzt_reference_test_suite/add_int-nat_00.tzt tzt_reference_test_suite/add_int-nat_01.tzt tzt_reference_test_suite/add_int-timestamp_00.tzt tzt_reference_test_suite/add_mutez-mutez_00.tzt tzt_reference_test_suite/add_mutez-mutez_01.tzt tzt_reference_test_suite/add_nat-int_00.tzt tzt_reference_test_suite/add_nat-nat_00.tzt tzt_reference_test_suite/add_timestamp-int_00.tzt tzt_reference_test_suite/add_timestamp-int_01.tzt tzt_reference_test_suite/add_timestamp-int_02.tzt tzt_reference_test_suite/add_timestamp-int_03.tzt tzt_reference_test_suite/address_00.tzt tzt_reference_test_suite/address_00.tc.tzt tzt_reference_test_suite/address_01.tzt tzt_reference_test_suite/address_02.tzt tzt_reference_test_suite/amount_00.tzt tzt_reference_test_suite/and_bool-bool_00.tzt tzt_reference_test_suite/and_bool-bool_01.tzt tzt_reference_test_suite/and_bool-bool_02.tzt tzt_reference_test_suite/and_bool-bool_03.tzt tzt_reference_test_suite/and_bytes-bytes_00.tzt tzt_reference_test_suite/and_bytes-bytes_01.tzt tzt_reference_test_suite/and_bytes-bytes_02.tzt tzt_reference_test_suite/and_bytes-bytes_03.tzt tzt_reference_test_suite/and_bytes-bytes_04.tzt tzt_reference_test_suite/and_bytes-bytes_05.tzt tzt_reference_test_suite/and_bytes-bytes_06.tzt tzt_reference_test_suite/and_int-nat_00.tzt tzt_reference_test_suite/and_int-nat_01.tzt tzt_reference_test_suite/and_int-nat_02.tzt tzt_reference_test_suite/and_int-nat_03.tzt tzt_reference_test_suite/and_int-nat_04.tzt tzt_reference_test_suite/and_int-nat_05.tzt tzt_reference_test_suite/and_int-nat_06.tzt tzt_reference_test_suite/and_nat-nat_00.tzt tzt_reference_test_suite/and_nat-nat_01.tzt tzt_reference_test_suite/and_nat-nat_02.tzt tzt_reference_test_suite/apply_00.tzt tzt_reference_test_suite/apply_01.tzt tzt_reference_test_suite/apply_02.tzt tzt_reference_test_suite/balance_00.tzt tzt_reference_test_suite/blake2b_00.tzt tzt_reference_test_suite/blake2b_01.tzt tzt_reference_test_suite/car_00.tzt tzt_reference_test_suite/car_00.tc.tzt tzt_reference_test_suite/car_01.tzt tzt_reference_test_suite/cdr_00.tzt tzt_reference_test_suite/cdr_00.tc.tzt tzt_reference_test_suite/cdr_01.tzt tzt_reference_test_suite/chain_id_00.tzt tzt_reference_test_suite/chain_id_01.tzt tzt_reference_test_suite/checksignature_00.tzt tzt_reference_test_suite/checksignature_00.tc.tzt tzt_reference_test_suite/checksignature_01.tzt tzt_reference_test_suite/compare_00.tc.tzt tzt_reference_test_suite/compare_01.tc.tzt tzt_reference_test_suite/compare_02.tc.tzt tzt_reference_test_suite/compare_bool_00.tzt tzt_reference_test_suite/compare_bool_01.tzt tzt_reference_test_suite/compare_bool_02.tzt tzt_reference_test_suite/compare_bool_03.tzt tzt_reference_test_suite/compare_bytes_00.tzt tzt_reference_test_suite/compare_bytes_01.tzt tzt_reference_test_suite/compare_bytes_02.tzt tzt_reference_test_suite/compare_bytes_03.tzt tzt_reference_test_suite/compare_bytes_04.tzt tzt_reference_test_suite/compare_int_00.tzt tzt_reference_test_suite/compare_int_01.tzt tzt_reference_test_suite/compare_int_02.tzt tzt_reference_test_suite/compare_int_03.tzt tzt_reference_test_suite/compare_int_04.tzt tzt_reference_test_suite/compare_keyhash_00.tzt tzt_reference_test_suite/compare_keyhash_01.tzt tzt_reference_test_suite/compare_keyhash_02.tzt tzt_reference_test_suite/compare_mutez_00.tzt tzt_reference_test_suite/compare_mutez_01.tzt tzt_reference_test_suite/compare_mutez_02.tzt tzt_reference_test_suite/compare_mutez_03.tzt tzt_reference_test_suite/compare_mutez_04.tzt tzt_reference_test_suite/compare_mutez_05.tzt tzt_reference_test_suite/compare_nat_00.tzt tzt_reference_test_suite/compare_nat_01.tzt tzt_reference_test_suite/compare_nat_02.tzt tzt_reference_test_suite/compare_nat_03.tzt tzt_reference_test_suite/compare_nat_04.tzt tzt_reference_test_suite/compare_nat_05.tzt tzt_reference_test_suite/compare_never_00.tzt tzt_reference_test_suite/compare_pairintint_00.tzt tzt_reference_test_suite/compare_pairintint_01.tzt tzt_reference_test_suite/compare_pairintint_02.tzt tzt_reference_test_suite/compare_pairintint_03.tzt tzt_reference_test_suite/compare_string_00.tzt tzt_reference_test_suite/compare_string_01.tzt tzt_reference_test_suite/compare_string_02.tzt tzt_reference_test_suite/compare_string_03.tzt tzt_reference_test_suite/compare_string_04.tzt tzt_reference_test_suite/compare_timestamp_00.tzt tzt_reference_test_suite/compare_timestamp_01.tzt tzt_reference_test_suite/compare_timestamp_02.tzt tzt_reference_test_suite/compare_timestamp_03.tzt tzt_reference_test_suite/compare_timestamp_04.tzt tzt_reference_test_suite/compare_timestamp_05.tzt tzt_reference_test_suite/concat_00.tc.tzt tzt_reference_test_suite/concat_bytes_00.tzt tzt_reference_test_suite/concat_bytes_01.tzt tzt_reference_test_suite/concat_listbytes_00.tzt tzt_reference_test_suite/concat_listbytes_01.tzt tzt_reference_test_suite/concat_listbytes_02.tzt tzt_reference_test_suite/concat_liststring_00.tzt tzt_reference_test_suite/concat_liststring_01.tzt tzt_reference_test_suite/concat_liststring_02.tzt tzt_reference_test_suite/concat_liststring_03.tzt tzt_reference_test_suite/concat_liststring_04.tzt tzt_reference_test_suite/concat_string_00.tzt tzt_reference_test_suite/concat_string_01.tzt tzt_reference_test_suite/concat_string_02.tzt tzt_reference_test_suite/cons_int_00.tzt tzt_reference_test_suite/cons_int_01.tzt tzt_reference_test_suite/cons_int_02.tzt tzt_reference_test_suite/cons_lists_00.tc.tzt tzt_reference_test_suite/cons_string_00.tzt tzt_reference_test_suite/contract_00.tzt tzt_reference_test_suite/contract_01.tzt tzt_reference_test_suite/contract_02.tzt tzt_reference_test_suite/contract_03.tzt tzt_reference_test_suite/contract_04.tzt tzt_reference_test_suite/contract_05.tzt tzt_reference_test_suite/createcontract_00.tzt tzt_reference_test_suite/createcontract_01.tzt tzt_reference_test_suite/dig_00.tzt tzt_reference_test_suite/dig_01.tzt tzt_reference_test_suite/dig_02.tzt tzt_reference_test_suite/dig_03.tzt tzt_reference_test_suite/dig_04.tzt tzt_reference_test_suite/dip_00.tzt tzt_reference_test_suite/dip_00.tc.tzt tzt_reference_test_suite/dip_01.tzt tzt_reference_test_suite/dip_02.tzt tzt_reference_test_suite/dipn_00.tzt tzt_reference_test_suite/dipn_00.tc.tzt tzt_reference_test_suite/dipn_01.tzt tzt_reference_test_suite/dipn_01.tc.tzt tzt_reference_test_suite/dipn_02.tzt tzt_reference_test_suite/dipn_02.tc.tzt tzt_reference_test_suite/dipn_03.tzt tzt_reference_test_suite/drop_00.tzt tzt_reference_test_suite/drop_00.tc.tzt tzt_reference_test_suite/dropn_00.tzt tzt_reference_test_suite/dropn_00.tc.tzt tzt_reference_test_suite/dropn_01.tzt tzt_reference_test_suite/dropn_02.tzt tzt_reference_test_suite/dropn_03.tzt tzt_reference_test_suite/dugn_00.tzt tzt_reference_test_suite/dup_00.tzt tzt_reference_test_suite/dup_00.tc.tzt tzt_reference_test_suite/dupn_00.tzt tzt_reference_test_suite/dupn_00.tc.tzt tzt_reference_test_suite/dupn_01.tzt tzt_reference_test_suite/dupn_01.tc.tzt tzt_reference_test_suite/dupn_02.tzt tzt_reference_test_suite/dupn_03.tzt tzt_reference_test_suite/dupn_04.tzt tzt_reference_test_suite/ediv_int-int_00.tzt tzt_reference_test_suite/ediv_int-int_01.tzt tzt_reference_test_suite/ediv_int-int_02.tzt tzt_reference_test_suite/ediv_int-int_03.tzt tzt_reference_test_suite/ediv_int-int_04.tzt tzt_reference_test_suite/ediv_int-int_05.tzt tzt_reference_test_suite/ediv_int-int_06.tzt tzt_reference_test_suite/ediv_int-int_07.tzt tzt_reference_test_suite/ediv_int-int_08.tzt tzt_reference_test_suite/ediv_int-nat_00.tzt tzt_reference_test_suite/ediv_int-nat_01.tzt tzt_reference_test_suite/ediv_int-nat_02.tzt tzt_reference_test_suite/ediv_int-nat_03.tzt tzt_reference_test_suite/ediv_int-nat_04.tzt tzt_reference_test_suite/ediv_int-nat_05.tzt tzt_reference_test_suite/ediv_mutez-mutez_00.tzt tzt_reference_test_suite/ediv_mutez-mutez_01.tzt tzt_reference_test_suite/ediv_mutez-mutez_02.tzt tzt_reference_test_suite/ediv_mutez-mutez_03.tzt tzt_reference_test_suite/ediv_mutez-mutez_04.tzt tzt_reference_test_suite/ediv_mutez-mutez_05.tzt tzt_reference_test_suite/ediv_mutez-nat_00.tzt tzt_reference_test_suite/ediv_mutez-nat_01.tzt tzt_reference_test_suite/ediv_mutez-nat_02.tzt tzt_reference_test_suite/ediv_mutez-nat_03.tzt tzt_reference_test_suite/ediv_mutez-nat_04.tzt tzt_reference_test_suite/ediv_mutez-nat_05.tzt tzt_reference_test_suite/ediv_mutez-nat_06.tzt tzt_reference_test_suite/ediv_nat-int_00.tzt tzt_reference_test_suite/ediv_nat-int_01.tzt tzt_reference_test_suite/ediv_nat-int_02.tzt tzt_reference_test_suite/ediv_nat-int_03.tzt tzt_reference_test_suite/ediv_nat-int_04.tzt tzt_reference_test_suite/ediv_nat-int_05.tzt tzt_reference_test_suite/ediv_nat-nat_00.tzt tzt_reference_test_suite/ediv_nat-nat_01.tzt tzt_reference_test_suite/ediv_nat-nat_02.tzt tzt_reference_test_suite/ediv_nat-nat_03.tzt tzt_reference_test_suite/ediv_nat-nat_04.tzt tzt_reference_test_suite/emptybigmap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_string-string_00.tzt tzt_reference_test_suite/emptyset_00.tc.tzt tzt_reference_test_suite/emptyset_nat_00.tzt tzt_reference_test_suite/eq_00.tzt tzt_reference_test_suite/eq_01.tzt tzt_reference_test_suite/eq_02.tzt tzt_reference_test_suite/eq_03.tzt tzt_reference_test_suite/eq_04.tzt tzt_reference_test_suite/exec_00.tzt tzt_reference_test_suite/exec_01.tzt tzt_reference_test_suite/exec_02.tzt tzt_reference_test_suite/exec_03.tzt tzt_reference_test_suite/failwith_00.tzt tzt_reference_test_suite/failwith_00.tc.tzt tzt_reference_test_suite/gas_exhaustion.tzt tzt_reference_test_suite/ge_00.tzt tzt_reference_test_suite/ge_01.tzt tzt_reference_test_suite/ge_02.tzt tzt_reference_test_suite/ge_03.tzt tzt_reference_test_suite/ge_04.tzt tzt_reference_test_suite/get_00.tc.tzt tzt_reference_test_suite/get_bigmapstringstring_00.tzt tzt_reference_test_suite/get_bigmapstringstring_01.tzt tzt_reference_test_suite/get_bigmapstringstring_02.tzt tzt_reference_test_suite/get_map_00.tc.tzt tzt_reference_test_suite/get_mapintint_00.tzt tzt_reference_test_suite/get_mapintint_01.tzt tzt_reference_test_suite/get_mapstringstring_00.tzt tzt_reference_test_suite/get_mapstringstring_01.tzt tzt_reference_test_suite/get_mapstringstring_02.tzt tzt_reference_test_suite/gt_00.tzt tzt_reference_test_suite/gt_00.tc.tzt tzt_reference_test_suite/gt_01.tzt tzt_reference_test_suite/gt_02.tzt tzt_reference_test_suite/gt_03.tzt tzt_reference_test_suite/gt_04.tzt tzt_reference_test_suite/if_00.tzt tzt_reference_test_suite/if_00.tc.tzt tzt_reference_test_suite/if_01.tzt tzt_reference_test_suite/if_01.tc.tzt tzt_reference_test_suite/ifcons_00.tc.tzt tzt_reference_test_suite/ifcons_listint_00.tzt tzt_reference_test_suite/ifcons_listint_01.tzt tzt_reference_test_suite/ifcons_listnat_00.tzt tzt_reference_test_suite/ifcons_listnat_01.tzt tzt_reference_test_suite/ifleft_00.tc.tzt tzt_reference_test_suite/ifleft_orintstring_00.tzt tzt_reference_test_suite/ifleft_orstringint_00.tzt tzt_reference_test_suite/ifnone_00.tc.tzt tzt_reference_test_suite/ifnone_optionint_00.tzt tzt_reference_test_suite/ifnone_optionnat_00.tzt tzt_reference_test_suite/implicitaccount_00.tzt tzt_reference_test_suite/int_00.tc.tzt tzt_reference_test_suite/int_nat_00.tzt tzt_reference_test_suite/int_nat_01.tzt tzt_reference_test_suite/isnat_00.tzt tzt_reference_test_suite/isnat_01.tzt tzt_reference_test_suite/iter_00.tc.tzt tzt_reference_test_suite/iter_listint_00.tzt tzt_reference_test_suite/iter_listint_01.tzt tzt_reference_test_suite/iter_listint_02.tzt tzt_reference_test_suite/iter_listint_03.tzt tzt_reference_test_suite/iter_liststring_00.tzt tzt_reference_test_suite/iter_liststring_01.tzt tzt_reference_test_suite/iter_mapintint_00.tzt tzt_reference_test_suite/iter_mapintint_01.tzt tzt_reference_test_suite/iter_mapintint_02.tzt tzt_reference_test_suite/iter_mapintint_03.tzt tzt_reference_test_suite/iter_mapintint_04.tzt tzt_reference_test_suite/iter_mapstringstring_00.tzt tzt_reference_test_suite/iter_setint_00.tzt tzt_reference_test_suite/iter_setint_01.tzt tzt_reference_test_suite/iter_setint_02.tzt tzt_reference_test_suite/iter_setstring_00.tzt tzt_reference_test_suite/iter_setstring_01.tzt tzt_reference_test_suite/iter_setstring_02.tzt tzt_reference_test_suite/join_tickets_00.tzt tzt_reference_test_suite/join_tickets_01.tzt tzt_reference_test_suite/join_tickets_02.tzt tzt_reference_test_suite/join_tickets_03.tzt tzt_reference_test_suite/keccak_00.tzt tzt_reference_test_suite/keccak_01.tzt tzt_reference_test_suite/le_00.tzt tzt_reference_test_suite/le_01.tzt tzt_reference_test_suite/le_02.tzt tzt_reference_test_suite/le_03.tzt tzt_reference_test_suite/le_04.tzt tzt_reference_test_suite/left_int-nat_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_01.tzt tzt_reference_test_suite/loop_00.tzt tzt_reference_test_suite/loop_00.tc.tzt tzt_reference_test_suite/loop_01.tzt tzt_reference_test_suite/loop_01.tc.tzt tzt_reference_test_suite/loop_02.tzt tzt_reference_test_suite/loopleft_00.tzt tzt_reference_test_suite/loopleft_01.tzt tzt_reference_test_suite/loopleft_02.tzt tzt_reference_test_suite/loopleft_03.tzt tzt_reference_test_suite/loopleft_04.tzt tzt_reference_test_suite/lsl_bytes_00.tzt tzt_reference_test_suite/lsl_bytes_01.tzt tzt_reference_test_suite/lsl_bytes_02.tzt tzt_reference_test_suite/lsl_bytes_03.tzt tzt_reference_test_suite/lsl_bytes_04.tzt tzt_reference_test_suite/lsl_bytes_05.tzt tzt_reference_test_suite/lsl_bytes_06.tzt tzt_reference_test_suite/lsl_nat_00.tzt tzt_reference_test_suite/lsl_nat_01.tzt tzt_reference_test_suite/lsl_nat_02.tzt tzt_reference_test_suite/lsl_nat_03.tzt tzt_reference_test_suite/lsl_nat_04.tzt tzt_reference_test_suite/lsl_nat_05.tzt tzt_reference_test_suite/lsl_nat_06.tzt tzt_reference_test_suite/lsl_nat_07.tzt tzt_reference_test_suite/lsl_nat_08.tzt tzt_reference_test_suite/lsr_bytes_00.tzt tzt_reference_test_suite/lsr_bytes_01.tzt tzt_reference_test_suite/lsr_bytes_02.tzt tzt_reference_test_suite/lsr_bytes_03.tzt tzt_reference_test_suite/lsr_bytes_04.tzt tzt_reference_test_suite/lsr_bytes_05.tzt tzt_reference_test_suite/lsr_bytes_06.tzt tzt_reference_test_suite/lsr_bytes_07.tzt tzt_reference_test_suite/lsr_nat_00.tzt tzt_reference_test_suite/lsr_nat_01.tzt tzt_reference_test_suite/lsr_nat_02.tzt tzt_reference_test_suite/lsr_nat_03.tzt tzt_reference_test_suite/lsr_nat_04.tzt tzt_reference_test_suite/lsr_nat_05.tzt tzt_reference_test_suite/lsr_nat_06.tzt tzt_reference_test_suite/lsr_nat_07.tzt tzt_reference_test_suite/lt_00.tzt tzt_reference_test_suite/lt_01.tzt tzt_reference_test_suite/lt_02.tzt tzt_reference_test_suite/lt_03.tzt tzt_reference_test_suite/lt_04.tzt tzt_reference_test_suite/macro_pack/assert_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpeq_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpge_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpgt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmple_00.tzt tzt_reference_test_suite/macro_pack/assert_cmplt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpneq_00.tzt tzt_reference_test_suite/macro_pack/assert_eq_00.tzt tzt_reference_test_suite/macro_pack/assert_ge_00.tzt tzt_reference_test_suite/macro_pack/assert_gt_00.tzt tzt_reference_test_suite/macro_pack/assert_le_00.tzt tzt_reference_test_suite/macro_pack/assert_left_00.tzt tzt_reference_test_suite/macro_pack/assert_lt_00.tzt tzt_reference_test_suite/macro_pack/assert_neq_00.tzt tzt_reference_test_suite/macro_pack/assert_none_00.tzt tzt_reference_test_suite/macro_pack/assert_right_00.tzt tzt_reference_test_suite/macro_pack/assert_some_00.tzt tzt_reference_test_suite/macro_pack/cadr_00.tzt tzt_reference_test_suite/macro_pack/carn_00.tzt tzt_reference_test_suite/macro_pack/carn_01.tzt tzt_reference_test_suite/macro_pack/cdrn_00.tzt tzt_reference_test_suite/macro_pack/cdrn_01.tzt tzt_reference_test_suite/macro_pack/cmpeq_00.tzt tzt_reference_test_suite/macro_pack/cmpge_00.tzt tzt_reference_test_suite/macro_pack/cmpgt_00.tzt tzt_reference_test_suite/macro_pack/cmple_00.tzt tzt_reference_test_suite/macro_pack/cmplt_00.tzt tzt_reference_test_suite/macro_pack/cmpneq_00.tzt tzt_reference_test_suite/macro_pack/fail_00.tzt tzt_reference_test_suite/macro_pack/ifcmpeq_00.tzt tzt_reference_test_suite/macro_pack/ifcmpge_00.tzt tzt_reference_test_suite/macro_pack/ifcmpgt_00.tzt tzt_reference_test_suite/macro_pack/ifcmple_00.tzt tzt_reference_test_suite/macro_pack/ifcmplt_00.tzt tzt_reference_test_suite/macro_pack/ifcmpneq_00.tzt tzt_reference_test_suite/macro_pack/ifeq_00.tzt tzt_reference_test_suite/macro_pack/ifge_00.tzt tzt_reference_test_suite/macro_pack/ifgt_00.tzt tzt_reference_test_suite/macro_pack/ifle_00.tzt tzt_reference_test_suite/macro_pack/iflt_00.tzt tzt_reference_test_suite/macro_pack/ifneq_00.tzt tzt_reference_test_suite/macro_pack/ifright_00.tzt tzt_reference_test_suite/macro_pack/ifsome_00.tzt tzt_reference_test_suite/macro_pack/mapcadr_00.tzt tzt_reference_test_suite/macro_pack/mapcar_00.tzt tzt_reference_test_suite/macro_pack/mapcdr_00.tzt tzt_reference_test_suite/macro_pack/papair_00.tzt tzt_reference_test_suite/macro_pack/setcadr_00.tzt tzt_reference_test_suite/macro_pack/setcar_00.tzt tzt_reference_test_suite/macro_pack/setcdr_00.tzt tzt_reference_test_suite/macro_pack/unpapair_00.tzt tzt_reference_test_suite/map_listint_00.tzt tzt_reference_test_suite/map_listint_01.tzt tzt_reference_test_suite/map_listint_02.tzt tzt_reference_test_suite/map_listint_03.tzt tzt_reference_test_suite/map_listint_04.tzt tzt_reference_test_suite/map_listint_05.tzt tzt_reference_test_suite/map_listint_06.tzt tzt_reference_test_suite/map_liststring_00.tzt tzt_reference_test_suite/map_liststring_01.tzt tzt_reference_test_suite/map_liststring_02.tzt tzt_reference_test_suite/map_liststring_04.tzt tzt_reference_test_suite/map_liststring_05.tzt tzt_reference_test_suite/map_liststring_06.tzt tzt_reference_test_suite/map_liststring_07.tzt tzt_reference_test_suite/map_liststring_08.tzt tzt_reference_test_suite/map_mapintint_00.tzt tzt_reference_test_suite/map_mapintint_01.tzt tzt_reference_test_suite/map_mapintstring_00.tzt tzt_reference_test_suite/map_mapintstring_01.tzt tzt_reference_test_suite/map_mapstringnat_00.tzt tzt_reference_test_suite/map_mapstringnat_01.tzt tzt_reference_test_suite/map_mapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_00.tzt tzt_reference_test_suite/mem_bigmapnatnat_01.tzt tzt_reference_test_suite/mem_bigmapnatnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_03.tzt tzt_reference_test_suite/mem_bigmapnatnat_04.tzt tzt_reference_test_suite/mem_bigmapnatnat_05.tzt tzt_reference_test_suite/mem_bigmapstringnat_00.tzt tzt_reference_test_suite/mem_bigmapstringnat_01.tzt tzt_reference_test_suite/mem_bigmapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapstringnat_03.tzt tzt_reference_test_suite/mem_bigmapstringnat_04.tzt tzt_reference_test_suite/mem_bigmapstringnat_05.tzt tzt_reference_test_suite/mem_mapintint_00.tzt tzt_reference_test_suite/mem_mapnatnat_00.tzt tzt_reference_test_suite/mem_mapnatnat_01.tzt tzt_reference_test_suite/mem_mapnatnat_02.tzt tzt_reference_test_suite/mem_mapnatnat_03.tzt tzt_reference_test_suite/mem_mapnatnat_04.tzt tzt_reference_test_suite/mem_mapnatnat_05.tzt tzt_reference_test_suite/mem_mapstringnat_00.tzt tzt_reference_test_suite/mem_mapstringnat_01.tzt tzt_reference_test_suite/mem_mapstringnat_02.tzt tzt_reference_test_suite/mem_mapstringnat_03.tzt tzt_reference_test_suite/mem_mapstringnat_04.tzt tzt_reference_test_suite/mem_mapstringnat_05.tzt tzt_reference_test_suite/mem_setint_00.tzt tzt_reference_test_suite/mem_setint_01.tzt tzt_reference_test_suite/mem_setstring_00.tzt tzt_reference_test_suite/mem_setstring_01.tzt tzt_reference_test_suite/mem_setstring_02.tzt tzt_reference_test_suite/mul_int-int_00.tzt tzt_reference_test_suite/mul_int-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_01.tzt tzt_reference_test_suite/mul_nat-int_00.tzt tzt_reference_test_suite/mul_nat-mutez_00.tzt tzt_reference_test_suite/mul_nat-mutez_01.tzt tzt_reference_test_suite/mul_nat-nat_00.tzt tzt_reference_test_suite/neg_int_00.tzt tzt_reference_test_suite/neg_int_01.tzt tzt_reference_test_suite/neg_int_02.tzt tzt_reference_test_suite/neg_nat_00.tzt tzt_reference_test_suite/neg_nat_01.tzt tzt_reference_test_suite/neq_00.tzt tzt_reference_test_suite/neq_01.tzt tzt_reference_test_suite/neq_02.tzt tzt_reference_test_suite/neq_03.tzt tzt_reference_test_suite/neq_04.tzt tzt_reference_test_suite/never_00.tzt tzt_reference_test_suite/never_00.tc.tzt tzt_reference_test_suite/nil_nat_00.tzt tzt_reference_test_suite/none_int_00.tzt tzt_reference_test_suite/none_pair-nat-string.tzt tzt_reference_test_suite/not_bool_00.tzt tzt_reference_test_suite/not_bool_01.tzt tzt_reference_test_suite/not_bytes_00.tzt tzt_reference_test_suite/not_bytes_01.tzt tzt_reference_test_suite/not_bytes_02.tzt tzt_reference_test_suite/not_bytes_03.tzt tzt_reference_test_suite/not_bytes_04.tzt tzt_reference_test_suite/not_bytes_05.tzt tzt_reference_test_suite/not_int_00.tzt tzt_reference_test_suite/not_nat_00.tzt tzt_reference_test_suite/not_nat_01.tzt tzt_reference_test_suite/not_nat_02.tzt tzt_reference_test_suite/not_nat_03.tzt tzt_reference_test_suite/not_nat_04.tzt tzt_reference_test_suite/not_nat_05.tzt tzt_reference_test_suite/not_nat_06.tzt tzt_reference_test_suite/not_nat_07.tzt tzt_reference_test_suite/now_00.tzt tzt_reference_test_suite/or_bool-bool_00.tzt tzt_reference_test_suite/or_bool-bool_01.tzt tzt_reference_test_suite/or_bool-bool_02.tzt tzt_reference_test_suite/or_bool-bool_03.tzt tzt_reference_test_suite/or_bytes-bytes_00.tzt tzt_reference_test_suite/or_bytes-bytes_01.tzt tzt_reference_test_suite/or_bytes-bytes_02.tzt tzt_reference_test_suite/or_bytes-bytes_03.tzt tzt_reference_test_suite/or_bytes-bytes_04.tzt tzt_reference_test_suite/or_bytes-bytes_05.tzt tzt_reference_test_suite/or_bytes-bytes_06.tzt tzt_reference_test_suite/or_nat-nat_00.tzt tzt_reference_test_suite/or_nat-nat_01.tzt tzt_reference_test_suite/or_nat-nat_02.tzt tzt_reference_test_suite/or_nat-nat_03.tzt tzt_reference_test_suite/or_nat-nat_04.tzt tzt_reference_test_suite/or_nat-nat_05.tzt tzt_reference_test_suite/or_nat-nat_06.tzt tzt_reference_test_suite/pack_address_00.tzt tzt_reference_test_suite/pack_address_01.tzt tzt_reference_test_suite/pack_address_02.tzt tzt_reference_test_suite/pack_address_03.tzt tzt_reference_test_suite/pack_address_04.tzt tzt_reference_test_suite/pack_address_05.tzt tzt_reference_test_suite/pack_bool_00.tzt tzt_reference_test_suite/pack_bool_01.tzt tzt_reference_test_suite/pack_bytes_00.tzt tzt_reference_test_suite/pack_bytes_01.tzt tzt_reference_test_suite/pack_bytes_02.tzt tzt_reference_test_suite/pack_chainid_00.tzt tzt_reference_test_suite/pack_contract_00.tzt tzt_reference_test_suite/pack_key_00.tzt tzt_reference_test_suite/pack_key_01.tzt tzt_reference_test_suite/pack_key_02.tzt tzt_reference_test_suite/pack_key_03.tzt tzt_reference_test_suite/pack_keyhash_01.tzt tzt_reference_test_suite/pack_keyhash_02.tzt tzt_reference_test_suite/pack_keyhash_03.tzt tzt_reference_test_suite/pack_keyhash_04.tzt tzt_reference_test_suite/pack_lambda_comb_pairs.tzt tzt_reference_test_suite/pack_list-bool_00.tzt tzt_reference_test_suite/pack_list-bool_01.tzt tzt_reference_test_suite/pack_list-list-bool.tzt tzt_reference_test_suite/pack_list_large_00.tzt tzt_reference_test_suite/pack_map-bool-unit_00.tzt tzt_reference_test_suite/pack_operation_00.tc.tzt tzt_reference_test_suite/pack_option-unit_00.tzt tzt_reference_test_suite/pack_option-unit_01.tzt tzt_reference_test_suite/pack_or-unit-bool_00.tzt tzt_reference_test_suite/pack_or-unit-bool_01.tzt tzt_reference_test_suite/pack_pair-bool-unit_00.tzt tzt_reference_test_suite/pack_signature_00.tzt tzt_reference_test_suite/pack_signature_01.tzt tzt_reference_test_suite/pack_signature_02.tzt tzt_reference_test_suite/pack_signature_03.tzt tzt_reference_test_suite/pack_string_00.tzt tzt_reference_test_suite/pack_string_01.tzt tzt_reference_test_suite/pack_string_02.tzt tzt_reference_test_suite/pack_string_03.tzt tzt_reference_test_suite/pack_unit_00.tzt tzt_reference_test_suite/packunpack_address_00.tzt tzt_reference_test_suite/packunpack_bool_00.tzt tzt_reference_test_suite/packunpack_bytes_00.tzt tzt_reference_test_suite/packunpack_int_00.tzt tzt_reference_test_suite/packunpack_keyhash_00.tzt tzt_reference_test_suite/packunpack_mutez_00.tzt tzt_reference_test_suite/packunpack_nat_00.tzt tzt_reference_test_suite/packunpack_string_00.tzt tzt_reference_test_suite/packunpack_timestamp_00.tzt tzt_reference_test_suite/pair_00.tc.tzt tzt_reference_test_suite/pair_int-int_00.tzt tzt_reference_test_suite/pair_nat-string_00.tzt tzt_reference_test_suite/pair_pair-nat-string-pair-string-nat_00.tzt tzt_reference_test_suite/push_00.tc.tzt tzt_reference_test_suite/push_int_00.tzt tzt_reference_test_suite/push_string_00.tzt tzt_reference_test_suite/read_ticket_00.tzt tzt_reference_test_suite/right_nat-int_00.tzt tzt_reference_test_suite/self_00.tzt tzt_reference_test_suite/self_01.tzt tzt_reference_test_suite/self_in_lambda.tc.tzt tzt_reference_test_suite/sender_00.tzt tzt_reference_test_suite/setdelegate_00.tzt tzt_reference_test_suite/setdelegate_00.tc.tzt tzt_reference_test_suite/sha256_00.tzt tzt_reference_test_suite/sha256_01.tzt tzt_reference_test_suite/sha3_00.tzt tzt_reference_test_suite/sha3_01.tzt tzt_reference_test_suite/sha512_00.tzt tzt_reference_test_suite/sha512_01.tzt tzt_reference_test_suite/size_bytes_00.tzt tzt_reference_test_suite/size_listint_00.tzt tzt_reference_test_suite/size_listint_01.tzt tzt_reference_test_suite/size_listint_02.tzt tzt_reference_test_suite/size_listint_03.tzt tzt_reference_test_suite/size_mapintint_00.tzt tzt_reference_test_suite/size_mapstringnat_00.tzt tzt_reference_test_suite/size_mapstringnat_01.tzt tzt_reference_test_suite/size_mapstringnat_02.tzt tzt_reference_test_suite/size_mapstringnat_03.tzt tzt_reference_test_suite/size_setint_00.tzt tzt_reference_test_suite/size_setint_01.tzt tzt_reference_test_suite/size_setint_02.tzt tzt_reference_test_suite/size_setint_03.tzt tzt_reference_test_suite/size_setstring_00.tzt tzt_reference_test_suite/size_string_00.tzt tzt_reference_test_suite/slice_bytes_00.tzt tzt_reference_test_suite/slice_bytes_01.tzt tzt_reference_test_suite/slice_bytes_02.tzt tzt_reference_test_suite/slice_bytes_03.tzt tzt_reference_test_suite/slice_bytes_04.tzt tzt_reference_test_suite/slice_string_00.tzt tzt_reference_test_suite/slice_string_01.tzt tzt_reference_test_suite/slice_string_02.tzt tzt_reference_test_suite/slice_string_03.tzt tzt_reference_test_suite/slice_string_04.tzt tzt_reference_test_suite/slice_string_05.tzt tzt_reference_test_suite/some_00.tc.tzt tzt_reference_test_suite/some_int_00.tzt tzt_reference_test_suite/some_pairintint_00.tzt tzt_reference_test_suite/some_string_00.tzt tzt_reference_test_suite/source_00.tzt tzt_reference_test_suite/split_ticket_00.tzt tzt_reference_test_suite/split_ticket_01.tzt tzt_reference_test_suite/split_ticket_02.tzt tzt_reference_test_suite/split_ticket_03.tzt tzt_reference_test_suite/split_ticket_04.tzt tzt_reference_test_suite/sub_int-int_00.tzt tzt_reference_test_suite/sub_int-int_01.tzt tzt_reference_test_suite/sub_int-int_02.tzt tzt_reference_test_suite/sub_int-int_03.tzt tzt_reference_test_suite/sub_int-int_04.tzt tzt_reference_test_suite/sub_int-int_05.tzt tzt_reference_test_suite/sub_int-nat_00.tzt tzt_reference_test_suite/sub_int-nat_01.tzt tzt_reference_test_suite/sub_int-nat_02.tzt tzt_reference_test_suite/sub_int-nat_03.tzt tzt_reference_test_suite/sub_int-nat_04.tzt tzt_reference_test_suite/sub_int-nat_05.tzt tzt_reference_test_suite/sub_mutez_00.tzt tzt_reference_test_suite/sub_mutez_01.tzt tzt_reference_test_suite/sub_nat-int_00.tzt tzt_reference_test_suite/sub_nat-int_01.tzt tzt_reference_test_suite/sub_nat-int_02.tzt tzt_reference_test_suite/sub_nat-int_03.tzt tzt_reference_test_suite/sub_nat-int_04.tzt tzt_reference_test_suite/sub_nat-int_05.tzt tzt_reference_test_suite/sub_nat-nat_00.tzt tzt_reference_test_suite/sub_nat-nat_01.tzt tzt_reference_test_suite/sub_nat-nat_02.tzt tzt_reference_test_suite/sub_nat-nat_03.tzt tzt_reference_test_suite/sub_nat-nat_04.tzt tzt_reference_test_suite/sub_timestamp-int_00.tzt tzt_reference_test_suite/sub_timestamp-int_01.tzt tzt_reference_test_suite/sub_timestamp-int_02.tzt tzt_reference_test_suite/sub_timestamp-int_03.tzt tzt_reference_test_suite/sub_timestamp-int_04.tzt tzt_reference_test_suite/sub_timestamp-int_05.tzt tzt_reference_test_suite/sub_timestamp-int_06.tzt tzt_reference_test_suite/sub_timestamp-timestamp_00.tzt tzt_reference_test_suite/sub_timestamp-timestamp_01.tzt tzt_reference_test_suite/sub_timestamp-timestamp_02.tzt tzt_reference_test_suite/sub_timestamp-timestamp_03.tzt tzt_reference_test_suite/sub_timestamp-timestamp_04.tzt tzt_reference_test_suite/swap_00.tzt tzt_reference_test_suite/swap_00.tc.tzt tzt_reference_test_suite/swap_01.tc.tzt tzt_reference_test_suite/ticket_00.tzt tzt_reference_test_suite/ticket_01.tzt tzt_reference_test_suite/transfertokens_00.tzt tzt_reference_test_suite/transfertokens_00.tc.tzt tzt_reference_test_suite/transfertokens_01.tzt tzt_reference_test_suite/unit_00.tzt tzt_reference_test_suite/unpair_00.tc.tzt tzt_reference_test_suite/unpair_pairstringstring_00.tzt tzt_reference_test_suite/update_00.tc.tzt tzt_reference_test_suite/update_bigmapstringstring_00.tzt tzt_reference_test_suite/update_bigmapstringstring_01.tzt tzt_reference_test_suite/update_bigmapstringstring_02.tzt tzt_reference_test_suite/update_bigmapstringstring_03.tzt tzt_reference_test_suite/update_bigmapstringstring_04.tzt tzt_reference_test_suite/update_bigmapstringstring_05.tzt tzt_reference_test_suite/update_bigmapstringstring_06.tzt tzt_reference_test_suite/update_bigmapstringstring_07.tzt tzt_reference_test_suite/update_mapintint_00.tzt tzt_reference_test_suite/update_mapintint_01.tzt tzt_reference_test_suite/update_setint_00.tzt tzt_reference_test_suite/update_setint_01.tzt tzt_reference_test_suite/update_setint_02.tzt tzt_reference_test_suite/xor_bool-bool_00.tzt tzt_reference_test_suite/xor_bool-bool_01.tzt tzt_reference_test_suite/xor_bool-bool_02.tzt tzt_reference_test_suite/xor_bool-bool_03.tzt tzt_reference_test_suite/xor_bytes-bytes_00.tzt tzt_reference_test_suite/xor_bytes-bytes_01.tzt tzt_reference_test_suite/xor_bytes-bytes_02.tzt tzt_reference_test_suite/xor_bytes-bytes_03.tzt tzt_reference_test_suite/xor_bytes-bytes_04.tzt tzt_reference_test_suite/xor_bytes-bytes_05.tzt tzt_reference_test_suite/xor_bytes-bytes_06.tzt tzt_reference_test_suite/xor_nat-nat_00.tzt tzt_reference_test_suite/xor_nat-nat_01.tzt tzt_reference_test_suite/xor_nat-nat_02.tzt tzt_reference_test_suite/xor_nat-nat_03.tzt tzt_reference_test_suite/xor_nat-nat_04.tzt tzt_reference_test_suite/xor_nat-nat_05.tzt tzt_reference_test_suite/xor_nat-nat_06.tzt
 tzt_reference_test_suite/transfertokens_01.tzt:
 Got output: { Stack_elt
     operation
-- 
GitLab


From 78c11a3b16aa2e6d9d455a37ebe0834285fc3a88 Mon Sep 17 00:00:00 2001
From: Lucas Randazzo 
Date: Mon, 26 Aug 2024 17:04:16 +0200
Subject: [PATCH 06/25] Beta: update doc

---
 docs/beta/adaptive_issuance.rst |  10 +++++-----
 docs/beta/adaptive_maximum.png  | Bin 63556 -> 63849 bytes
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/beta/adaptive_issuance.rst b/docs/beta/adaptive_issuance.rst
index 3d12f03f81cf..7c4a15fd795d 100644
--- a/docs/beta/adaptive_issuance.rst
+++ b/docs/beta/adaptive_issuance.rst
@@ -246,10 +246,10 @@ overridden by the minimum issuance, as discussed below.
      - 50% and above
    * - Adaptive maximum issuance (approx.)
      - 10%
-     - 8.4%
-     - 3.9%
-     - 2%
-     - 1.2%
+     - 9.2%
+     - 5.6%
+     - 3%
+     - 1.5%
      - 1%
 
 The function that defines the adaptive maximum is:
@@ -261,7 +261,7 @@ The function that defines the adaptive maximum is:
       return 0.01
     elif r <= 0.05:
       return 0.1
-    y = (5115 - 17670 * r + 19437 * (r ** 2)) / (24149 + 178695 * r)
+    y = (1 + 9 * ((50 - 100 * r) / 42 ) ** 2 ) / 100
     if y > 0.1:
       return 0.1
     elif y < 0.01:
diff --git a/docs/beta/adaptive_maximum.png b/docs/beta/adaptive_maximum.png
index cb346aca6d4788769563becd52342d2aedca9caf..764ada6b07dd2ce33eed9b21c436a12d03214779 100644
GIT binary patch
literal 63849
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ΞQh~cTZi9ulN1?>no^b-4lO9MQ!cx
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 literal 63556 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 a`~rLje=pqdLYjerfx*+&&t;ucLK6T*NjlO1 -- GitLab From db73abffcc88e7f14755d9616585c2eca95ccc26 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Mon, 26 Aug 2024 17:05:43 +0200 Subject: [PATCH 07/25] Alpha: update doc --- docs/alpha/adaptive_issuance.rst | 10 +++++----- docs/alpha/adaptive_maximum.png | Bin 63556 -> 63849 bytes 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/alpha/adaptive_issuance.rst b/docs/alpha/adaptive_issuance.rst index 402d2ee1135b..4f09d6c94810 100644 --- a/docs/alpha/adaptive_issuance.rst +++ b/docs/alpha/adaptive_issuance.rst @@ -246,10 +246,10 @@ overridden by the minimum issuance, as discussed below. - 50% and above * - Adaptive maximum issuance (approx.) - 10% - - 8.4% - - 3.9% - - 2% - - 1.2% + - 9.2% + - 5.6% + - 3% + - 1.5% - 1% The function that defines the adaptive maximum is: @@ -261,7 +261,7 @@ The function that defines the adaptive maximum is: return 0.01 elif r <= 0.05: return 0.1 - y = (5115 - 17670 * r + 19437 * (r ** 2)) / (24149 + 178695 * r) + y = (1 + 9 * ((50 - 100 * r) / 42 ) ** 2 ) / 100 if y > 0.1: return 0.1 elif y < 0.01: diff --git a/docs/alpha/adaptive_maximum.png b/docs/alpha/adaptive_maximum.png index cb346aca6d4788769563becd52342d2aedca9caf..764ada6b07dd2ce33eed9b21c436a12d03214779 100644 GIT binary patch literal 63849 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ΞQh~cTZi9ulN1?>no^b-4lO9MQ!cx zbwOQUUtd3Nt*zjflcRHYcX|4wBb_4JVLGnoA1>~DrKv zlBJg$7cai1IqCW`U+J3K+Ql!>UxvH0#QN zn>T0X@Be$P!pgI1)5eVpgO~g1#P6H4E_U~(nx93xN?s=YakH|qnR9BYwz`GVg5}H8 zyS63f=H?bfFTbq1LuXwFFAvWW_kKB_ITjPs&dz%H>eZ<(QSC>((z1er2PZ1KZ`iWM z=VC|g%Cmyyzpo}KEEK#E7w3Ox;?eNwd-ufg^Yi=7wVImXcig4y%Y_RURDRdo+?4v| z{roTDO|#8%7x~S#;sg~GSAPBZeBRgZ;@bHAc9Yfp{l0a?fgA*C8%zm0a^whT>UwL| zRiVER;`da1tYD2;>NRym$jYFmx3)Gm42LIfoBsRC;lqcYOj&aTG}8xK1##kpM^0|; z$8X=B-P>EOmizAR?)L6(??vvXWrfd-Y$DqG+0`?K`KYCbs|4<8?&Maom`YJW{R+|FP8=7u2~uM~?!m-|wYu&}T{ zpU>Ny9fkZomM&3wCp z=X^cV?9J@W+qXa5WvuA(?8}FT&U!IB4m7cH_sG}9|J}AN<>Vw#p}wc$$+N7 zSwT^ldU_gYDa(_?kyRhQd@-@CeRpZ8_sdVZ1xLF?K~;{|N|9a}$?_J^6l&+T%Dcgm z!Lv0rLFM6c*T~4oiTd$&T_T#3R(;*EYgbZY;=!ff(=BR#7{u3nblueNdGbYnE4TQu zqeojer=OoC)3`EXV^Wvf0qeRy7I}GjH*VcxYFm6&+C0xBQ&>P?!h?$+ELOhlJ_2fp zuHW~oYr+J93Fh z@wC2P9WQlep6%@1+uJ@Km#>%bUmxuC@#As%&1q+)%HG@%e7|M)l24J*(ZRb)UW(W) zzS6CIN-uWTk#BErgT}NAxBdC~S$e-uMQBBZ#qI6+^=|_OvahT-`1p9gWzmz4k5;F1 zZ*N<8{dMnqZPTnP31?;)y12Vb@2}wE-~df@AG<8^*l6}{`^%Gg{!MgVW3{=rJQkMr66d?Gygpw*?|i;G-2xww*!c8SL9ENY!;oPNx@_0{|R z|I;2GYSoF})}!V-%b?~*LDjc6GZ!tEU3qasqI25WSw}Y}9|uJ^GaFAw`4nAUDU%F` zii#bD1#M5>+}|%B9erEH-ox73I(Ui4M3wqUyRK<&^l@}_l(DayvtWTjQgSkAj_`QD zy#JSwBVRUTUDf*b=H}t6tHXc3UcW!%(h|otKyU7ytZ}`s~ci!`I{MbB#LRH83*osQRj5)!hP*Z(l^6^g>-Q^{@kMF2acJF)g=xFzu zna1jOKdC9notP}>t=gm#2M~)qn+N@e` zcJ$rd-IMRUH_yN4voY!Dq`lL$Ei7g{KHd-V5rf}ctD_$uAMbVF?ln!v^YgQ_FR!nc zXXlqod4F#&kCaKry4c-P>m^^`+iPuRX7=Un?dhO0py;Vr+L;-G@88ea`P=yJ%+fQ* zb+mT#PG3JIsD92*XG6x&Qpc;;qx^k(g5KViZo61s82IW)=M?*}wo-G@@VZCVjz4RZ z6cik$>O=;CMsSLro?0nuU3Nq|%i6#oV5)w6+|3&|R&a@Gt+4<9=W@!9KjQjvE8_N6 zX@-Y~Pt^|BGc9=FV48JBWAeghSPy z-@bA3P5-}1P}xnxp;zAC?q2b(>hJ5S-tYZBrMMqM z>+6@lDGYL$(f(z1WlH-Yoy964A5_$K^7AUaja#1YKgVL>o;`aW)qbeF`uF#D(0Jn2 ztEivxV=B0&CdGy>8aXj^PC$Cyr${Q)UA&<`n6ZV$S6ouCnDhO z&CTi;&4QQvh3ZCaIWfV8^X87i#afY@Qua8RnVz}2eslWyFyC1wo?rgGc#$#Hx;(G+ z!GXq-yYF6mHV+tqfY~wP>;6EN3sH zRB=(QkPdTRR*7emgxBl8yLD{I9vkz;Vw0q%xMaWI|G#e1_v*^ZnP+~^kW6{@&!=s;$?ie~+rp-Ls#a_gW|RRzXzqWVN<>`#%ED&KjTjtkNPN zskyi9kC+pO;ueM0NWM#(o&2TtUz|}?d1~qFs@GQ<@7Fc^%}qGSbYeRHpTCz&q4U5g z*+xIy`GQVu7V+gWSL_d-R}x?T`?VKnNxIJaImE|mZsLc2v)l(qxifBy`OPsny$mvQcfxFm!RbV=>S=5q z*C$HGr>3%MhfB3xtp9Yxfbr|q)oHiq2q+0(cv-S0c6ZooiOg@G&)Z+#l6g7hcIf)J zx%U767&8lXPT5iLkm=sNdp5PdLSAdkn(#NU944Sgva4F-olcSBS(+6?kau#>CeyN$A1?tT=?b1MP_kv@uH`v zT<`Cz<>co#k30@q7#zHuudJ+0L?fUg3U>-!cjR-UdO@AolTsQB-%uP*Ax{a)>x4qD`GRr>0|vuB_c z$i33$&mJ6XR?9WYsuyue;n6%(G$Ux*MV-t>v zvX#}<$=TVn-@Web>hk(ty6;uL{XfuDS=81n)!B<(yTxp3e@*e7Z8p;sc~#QZ zBlq@JXI@_B+w|SO`diPft=YzvpPsl}7nG3j`26f_=B+K7?EG?1E-ZBBkuu@n?*4CQ z1Zsg9r=JrL5IE4rD}7^Ywm7IN`S@?c1_MxNu3xY3-Y4_$cK-gl zym;}V;`B7#=wnm0!+W+*4f^xralcK~7mbs@g*GK0=i62K`q;O(w>f!umN+yrndIJ@ za(jEe^zD=@|1?@oD0m(D{N$uC>k4*$xeQs=ySCj`%Swbxx;R%f`oMT@T7+L|32GUZElRoCn58#Wk}etQ%7_0P}G6}g9$4-5aT zl>2LQG*@|%QqUE%tzm1UmY$lTx%kbSHzADqTeT!9Ia&D3oA>Y6pPH_}UQ8!q!Jj{WruZ!n_R`!6s(M$4 z={|k+Y87Z9P1M$`rJ&K^nmem^zPh?PeNXLU>f(g-z>+E)&y7@c(W6>9* z-)7w+jb~>sjI%vD(^ziL=e~LN|4m}L)m*}!nVi(T_&Z80_vHP%|IO}w`*p6n<3$I{ z?Q5Uc9`B2@?%Dn~?Z-!jM~-{SPQ@>^xP5nb`O9l-rGuCGfR^}zGUeUf<%_2z-Pn*g z$GW_4!v+H}-6$4^cXxI&7L=8xeSCEE$B!QcudZnR`ue(k^JZgZx1I&w)Ai=q)y_IQ z+x+wU{r{OBym}>-fBWIXhgVjI_t*UVv@!3l)tAoEhvszl@Isj12~Hgi5cK7M&$ZFQf#eP3%UD?7g&X!i5Z@Avzs=*3D&OG_Up zU`hV-ClV^PlCU83UR;!I3TKGVY2 zMorD%_fzfU^MG9?nV@ywFaDOkx?*@buCe8i!%$324Ac+&_V%{0goMZ4U8TM2nH@H# zoty3(?ycVL*>-*5_18ByBsy=p z?%5}0+O;xxdCF4up3eZBd-N3*ZgY6=PpI+m1d z`B-l1=k?89(dC+gd~flBOY@fYwnoIT%p~%D;X4W?^ZW zn3^j3zED4UUybGW_xGP)Sm=C=e`4YC_N7ZKy1Tj_O^>fTc=__>9cw@n2f1P>69>n( zy?ggg?dG4qe`i{iYROuaFf0gI=mhF`SAKqWadW!AoP8Z=+3bgpA3LWXzIbus{JLK! zm+WBp@bTlrXJ==>_*ymj^6$89pw)o>rQM+6O&|RwaVaS((cAN$cI)r+_-wWA-+vEZ zVKtuzpyi%Utz3UToz^$Wy3%oZxqtAMjKHSm=8vC@{sw`ja_;Ob7XI^JT$r7mJs3Q& z3|b_3Z+bxDwvv}YX=i7-t`1wv@Z!!+<7PJAM{~>Xc^bU#l{UY$)&R8jnBnTGQ14Bk z%@;ktgPcI~YabpSUKzPr?b@|#HUIy9XJKRebTfT^;iDs+F7LfpoT$EfVxscLj~_eB zyV9Uh)f&lXvh<|LzWjf-bvyqUmF)idO4IJ|7meU$drqFWfBoT0i|1q`lO}9BP%C(q0@-dXgN>*2$PpwYlbk0!0kmA9{(16n5hJI#J+O>M1jmr;ZFbUnkmKNTQf zG_&*fu*L-h2&A5x;#pvOexB{)Q&Y7;J>0s#za*z0KXOE(|I1O{jENW6A8$%MeN6k* zfq;;gU#paqm4$UTJnDMbvnBVonT?H&M(nPVS=R-xumAh|`||Sl_ZULfL`+;8y&W{^ zrZ)4VueFLwOG5+0V~u9ev<0`Aj>ne2pP!!(4!N-82xxTa^|iH=b#o?Zv*^d}IiNVvbR7BmzIS_<7G zY23!l&UeImlAyYQ!2~(mDucpDF0)Lt+g7jE22Fpyy0UWRt#7aEEJ{jx{{OkXC9`?` zdVOv&odd^@v+s@bpJ|jjNk&E`Z^{8yZm}cQLPF(TDR*A9aPl6Q5Wr{97doiOaZGxG$%h*^`54pp}}Fm^F>G~>6fdsj}Onng$s`@o_g=zy*s+!>tc3Rd|#ddYN_!C&FJL0zPw+_M8xhlkKNxZ0drIf zD%%AfnZ7Ks%DTGBb#2sE3Hv&mef##UiQL?_(78P+IoUZUXN~9Y+TY(EzJ7grhGBBg z={Q|Ip{hHpL94I*?f<%DWMs_hpSAbR!^7<{I|>e3)L2NYRMk`e{|)9;4@i<-2U$8pU6)+=hoZw`+MTAk{5TS zi=Mar-@nFzVx^Yh8s+0z#+P;l#&O1*UK^l9$u>T0w6 zdp`gE{M@*C^Wm#kr*;afe>$l?|G}$QUZ07Pz%I+N<9Sf?yzVcjW zo;SDr-5o{)v4nf~?p0J*FTVUz!mh^R-@kuT^yBAoiE3>~IVp5*zWsUm`ag^kee+E7 z@6Dyh;2tDhfr zc9!Ymzu)hxo0(m!U=exn=H_M>S64wPsZ*Di`}fvPzwoCz!J>C#;p1Z#78XmQw|z0F z{FHL6U;g~3r>8%D{%jn#|M`v7=q0 z!S;VXG=KazVS>QbC7!}hpFBx1iuw29;o+&fckeDLDhdLv$ho}S-&}It-=p2)tCElR zX@#$g@#LFc|Myqv)s4ySPai#6BqJjeGF2<|N+UCSkWI|L)l5uGAtxuPf>zmRg|C}) zYh$weo?N|%4Gy9j0S=K75i@wE@6Wku1RBLkO-^2X=gu8a`||3mtE+pz&$ldg1GV6f z_sdI9S2erxYi;!QDOo2P|CLdq*?(S}NYo9WwU^#|U z_wV0da(9X67>g^~0^2^(SYzX%A^E-9)sO#5vccX1|a7|z5%Gll8qBbNr zF8aRTCZ^8mGWQJcr1OuTUe{Xu&AoU+;@z{(zf9j69WMB3wKU|^@%VF!hYlSoC@p<@ zu$g_w?%mn4$8~P~yEg5s`1Q}u-SQG4r2%a@##UCdK(+CvRPV}dHFx@X^xI?z(4?Rj?>1uS%WX?DTEZ`t+NoZQ@pj~-PG?p65y?RI|f z${@x1(4 z-lhVy#(HPz>uH5oPK2jks}(bP|8IuS%$@O@jb2{gQvLA}>-BZ9-XGroJ>1U!@xzA) zpkBC~fVSxq(bEgPs-@iCT9v+^vdnVL+Qh3`De|}VmzVor{_^9(g@9$gv!`VQPP>_U z>~A2)#ImB^NWM_L{=}5!!HT!U(ir&oHq_Z(S<9V%&SA1zn{v9R&t#RB6N^qw)1Cby zqZPCOvt$Ba@#oK{?xK_>eQ(x6HHfzu8A=0 z64jp8*J%`%c1ONdAXB|Hl20^z##}zj-nf^K&n}*FvFLf5ZuEk(+#NMH3!da0=krMW zpr_~}wmI=Io1AS`%jC(ydoJf}dKJj6*dm~0>ybFkS+rQct#>J}|KfQ?k3aHq?Nqf{ zALw>!IzJN=&(WJFC$|MkF*7O5%uH?(i0oLuUOz7{ujp^HfD^|@uAi%CI7dcD1z%dM zVm8ezrn<)WwS}8&*8%(g5^PMIJS}{(3PwS%L%^d)PBW&9q*>lrCO4ZyUe@oh6Yti( zq(w27hc$Zn_}Y}#y7PB*UbLDD*$MJYxiyk++I36)Ytv>HSA3N+O?Vr%VPm8H|CWD$ z9o5Ppif&F7NmIIJcGQ-Llr&%eJ<<#z79 zJu|sPwH91|ZLAUb>P3mwwRN%C-`>XTualkYcl_hy<7fBj>aw!3CT3>Nd^tb;?yl0v zeKnPna?j1P_5SzgXXUpyk!(x7hI@XvGBdr#=}@&fB3)s zKZ$92S55i^lsIE|l{|cOv^(nfi7?P=nrmyLP0wCf9jRRvy6#czlmWEm*vvJNl$+M zKCC`p;@|z%;(xwQ2ZdMXhV9#rpFZvVTH&}u`ReP>6iKDrf^d7LT~XK`(j^*IHkmaR!V@@AD@_@xMSzeiR%7x zVmc8AHm9F|ad)@*xpU`0JM?{Ln@P$GOG|s--&d;{vO?h7w{If)adRY%(E$H(od zNZgZueO+usbhNOHOwOkniq37I-OZDqZ%sWd<~2>H6SB1M`MbNjk9}+BlU?LFS*@a? z0@Q-oTlLkV>dT6gR;5<5pP!vwT>AQ&g@r}HrW8*mW@ga*Drh~&#fuYXnPwM(Cc|rg zY-;5e5873dnUkA)a<;iXXkSCuFURGV4b#ub+}f7gy?C*5eC^lJP3wQRa0*9kO5v>k z`&Ha(F5g_g<9)K$3_B`6tIf48R|{Vk^W@yz+1u|`b-%v8URu8T$qB)AF*}`Bhpp{7 z{b=9U_?<gwute?A<({!jMp<>maKVU17!)m3`Cx)voJ?E)=4bNCZ1S^nlmqu+AScE^x4 z5rWm#)lz0T9v&VXv(0ir`^IHI|1DErU!O}%$D^5z*XLWNy}dodt?l{!e#?#T`JJpjy}+?K zXiD_G=u3?#E8GotJ8$RLR9j%PtU_aNT>iCOS6A1STeGjPTCrlq^(g<6EkSQ@X|j4* zT56U)aIj)Mv*^<5_|}y>>Ug=igVWE?3q3#IzW=_4&7BXQKfU)$S(13OTby%yZ*Og- za$D;9b=DiVtqfToXZ!Tcn>G7>JmN0>_{jC^QSo>UZ*T9bi(I))>;KhVM^Pv5;; zH_x^@t>)h2*GSbr|X6C@$qFnJvH^%S2^o4AJAMX$bBn>OgCuVx^>5H|NHmv)X9^crLV4dg8I|C@%v&x8q&_rTG?;^F9LK3fo{x>0LHBU z|Nb63?mOQuHuv^6U(g{3xp#Mkf(9^oWh@LXzEw$mdTJ_YO!M!T%l@za{QL}>?mKn! zX5>`;_B^6stz?O85;cgGSm=6iK}e*9E*e>qVxv9uiK6*WIUt(>YIzKUC1Z$;VLTblOv z_E$F~I&ZD~oCZ=2_U4|-;>mV3mapI3+&p#e+_}I0{eFM7m0SGE!DjZWTQVflcC}YdPFBAPYAb(#cQ^FoqobiIDNBO9R%Tvawo*vdYeveBvbVFCrp%u||JUd9 z_MnNzt8=Z(d%izEIoVw|YKz9j=Nn3120aCJlh3b<-7QpGQ?x!fCufaT@Uot)D=Q{i zRef1;YeQo5s)&t?n6At+&F*>q^HI0{m3w=uuWrr0eq~qb>yUXil~8N?(4m{`KW$@YiF~`70Ei z+a%_<&!0cP>eG`>(5ilQzc~h#^KNg?4{ul%w|CdA&FTFhmum$r=~xxMeja#PKgcIr zv!{cm=JuD`dq2kVDtS?q0^k#02vDlprtAmIcOF_v`|Hq!nIp$KbUUb~s+ecEqexLUI{CxFa-~SzKX6Fj< zpJ(G47{6qyNE+t}&(@opSEQdxTGX1v^y=N^-D!8js>B4&&)2@XVc|lH({rO&US57# zF+ohVb!O#~6$Zv<9xS->|9@k!m*&@})7w(t@6W$=?cl);e{OC4Kh1Z3Uc|Rc?A1%B z1j)&@J=K4ILYPk2_T=S3GVF*6Ito(K8Zs_ae1 zrkqn#G(lN~SIWfW>Dk%WpZqmic<9W*gO07Ott+A18$i27o<4t`{;6?!#m7fkmzH>T zK8x6zHMOX`+`q)yb7kP-wqG9(^ZQN%4dg#zKKbP2;lsVR znL(RsdUNakd~~0x?my3EyR@|QYS0M%udlCrPcxX7y@`1I_P_xL))n*X|J~g2X8Zj* z(AJt`x7XKIeERq?F!@+d=k~Qz#L^1or%e9z>h-Hc4@Md#1l^7HHUcu?-}-FKtA zrzhmww{Kaer|EiWE@k7FTO(zblksWC4u1dp_5W*|Zm)~jxM-F^qSK|Z zb+4|C-rjQ>v};I5N9W4j-EI4Ka(;ciy7eX~7x*nV7Gv1BaibP!BhI-wmR_1m%iiBx z8xs?Ar8|6|fL6?o4YSPi<2IfD|MdPvi?g##tKZ%aTsq~}_Wb#qwrvZ0e5^M(EG#VR z`@6fxo==EK{PuqTe<^wU%u6b)E40JcNlgFx{(ih^_O&w=)=OI>v+Cb3^Pj)&Ud7|y ziu1-R?=SrJ_V((yy;Z6e@m^aqFS~txch~yh@3_0>aiZJzySclo|G4-0)xX)3zE7KS z>eYMQnF|dj2TK-PuxGP(?G|4?quTIY>;21CeqA?jN~$eb7sl)4%v(G!cJHcEEk&dG zMNdyj{?E_M?A*QEI`#B4Q@zuZ)%h6|6%~)A+W-5ZJXJgV*yYQ@>gwvx&d>J`2$*oP z%Kq<{V9?m;n#j!&I|>pvUDx>W^XJ1iZ*n%>4O;3oGiE!eH8)x2|G(e*y;7!1@%w5l ztgS!4+x`C2hlkFSgJ%T2y0f!5WOdlt6wneDpS&G9vc~eqdU471+ zIVa{?o9oBzF_@?K<iFEY*;o4a?yX(a@BgmUs{EY{E0@TD z>EXcvTCAK1Netw`O8b_Ds&U{_I#jRJ0N7}3h zw7e9wf8y5GZ1vesuio$95$q~_dScMZzk9vk*P3f+oOtr}=dai6g>%dc9yo-piEwP? z5|uDaa@nNJcc}h%$;U@WH6u1C>@0ff^bJU$zu{eB`R5tGl!0rO?^g=Jji33Qs>OirHT`_uATML)I(FN(`rDI-huhE0 zFl3I8kI%`?T^YETEif>!bDjD-Q;%1rm61WL?p}Lia-2@Ze-CeMZx7yC^pwTj>hqT` zEC&uBZVp~9B$x2&s!XAivvY61|A|ehr(fLPUq9)lS?;ZrJ$4^LHEZWi5|WVc=$Esd zVNs}bc9tnFN5*D?dLwrtfm-@ZpoQ&GYyC z74`TyMd;Zt*{iR=zPY``i*t2-D03|*j{OKAprr0#csVnUM%ka@ox8fp&b7I zZ!ce7?tlF5UD@*T@~o??rmm`ux);4=`d7Q&?vm-E-J2|S79Y0%?=aV@;Az)Fi`zSe zQyeTNDhgFS-oDZB&ypo;w{Cr?zBJePz`ecIDnZ4@iK@NxRt7JZ+Q0Gt-|zP?@7Xs=)w}4y0mjD*m>WKxxN-Vk z{r}osrLW!o{rRaGv%_F()>W^oW#8W2J^kk9X3#lb2|FtO9&BdMJU3S$Jw5%;pFcNt zm1=`3sOhE4o|JCixKR;w+*RaKuc;9`i&W#{;y`)c&fji( zl8$zDZp*yAEq9Odg7v4SAK6}Va<8AN_p~R^&d$EGxB7ZT%G0ZVQ}6Gq{qgIUQQ8@a z$D4LETEvNoh#Z+~UEbq<|J(cfpk8Yu%6O~+pw#b3b%=-2QbX?lX;N^UW z+xegGe!uVVv;Y71?b&sH&mRBw*4B?tPEM|PZ+q?9HP3h1pYAQPwVWC#vG-SQaM(n1 z{hYg8tXv0ve!j3}<-;#-iY~82b)!IQ$3Z90=*8_hv7_*@Mahc^p0nla|4ck^z+swB zq*K3~ZN~L=vbI%UJg%B=J_*`be(~Z(&~#4B-m0nb^?$EEY0k*vm9v@A$}PSr3)jvYHbJe?lD?B(I)i;G-Ab+cvpI~jI9nFa3saxXvWepwCL z*?VPWFz9e8(2-RyE-pSZ%T)X9Ywwe<-#vd0T4b}c;2{&goQ;B&)hs#Nss|4r9*oZ4 z3tD2jv+S*ub=jK-ll|=;URxW@V3Kj6;lqayEWfQ4e}8{(E_cxD%Z0rMNhem)6b=xon`uQTWWfGdJJf!9<-4M zG(~yu-o4Im*-n4{{8H&rvUY1?vd&w8>pa53B4TU#H`umAV(*Vor?Zg1~5 zOg>iduf+>chLD^XJ#7b z+}LpN$I z-u~>;Qt!;T_@edJ347|6dQH^=9dB9wK2AnP2DBE5m0N6yb35M@oybcTqKLP^8MN6jVo&43hL;x>GV4ZfTatNs*%a;YzMGrVrQiFnh!?)R*qtAAY}fB^Z+-1b zUYA&z<=p|TQh0fHxB1a7(Z$)<*WKAsc(~$-{$ADZ*1sMd<-S+>T(;`#t5li1f6e@M z3mlu-K+7mJt-NLgEq3o;7Pq%*OWxgCVQZr+S7b_5I!4Rkhn88{_v~ zE6dHvk+7{Yd3tK<;=H@NBBG);B^~8DP;e#p*_oMVW}EZN%gf)Zdae6lf9)=>saiY| z1`UqQY)7l#gBA!dGBS#21Sniw?Dpy2BHg*CR<(Pc(a_Q12@ekk?cUnv`Q1o(sfgVD zDuG`%QSSy}G?!|NHycq8B@Bv3tK-WPz)zE9k_OY5MW=UIj0>931xY`j<)b-s|ee?Rju(Yc}V< zz4bpnD9XvnfzFq>7_5ES`CI)_mrW&BvZ8ym84BLKGt51_XPHqd&-FPwcN|z3dto87 zOWN7y2B!|5Z%7UXWd_`&FSaQnYhjrxOeZ~ zpFf|^pX^hT5D__&KEHNZX5cj8)a~EJG|#Xwi0gDhKD&{-eEcHMGqeL@xS0 zVbAs@^Ve9*%=ZYtxzd1nMXdC{U))jK&CZlxTP^H6k94tDu+OA=f{6$}H9D+T%0*&lgbR90p-vms_i`<`NMhOV9BhtHkrOTT!2hs>-^oC=$p%yJW625s2T zz{;KQB4EP9JeRB^XM2?%tAJL(-V9IsVXg0eh9zM}%C5|Z%Z|KC?(Fj2zq7-rSua*W ziRssu#`pW#)zvFfuOur9rKYA<%tA9|kAtoAS2x1OGwdiuxrIPIVrofYp|?<@BQf0J37 zd4z+5-+a!gA1Bq@9*Ca?R{5ZEf;cM2~U{I_%b+7#WXN*p)Tw)-srd1`)wfRlW5uLtPR-Kp(i(W%DHmlO6 zv$MDQse~KfB)bf)O*RE}-vD}i&J#pfNWxQ|htSr@n%r#B+NL2HAvgx$z#5=AG z7FFL@9LqH7>*WP)g3Vw&Ki_$E*oOT1*H(fZ;Nqv)IX+)eKdcHBzXGk43}6#d0F zZylOn@AUXsTjz@CEe*}=aMv=;JnnPkas2)G*BrApZg1cJ&q&7b_D1Gerp7VFVJjzH zI|(tfOwIjFOGRsQbK;9XQClB;OwPE(;y3RKENIRxF%agglKMF%*1SwmOmbPNh_8j^ z!DGDvYo%J+r2O)2s>5Ku-aYA%kIITy{-GI5599&IoybrGF!V>u#r_B#PVLxt9?Z=D*2OQe? zWV1G{iQJsFCU*C=irr~vXRV3e-Ur$&{P^+VK3VG>6(5yAi=|DxQ&LnWPMmn`c4A^1 zqyD1Bi#z-J{7zp!{pnQ26vy_y+y42&Uo<-Q_*KSN&n>K-8T$Lm-Ma;6BOf0Ni`lto zu_Lpqg9FdcPnol|SAWk=gC3iwjC@Aevx$L!S4Jj&dvK6BDLMJ%WcB`&pKK~W75w}2 zlSN)wMrKaJ?*|VO9=`>h{LF9nqX87@sj024t*qQ)It%jd?&?gNX_5&#_pfJr&F^n- zL90ccWu|KXeEX^R^HJYt>*t@Jy)J**?J8y_rc1f8Q4*%7=50*QF8sMk*)-ej)6?nI zh2`}NOV{Y!Uq5py_%yd!{U~Rc(|SaIOOo$vUhh*>hJ#pI^@-)dY;nn zPoICkKXLPDciW?!-(|V|b0GD_8u!bG)_70X1D%fd@$qqC85y5eF3}r%DmNE4^e8x#*3-`0{q9-h+P$glZPckLn#nnvla6w^^~?G8%h_`9@*cf@eL83- zE+aEr%8$>d`SjZ3(w={vJLS7x{+!!BGrF|Ty}J5)y~XW~%%ArCbC?ER<)GAlq2@!s zV>6p!#)Sne?{9;a4yA$y=JNOdEnD>Z^S5tl7ZV_YH)+~Nxoohvfc*uhngqL6Cq zOpl&eQ;yoV=lW@3Htr}8ku%%UX*!k${M;-|+!U<1 zd`sVCRgXf*jRry9T*ebsxaYElehy_#_`mkA)bf*7_bLt-L?!?G)AndhqH{$mmmS2? zo+SptC%dfY2Cg&qo_na3*Zth5=k3MMdECz}v4HGK;+%NMN9A1^c^HZ#{*=EuQ_}F?*BCZ`L>zq@MT`E8>4`b3StmzMG_Ho3MwUm_?TTtPk20jrB# zpr+6oS#^5yaf2y!JB!+Wo_%$_{qk~{D~%?Jq$wSJ#I51{eGA-%aiIk6Vr??Zuz-m$AM>O1Gek6v^rj1wjsSA zreY_^fo~7*w?Fc|I==7TRPF_5PM+j6%QK0|{`N)FBs*;fn=d$QQtX3fbcXEy_ruE3 zzbWO$AD#ym-m94rki);Pp$d)%sDFQ1qBWJ|21vD*L1=o zs`cWQ=%U37y~QK8`M^}|1vzkS*1lB{uXJ{b zmUT<_=V!>OAK$R8ZK?Od^8Ak8*7EzUtlV3mtRJWR_R?2;iHQ{=1td#o6N*$dC?eYmf3J$;Z zx8M4t-@YqL8q#*zBc^%AW!9DNtNmTycZrl~uPL1(DRsI)36}iPeYi?9#I%?0%n_&mdVN^_d7anGF}r}Z!F-JN(2 zT3Y<{OjNtHW=nYHqNK$ZmG4#h=hSNedYV6~Zo16P%d$N1QM|di>44Tnt^11BO zvKiHeB3*mUzh}w1|JncTZQ@<44V#<4zFt_G&A|`rHh6T2q&?btALs-{Y_+5gniS^zP^_3+H_}U;{UqCZyzMU z+Hox&iE44)F^OeA&Lz%swY_Z7TM>G7)rMmACug~r`#HY7Rq%Hg)W{>NK}H@mpRUgu z%Pq9HKk@$A+Nk4#oEpJwW$)XZS|6MebuKJ>HwUKt^qMVv3Y+%%XV-YGv706&r@Ez2 zNhol~hJ_Z{w?xj(0}ZU47F!YG`8ow05ll-AgkL_GoHai~)^Ul$zM2i$(-RXW9ByCe z$b5K3Z|Uo-xsZEtPOR*4dZO^|T^pn0tEn(1Xg8(dF3p3;74-qJvg zvU@jHmdZ@zvXb?g#d5zUdB@+c*9|fRUVOdv44hU^c!GjR?cIu-+p>$SlEX}jRL;!J z*0_>(zODRz>k18+6L>&QxV$02nPFS}{dI*x6T|-gKD;S4A(i#?bZNJons2b&e{;S_ zn$q1XpI5i@$v%HK|FPo{=CzMIOkQ0(Yw&SPGjq;8o?fYg&O37gKt?ybK!uoAg1R%Zl2uQY7`J%hy*Ms?DFA z=YM|Aacxw=zdbNT>Y)2!I<-Q%zP)RGbd=ZqOxE=_cz1FlXawfc-7B@hpw3Y19@l|$($<|lomVV+J^ang+J2s8<7Ha<;Bo)K`}aT8L+Z;ikcr{fR_j#Cd=?Ot zJ-Bc7?=5}Gmu9xIo|(frzdmor-=EJvJZu+`UY)B4($TTT2V{DQm8>t9v|l>U4ygr& zQi*(4vOUu5#m^-E*_Z2;yyco$)DQv+d?nu{2Eu8I*JnQEVP-pUYHC6*Z~Y&}wNVEz zFOOOdNgP!m6&IiMs#)B&n0#N=-td>i+Q%HmRljp@?6_!PapKzAfc0`L?AegsqEa?! zw7@m)`JR?Op48myTO%SPGG*OoL_R*Yq1L*h>d?mIfX!+#dsaZhVvRGGaiUq!gr_>8 zs}Ag|4cK82vzu*e*1<+*nEg^9`^N^G@zLaMoW0#1bNIIk*UeK8M4q7srXr5`g zsj+m0(SEMhbg^d@9}3q#?%;X!G}U75Mpy2Ne=_%~xa)p-Ld)ElvqjPl<&;>-vc_;T zZ1{M|t@m9q&z1dYrD6xCA{9c)~35^S)tTK$*nn=5+W-3aTc{wt3oF~`~r&2 ziN+p@YDPYp=Py;T*TlZIP@24X zW20+#0;nN#a`M9J@`{g6mm|RG;H4jz@x+B|bl2RxT+Dy)a8u>sx4df~cj!1QH$IcU zt->%O^5Chd7nX3^)T}5q0;h^Ei!p|<9vp1;+!ntzOH|cs%7Js|`ZlGW-elMq$arq9 zwfpUDxuB&X7cWi(?HF3HK%v-{b)uK5jaNcy;?h!{iATS@;f&rU;a7NPGkeyx7VU6o zJ8z<$iS8NDKEMkLoj-p64m!MTihlgOw6n7Wg@h(0fHreoTpMlv>)YGY8dpTU3=zCRts8}=zMsA z0xS2Squl{}tytKyAjQ(7ubELZd}o{W*8Tl;ad&yX*HkUg)PG??LBhjBt(@ED8z!@z zoo$}}*T!gkhNe=$+fqZ5_gC2Xs< z6wYjIW$l$VS2LKn{s1#Gv!qqYij$kt&d%Cc_BM*)OOge0$+aqi9Ob@T- zzittE?OW0QXCiWPAKvf(aIbn=&W!}e?Rf?7Vsw&^y}0=DQo6L|#(3kVFRRf;Yf?h$ zv%+S8rj%~ni1_s6Wb!5(|9LiZ?Cb3g9%o@^SHEFrVIk2lVS>P+!-qi^kNo&_T7RZZ zrO|Bj{AJGVd^z{`&8_9z3+j0o>H zZ`p1W>P+QPE&+%a6cm))G}lBl&Ct*gbQ-L7_&U(a;pptRe3!xQ!pERQr>>#VapHu>ER)Qp&6|xUtNW`N8BN+*{Cru4t(=@( zL{wDK`+K&NpMHOL_weo8)(4MQR9CCtym$C8v$nRj*Ho?4OUqJDPI?16@{N{GLGv+YcoIhFN?x75QtnUkhX)5kRtB}Y_sb>b=jX@V+gDq?E${BEM_+H;xDl|kD0TAj z7hkKk<=yq_l`<8o@#&Q^eUz)Lpm5;Ey<^APK*a>NxZaE{J1aga?c29c^PHNI+i#(_ zj5lPr%$|_W*?&aS#mh7=M`Gc}Uh@aHOb-|QDpG3)7k*tK;%U3f->1E~vGK-@8#8pi zfByXV+uPeKqpn|A=p4Brfzf-K&ci!9i+N-$CZwOA2g=}=57 z?ep{V(+{<9%GlM+aBOCiybYR*pQ;_cDd8ZKUi`i@papjO>ulxgek5kiUu9r?KW1OZ zxoF9~mo~pUWVQBjN6vy2Pm2PEtm|#+{tH~WJsvvNfXYn{-=)7o-1f%#=j7zW&ysab5iV3V+xOp2CpOFC?8is0KfXn8*mA{cE-2t!4h6-|FwMO+<^BHu^L~DQ z&b;9AOAdbimzS5- zuSU8YdmX=Y|207uvy^P^{ePH_b|2nRXi#evvybQW^yaq5!r*p{iq_TTMt*axrtYo& z9<(Y%Gj30XEv-B>vpI;q4H zRI8QT%*M;X%iFvC&&kQ^CK(qLVx2nYEcJM&6!K-A$C|FxvpY?rjtkzLvR?nqUGB59 z4}X6C;oEJ4LZv_d_k00Y$+Nsl6PHbKT7LOx^uG@eon>TYFRM;DQMqf%JEjBg)9bHW zbe=dD6T@?T*5CK_ZMTKh9H#4icr$a^M$mwVVo;q{ayy?a!(ok{y;WZiUAuOzB0eWa z2eben?d+_V^8=o6s!O zH@w@;LGwd4L;HIuoHjMl$@`u<89}Ybjz`+6nb^N{paU}>Hd(2Q(Er%)imwj zzkfkfI5)qD*=5YI{czrAn_oMRWxDtYnrnFME)x)C-CK3=!$Se-)sRNZ6P1;6dh!qY z?f*Uae!m`6imq6pG5L3&ob4>VgD&SD&pthUGP7UMvDH3J%x5?f_5A!kJfHvIJ%4;1 z=lxpt^m7rP-tEq;>J|aTkH^*!dBfS3#cF%2zpMGrvjNq)t3p>ldiUd#JS6fHP0!$WR=#hOx{iOi*MxptQ~_xC@#rkkF1eOuCP zGe{dzX}5Q2qL_$Cij3I(d-vuo_n*)7;oa`{pKj;xUz%?IdcM|B zYF`z^`t5D^!irnJo04t_NBxbeFkn&hpfY)1GWPeRS=H=r_AIdcU?% zV&A;=>gI|2z>#K96P2~#ew>1}eh3D5lwuk6dd z=J51X)N)X%;!-wol`^O;0J>n8g`Hh`dgo#bwNK>H4ktUm)9SDfk68Eo*5i@o`ZNu6XH>`asjsrnNSS6GIXBn( z>_k@%W$wAGwx_-^B)s&r)KN6z4-b#n&UdWO^v*mx*;%H|?EG8Kf@bGC*63cnK4WXf z#iqc;ZiTO|XljM8>jB+g`4_aQXM2HC`s>Jr>eIxg9b@wCIHQzj^omP#LAw8qZM^qt zgs-h@{q%IJA83%WV~xhu)|>6}bsPt_WL|!BclqU)9lgD^e?y!YRBgOIq#oAa+NbEU z$f~U6(b0vm);o$=v#vC>a`R3O0qux&TH?0KKlRG%ubuxq0@YehWS*MR=-ke;+}N(3 z@9wUHCnhT7w}bOeZ-{uBQ_7b5b$^_X-?uLMbkB3`VvdOl=H@?s=Q}&H8KiP;$>ChM z5Hi~2at+i2`|?bF=J{8}tAGA{aX!jjP$_WQv=3*^Hzcv%xP93Ezr;Fg>ryXhhT>Xc zAUrefepfAHL{*mNM8k8`Z^~ri~&%4XP$;p^-d71AV z%VM?I!<>T4%a7h;_*4BgKF?;~!a^ymX7U96?A4(zF1Fa=USO^jT!%Rt&ROC-MTrz#^O3cjXV%&G&v8qC?f43e2Mbg#BX zu8Y~ZqxyT^o~OtAWR>Ih)w~q)>S&30p>yG7Nz`$HM_XT%7$mWZx)jqt; z7upn<78E-Jlusury9>$4^!P1zUVnXa`TID~Uf$~Wd(-=RoMv$JbEQAr*lN=;L3xYP z>#Q3BeR8duXEX z&d%zQwZ0}J*=lgHsxtf6y4R-Q#z8Z8Ng8XwyBYsm$}hr21D*G(4aSXS;@qU zL9sJ#-ng+L;ULqxxV@*^c%>tDm1sUcKmYml`1+%lE?oi}x4Fij;hD@l=QVa=k4>ER z$VErbu)STdcjjE#oI4z$s}5{ThWOOQ&FeGEWmYbc1*xZ}mAtz%bCGNJvUD}YNmsV| zgx`5{XUD%ERs*v8Ki<@U@;I9oSR1XK8fi@ZOFd9u7p$7rHCy|lH-yTg;(Xs^I4)NV-e(Td8*jbeELcw7%rrT;GU@2vBmdY%LaFRypyRhDb5r`HNP4 z0xwS;Vmj8}es;ER`<4Hnq4oWtn4s7hQ+1=Kfi}HF?@Kz$h~V z-r4S6UMiw^W>IFab70tRvzAuJ<$eY!94@Yzkn#GLXSKHSOPJ@$$Xb;=I5kxpbg4kY z+UV_|`f+2{)m0_@8ZJpuBAExL`mYN(v3A0>z!rnqH9r$>n@L!UE%RxVG*0+m_v3H5 zMnu5t5^yo5ztS%0+A?41YwKc9KRrGD=ZC}mKfhe|-&y)v479-pbf~+ti=t3kW}>F+ z%oBoZ)+T;R`SDu+#8hrRnT9UWhwt}8YsoK@UMZ(Btc}{bD0Fq$%ek%{Cfrp*EpabD zo_-4U)3V&?!++A|S|48Md|{Vqj~ws(dcLsCDsynmq)mKQd1ld~MLSAgi#a+vs@XfG zY?1t(9+2Ut_^13wwyZ11=Fgv-@9uv1xSw~sx^I(P?}Kx)zR92h>XGTvT?V^LUJ8}I zx^fV*QUG+5+CryR&{ePjik54AQue(1xq5MURh{)$>GJvau3Gg8q@`zb8>b&SHTA(8 zp50}Vez|vcg+j8C$LbLAG*E-{(4i(?X|sYSCj|TCY)@TW>~2~1M#8;c&eYvaaZ-qG zy=j)%3ePQev*h{zt|*mJH1c_VuHc8k6m51z#S2R~Yd*5R_zF$>SxbMdY5^T;{N#k7 z*A$J!J{zYcCojBmzFA%@U(9#@;byD(4-?)lC{U{ADvm_4xD*S@#Z})O>#XzbxJ2 z(*ORSw-4B7lXHI^q?}q3vWk22$;s-*Nk=%!-rP8NxSgMqo7?!OpcD5rv1vRj?N}OK z{$9Q~yhv~QiOQ;PEzRr;Lo|0(UpLS=@#CX_@M4H5D(Y8TBS9yi?XS1*l`=ha`ZTw> zx%r(tcTP;z7SGGedv-#@rR&Se8|>lH;qPpBAOFezd~2U_i`uCvhCEB}Z`apI-SKQq zqVtYYZ)j+Hty*t*TkrX?4xdvek9B^%doB3hZX3OAdQry(os9YT+JdE}O`HDx;{% zsQH`m?9^`oox-YoR@leg#iiiipGv=ZHkqH4UD6gzd35J*anx}Er()Nx1N&+}?Ef#B zcYX$=Y4)L|-jJHRWo3xG;qLnXc6+P8gVuv_-jkP>{(Wm;s_!uS zA;lWQogwSV;d}GOfi0PB*=MW1HZ68v7^FJGoPSsObx7}2f!F;^8;|56(5dPL4;Y}U z@j&c z3#4fpBAy01ME%y5%#f8qtlZq(HMO;s&*zrUFiPc`tmbRv?xq-&o3eHy!x?+4`M=M< z%bw%baYnhm?#8aG20i=y*tx}});Ysk9WLjly*l*f=H~Q@%1Xuu&z>Fo`@4;QZ|do3 zPhVVI{BpKmhe=k{4$Y~b!_<_lnk3oNKR)Y*{P^f7Xj29QXtn>nJ(YL%)z02o{Ctvm{yk7p74@RT%5L>%NrugQ=N_HxR+my2 zQu>^Efx&N1gP87vqude}0#;=$?fj4;=84Tpy)&TEjk~+c89#jgo_=|muZT{>1W+6I z>-G5M)eef6R>gLfP5GpAbn*#xP;Kzq!YRdT-nV4F@N13 zn>eM!iHRBHNU*RuZA>coZDx|kv)IisWXiRdpd>a&@$BarM?w1vgO++#R8%Z+ms7kH zdfg~C@_MOk^!?kbN<|cn_MV!`>-=*6|9uamHlLgf+9=Af*_SB&+v!k~&WSu*74qp@$(`k5ic454|MG=cuSc`mJ!@a${%9dQ9gIxYD z{nc@Ev3tKyos*N(jcvKotHakn`}p{HT8DQwKb8#`7`6zr$0E*D54i*5$nV` z@gCoOOP|$G*A{FmeD-I-=ZMH9RoBher=RCxz5e)k+ahhh)nNq>82@>QvIz6K7Dc2N@M2#nMc7NVq z@JLvYcw%4C(*t*HW#?}>@#fR>_WJ*(JUm8uGJig@zq!xvJ^kPI+u(V>+CAS)(-_3W z#CT+_ro6noeEIQLEgt2nwqA?EtJc}&9L|NpY|^YdPcz4?D@_xlaY)|vA?xUcf2 zw?T(}1xLrD16_;XHD28n{(9TB$ko?YtzBFCXG`gpzH5=UtzNHN-M1?|^vbFSV&A7J zp1N01Uq44pu_^X?2Fl_XLCNwE&5~jW$wZmqBh*+$?uXPPZ;s6 zvh?`B-^4^DVmsfD`~Q#p(s$^oVBA%IF)E6w{N0n9y+-%*7R}OI{r@)a5lW()#h;>F2pqUOd;f<#6)IXngvRb+y5=*hSS{ zj7?EVsj9g0pSPxpip%q|hlf}h4y=jXY*7C0&Y!-1jr$Q2(GOOa?`LB0v9w~2CBT3LPawySdAU+1s*q;fpuh|&zpI4t+pNi^$(ryF232kJsxRZf`4c zcXx3K`SPUlh>oSDq^GCntmB{&_&Ym`HP&m6Fn;MXKjJLHklR6g~A~aPaZr$-26#HF9&>!r0wq z5nD0>_py6Sx&JHdb@v6wg%KBi=`IuU5-NDy_O0;crKGy>_xF;XbZqJAX^7hDQYdWd z?jHCm|3kvvf3I$Zt|`2|clUwAOU$3Y*Ppc6F!_kp=KFQR+2{S{Ot3ZrS*(1%^XAUt z=K=fcY8eiIj>r=i7r(Q+oL@V9-4TELzf;~b3OzMXo@%&iS4iz=VVfEauPb{$_uWwT z$-Qf}ao(z&o7?*~-p~%`n_=d=W`D4^uV}0DJX_)4D_737R@aKKtBrb)csC{Sg!lLMzPPbbd5V{6*7bG0)!*Me zt!{AnRbu{3Z(Dor`PJyqz9@#N@>K{nKi=AH%bRciW#YL-*FNPJln$o%7_`ouMYf`Wm5 zm40W`d}cIUTN%F%lQ}#tHSP1;F1ZL7=CxF)t|Y41?P+P|Cjw4|BgL1 zrQ>TLGke$Bc~`Z<+2+jQQVVc4&zW)KriF&b?QMz88rS!y^}h2+&B{7>++F|bPUC`? zlWu(1QDv1dWXiZ3)w)7s^Zznx^+qWKelo+7K83FQ+4afXqu`mD)UA~N$Hf@`A$iO9Xob_PB;qC zn%dFbefZki=)~My-uZ91zjbys9GlmB@z!cnqfJHz?+#d8toXA-qkg?vl}W)ZGQ!1c)A3Xu^VRrh1ohkW_*tBch)OHlB@*VjobTVgD8fB*gMkdt%pxO>3L zhCbQ+M^8@jTv?%5=KkY@v!S)Ame;!%9UUD{COk7uR~9cO%A-YNu}oXR`+8^KPTPSDK6frymQwL5?KJesZQp4wddl$xYy3tSidOA8hbaz`HAJ5fF3Mut+4?Ww=tU$1zvVFQDd=_R{! zrDIJ!3TPJ8##rK=v+QE)%AP%8;&n;IBn|n%1c~aTv)ZwciucP zQTgIxcm63_p;RvbR+)H#W2Lw>d35aA#-neGN0MW1BV|v5OECJg~^s!1$3kH=E;1 zk(mc>Zgy~J*j9VbCa`vL@Fwnraj+rf(seCbHqwI$`tmOZLJ zDy;4@ae}(P%iU@H_H2(HJ?ZP~=?L`G)birSvnTlMwT)1NV$ z)6XAkU}V0qKHffLRS0LdxPDt}E9*49*jcYXf{q@E+LqI4n0)NO_3Prn%X}PrrA$qx zDqRJgk?3##S7deg`nHW53+Fvvl%%D}X;I+t`^HJn8sGInj0`HChfdfk7e2WsSX28U zduEeLWX?UFmNq6?tBhH9nwk?s7B;Q;>c^^N5HRKH|2M`H&HsO!En$0lTdta*VBp4- zFZbIS7Q6KxnxYw;keS&TxY%v)ryDmnr|_~zzx!@N5dzO#c?x@=B6D`Lk)gVrA!*D z`1{wt{qDSe**ou>zf2SvSADEY3#wqU}93Df14pRm(?VQN$ROJwHEnFVEK*D}k?%8qT#zFt)8TTxN5?s$89d$!#9 z8HUVmZf+8GH9xYCg7(Av%(Jm{|Gm(;Js~miW7P8n*SF{2x2vox3=_+ekUo6$iirC9 z*u$H{W7hM&m40;Mv+|4G`}CJp`ZfoBbZb7%>b0#-_nh4?j_84bN$=W_1E9;3r;*MC7*LYPEI>qYh!J-6dS)?|A7M^{?~16 ze3af;w;}#(^WRnSZ?6BDI%P_T!v5!5g*H34^F6KFZ(vpZO$T&T(H!gYcUy&z7Ct`q zvggpzqemB(yu1Xu9#=+2=8Nd6gP#8W$M@C#zObjV_~)|eY^;ps?-y;GeqEb?wN$+5 zRPk`Ph#-liQ%4r0Po2jql5kJ7t4_D=%HOExi~CD{g<2LWg=A)GWasw>-E@yNHZ~1T zdinI;ld88j1T89!gqhh^2#BS%WnN~wxHVhs*_o49Zn7S{@Nu&PC^8P#UFH9_y3WPj zUHruR%C$#);$>uI7Y3~q5ENW^Sx!)pQCxg_O#I_Vk3OAx{QuwYd>1#jMLsi)W<57H zHvahY`TXQ}cfcdveZ{k8%{p}Dii!K~jT;U1vurgk)b(}>vfBOn9{#`RZOPW~4;l{} zKk^<+zSCIvQ64<`s!Za8s)SG z4V_EN{pGK$i4@+Nb@kAloy8Mp%;>25`-_pG>iaw1^73+@*=D>921!RaK;yWZ)6Rk} zo8Fjr*J_SsF`M@^9YzKV3yUW+>N0Y2c*MoUE2^u--^^C7oH?Uo|Bbx+Vw_QOGo@xG zC9ZDm@ab{+u66gTfP$#>;Woynr#jEBx$0~#Dd})~o5ONHhxKtXuBY7@84uY1XSlqq zGxzznJWt(|<(Ayumc#h(mv>Ie-OV4?1?sHw@oDH3KKhPLzE)+|PJj7?yH*dL z&u_f6^l9IOjt-6d6#p{}2{$$*N|@zDtUE7jS7YHGJzX#M!cy<)*X`=_UY}YaaeGJL zpRH+M-aq}@=6SO_DLARn@|Dr6Y3pX|KVO`*F4EYr_1YPqH}lq*rE*=^v-8G=ZfEQK zv-jmKDurg4daGpB|5g2FJKM}R$9}oaAJ)*$jt+(sdye&J+}DlK&|)lk#gdZx^mgXq zd2I*F8};wSf3{N+R{s2UPe{+r+supIyEFT;7A`!{!g*l#dnSDm!$s!lDJpEoot=+< z+W({C;@kK8xMTL|fNS{m?VXaM`l{Yc&z?EFz4h}~Xys3#rw?(^s%rlx;?$2!k`y6&1shmN!V_?@5dujb;_g9jbHzETqR^PC9oC50y^ zxgGU>e(u0h?*r50pS{lPo#Gbp>7S6sf&=fx>yH1s{rmIRKPd{Qrn67eWuB&geVeO0 z^V{3qu7TV0PKriuTo}SMzlJGhr&8AXCCj^SF21^|b4hPU$BGR}Np7z3IcsL@UJ|x$ zPTaM3dmjJeYr86R`BK{(nWiUSp49x8O;OksKc8QoNmPqLRJ$uX{O!xjP5rASG(){Y zvhVB&5fMQQu5ruEW^$Qlo8PG^6Ate8 zyZZaRGIPLIt%83x8>+XPC7wRRl66(+`q#I&KOGBi(G*D%_U$G#$a}Gx@hv z?Cd%^I=Hw&hT2vz$k^-cpCt>1gIeN;j`Vcdg@=ELJX-tl|(AQ zn%24Tltr|K&^-0cS1e!7T)%!rnqj8UgO@9F|34Lf@W4@T#;L`prZy%YZ>aq2lKFSC zdSe5_gU{znvpEF?1w}>F(n7xc`M3K=_NvU_o6AdFRa_SQ{q-$l%Ob%`Mwe51Te~cm z3T0g9`|(UVH@d{cplHdD`iDOXZ#rqO3enmq`1R^)hv|BYo}GGgbCJb~X}V`hJ3Ce+ z7#c2KwA@#EqvQK0CmSYDUb9d`glkSk0h73r-hX=!`CsK zymRhh>CWBE(q;_1%Q_F9Xydpb)Mk$?`>-`4f+2W$my-gobXVhX{rxPf!o`2;3kpu$XJEK^(Zg4v z3t}ucDyXb2So<_cLnPwQzoZ>eJ0IP;oGr1ryyuSML`Cgzz8#gpIk!?XSLVLI!1&@S z_l{!sZ5O(P;^QA&P)s<=b>L#4$kCh&3@`4>SNsYA)fg)*K>6?Rx>yIVt{;mp-T1M; zUq7KwtS{nX9Vgkk6f8tfkF8M zYZ;}rMNb>*|1qYWWzq_{uuVS#v}kJb*8dM4Fz7@ooq8Ry#AD+y9sC$kCIsN3)HMjhcH` z_C70gifZb)D6qH5Nl|F4TknzSa#;%(I{5V17>Y6;JGMyS&DQJ#?eblF&xz@?X@!YY z*A`bP3kvSlR7(q~czcJl=Fi3%)*(l}rA$)c?EV+ovZ?s=qogCQI}a$TA|v5}!-BG0!|W*?9UALr%m{p#n#oyF z*=a9w_UzL>we#EJ@AsvjJbxiIS^UWIW2a^L0^e;~f3xNji-DowQRl2H7q+FRh}6Wm zx-52c@Zd10HcQCWowVtI!^9;UL5_UNDr~H^N6M5*FOEgccarran_vx*h?|M3ch=q& z6q9W`XwB|CNoD6@rK+t#OB=Yw8-kY~QPSG#H@Bfrw(<4#r`>A>jLq2We)Di}Ggo~R zxh!4(ll8+lvCA@%(XAaFaqPmzT6cVWkM^y1ov^r7`C54#|5T?|Q}OE$t{3k=B`b8X zK3L<3$JSfT><9W}4_sTjsWl{I$1bMTVV#i+{{35|aAJa@!`i4t0UV%#DFegBhti*T zB%BuexV2a?e7%ot&Gj$V3G$_7%00?8@wVT5 zz9maeNXZEbiaPn6Sy8Yuh*iQ~PQuJ5rz@IAL)2?c#(pNbGPxJATg`QRb)NEdzIeML zQUf7MFUe;P9&$ z7Pc-&QtCy zDKQuu8@B5!INY8$PcPo5wI_)4%PZAo=5>F!uE;HUz!0!?)eIE@S>5s$7Z(+EwX_h6 zGxPPYO})EEvs|U>yUIV#SO3DqeZ$R;&V7C~SyomsCf0Ro_vUohqug89#WtGdHmnYR z+P!wd#!XDi{6u3ft(+{86SKiVv|C2tq_h)*}Y*_hPZORs%PHsW*4Z z>YtZ);OXfkmpj+PFTdHDEiSS;tT5w6e6MtO<1yE626pxbr$iUHavNT#csuLPMM1$p z$HXMJ*5>{88wwUi%uizQx;f?0F+J(TB_@YvVSMYk9rn=S}Il%Km?gRxk~Hmyu%lW$r?WZ|4jc4&10so;dI1 z%Gi)Ik&zG6j`y9ov)O(7mAdtD4mUT&#C+Ay&ri5*w(;K@H(mujz8{~wFYZh0ePN`e zq!l+~#>ARw`t0xSFkV|{IzzK(=giARd~R%gM;6+(C#*4=W-YU*NnDh5#%$(e#~jv1 z-6~t>==}H?sIjjd#_;alfxo{U`sEzn-a4=`89c!Mv$Iq38v=ZeY0`FFB1VNt{b(JvETE3=W3mL z`~Ne4!2W$2+w&QA_Xr3|vZ$r0$WQh9^H5YorCg=;)U(yIFV+T^r=&@~`(9lse z>85gvoSc^mbw*BBOZuL=b%KC`lGDB&Dc2UYzG#ZCKijZ4SxC+>u-1Yld`@GO>GJ+j$M=GX87^reE-JRZ0_Qn35kp~|11k0 zG;B+lpu$-Dt0U+)n@!iUAjZAb-Vr-KFr=M3Wh)jnH3KT+^^UKYEAjE_HBMf z;67G1R-UHm&C~BF3X0nK`5ovKUbJN2-o4xQru#3bEPil^^=H!LiF0K?+$~?!^tgd> zQPbo3^<7&t{{Cj>mpdV=C@8qMqf=5;BJ}#Y6^7Mj1+S;wStuf@rX`&7zrZ?;{cKy% z!T+(HMN0!ZR`z5C1}?ht@84gx_^kVPWg|AR?5L4^aU-zCep`v=gQu)LvZsZ9ySTJ= zCjResWqtmyR^$I4;idon%~npYOj%@f@s9slkE6?X+Z}C=sJrX?CCJauAwpt9#zc+S z7266Ht}vcINhvv>As{Nt&d*l%Zi=qX z&a3NqWh|NA+)!L*dh95puv!Pp+jjW_wih}&QjQ$y;qv?XYRBDeYwrY#WIle??<{%S zXop;_tZvxW1D~HfFKTxQF{s&6v4byWsu26Or2CY}eL5zm%Y~sOi9wo-f(o^ETf4 zb6kGw{h-UypS54MH`nqVI(djw@uA|3vUDjG&q>xgixwR{$Y@a&lJhQfQOmZy`SA+^ zl?~5cY?v{F!MUBuJiqH}8Xw=Hwo~l#3|Cio7ybS-Ls99HJjm5&XLY*rTwYe_{IVu& zXG*Hfn__{dZ%!?2&*s+<;o9k}q&4f*l#BQ3zxhnLWnXk8VZYC&4GebwWp)(1`;=|i zD0ute)@=2z_CH_6g-w){Y7>&&ex+tuxxdR{&@(Rk7J zfJH4grdEDTT96f*`+Je=fjyOrb}eq)u#IisPdAl}$HzKb-hRnk5UQZ?f zU>zu`j!3TVG5zj**!f~YC9_Ruy;8D^i)+lvpaTmWZyoRKRC1QIi}5*cW}xcDaKBbv zXp3R8OVhXW_KP+pCoH&8+rTL$c=2{}lH0F|6B$e1@vMpCU9$YNY_H=470$ogz8>EA z`*=WoWbK{qo$BQtE=QZaRLc_c?!|1s^6%qg2ak@NMA0piR2yd+7prBw-_L(#)lrt- zju*LxhRT0$>=eGSg;T=R!xvJr-f(OZ`z> zkF5Hrzfa)xnH3IGHtV z_{fquV3UeLGF!p-bsiUVbX}XSE#v)g&N?aELM_9^Wqp6AIWJHViVdTi-5r>(uI>ZGKujnz6V@ zi1XH5>qomSyuBa1iCmByy&%mu;k20F90jE+S)VfN2m2Ie1T*ImBei)Y*Jp z3@QNq&CG87Ub!;qgoc&Whc8#QNuSs-ak8*M?Jfz&-=DlEE|_c0Uh;(!c9B?s}ZH^RS}UKOf(tX;<0# zyJTlxUFO3WwT-2z`DyoB21~21wc79RiT;CTjwAT2nVdyy3J9}M@)3hU%t}a!HDJ&*=Yij3ARQ%?0 zdo%lv`uKf2QXahEsQJCN;`aSIZMpmVbjy@9!ue(xyT5U9aB*Q0Ha->q?VH2;IEVRm zNpjqxT9^BLouBv41vLwnqyPlR63jFx|rRJm!ZAKNjD*0>^mJ12)6%jU8V!m{EKYQ8N8?4#F*)luJS+>@#ZPgA8f5O*&VuOd! zhnwjRe}5&#&A;{ZbkhIhNpXsYuZVye3b#xX&PpvPN>$MFJJa<2gTU>>clTvQH`->g_KqVx2IPb4@Jwl@*Fvo^S7-cG~X}^2g9{@gG4szCEA$0(P4{ zc%xHp@?{#0+-;*zHdUoLKEl{(G=XML{fy3>OHizV1RN7c}ox$y*2-kwl z;J^b$Dl9K9G6$@5*(4^SQl=2GSIWbGx^<9}(qB+4Dl0hD+}&Be{?5bzxfv^bK6uZL zH+V8van`nM|MiMWjf>~GY%(ytTKnh4#1j!rOj~j#B^_#N4jv0Vuqu?f?tiQZm!xHo z$WPn)xHqj~3!7HFn=wJ5c!G<|&z?@nr~1amJCzsM1ZjxO`faFbn6Y^qZM4f!dR?^~ z0YOoApEEDs-rXDhW_5>T*YlI-6W5p=d;H^g#*RIT&*siz@8q`bcoMo!CLw82?VjA( z8p$)JEvt?R`*_!4p9|;PxD5OMJQbCU=jSuuuT`J4z2A;WFJ^+Zm(rr`hmZ8!>r-J| z8^xHHm!zdEnmO;=JPX?gCcA!>y1Iq2wY`_?lbcv{<<0&=50 zIC}p4d9X9Ny{1rVP2lZ~izA+|a0%%#G+ex0 zSWvNyrMH*0ruJ!H+o#5x#e8xiS6w^vW|_SUQZ_-tT4K zu_NPl-CxnJ=M~z*qXfarTG}4X-bBtjI`A za?3w{l(pg$3kM%tPAwXcQ{xIOA8ftA>V)*2Y+FyqZ?9;ZC5C;9ePFcM+tn3KY(n-e=ynqkj@9PijD7!O_U1A!!HIWf%(ysP+T8Dq;?2F$?>ts8iW-R z+Ep(8^qabmK=e^TK~XlJGcV5O-c-^uRNIs^UorF1O_p4(ZH`fCQlKPL_WG8hmZ8_X z4IM8^fBfvs>Qi=q_0HO|SgqjOnw-R!(N|X`r9J=q`@oZv4XanLh&4^^n!$8)=jIt- zPrjeo;o%1|Th@-}%zRLPs$3lndYd*zMf8Ti>p(?tZ)O?6G4>ZOLz%q7 zBB!QKNx{7vv-GYOq&<-AS!vDY)hg6$D|K2{Nbu>@?dBWOdRKHT6qD92D_R#NYEkaD z?*^B{RILM#jwY?Wd1t4?(XON;IrnTf+NPhLrZvarWmgZ+PG!|akNP?#pWa;?eZXCw zvHq`Wxk?Df49S^^X`g5A`1q2SC6wdRmiaXmLY^-@jojQ^Dktq-QkSE1VV7yZTB(4& zySCN-uQU9*QDW0(X15-Ob#biU-m%`=7MdTm_Q;o)TLTt03GVyp=F_aAbctOpZA$rU zbLP|27&oV%mgN*xdiv&c=DYj-d;1sMZw^Qe6qVUg>u_vE$BW)6n#y8{bM4mp-q^J1 z$Q*ln`@r^nGlH}lpPg;Yy?x~SgvIXZhpw54_RDJ4FgDZ!`eAUk|# zG0d;i%HkJ(`l#?v@{Jj{9(?>=+zP;Vu)hFYsyy#DmhR|kKVwSO7 zvY9?_UZ4KHA55XELK>GYRlRfP&V}9O`8IWbBJSrOE?{9{u>Y%K)}(mK^=;7B!paw^ zHJ{F@Gc+t+=>2f_0dZ;l{3rX;U0g#ug_34Zss3KlZCCqKHDIUFhJuAP8(+@cSSYru zWMaVshJwFV24y-Ap0L=|@yrd}vNqbX%grU<@7s}_zrVgpm}ZHn`OWDletvFY*40%U zTwG2mDJkoY&$lRKlCS%r`0M-o{s|KVw&dTJdwYBP@ul9=85lf0JwdBs_WgV&J;%D7 zZ?<{9TSSD!t!=r{6Y{%HJh(aIRzltCpBC5NOVr5J3QUw}TvuP>`n-4UMAg)jvT}lZ zSHAI#bYn}%)pfhJDSvL!Z?l3&E*tMioH@-s!;rb+hd{*sI3BrG?iZ~}1U5VD|H-za z*!`VH=ZX~*Z4GDJR-3W$NHo;_{k1S?saM3F3ea768%kbYis}FV@woiOO{v~JlE!TN z_U!|02>@N50$Lr$kdvFcG5@|@$=h3^_wL(6Ul%YA1b zx!&rser4RuDh^qZE>2#x0}+`$MP*MHgq-+y(b?ta!4n)m9`kSfA8Gm4D)`Jy<}0h& zYrf3{g>)z9g{`Ysv==>YD-(HpQrNI7Y~7q0Klf*ePB>!a;qpbQ=gFU^nVFdu)!%fE z^-3?#4Az>OaczxcQ*(21t#3hrfm^TC(#v9ywJ!U ztW}jV;^OQMKHWb4{`F_elNp4B6R#|07g@Q|V}FU~6_InyrSY5mKZggt2v?mV@&8># z$%l6g{?`7!Yo;sdKdd}ed__Mv{uxKH7T4b>k&W?R-LLK2x`}Di-?*hgoJ(6-jiR?S zEXk|?#?uwNTw!a5;x|8SrMTtsr>BXYywSpWV1B*UhuisHGBzs?EOh3Qv0|zD)Y-Bw zR`tuv$*l(*JeM;pTlfgFNM!MXU%`qecRYCf@$vD3^77-I!s-Fb{bYTA-`JR3_~eA( z9IH~TlSLh zvszA0R)3xmzd4OpM@Q%0leMDWVuFGzb`>a|nQwRW;Lpzo>my&}rg%n5lqbs^nsn&G zg?);@c71K#yK(QGM8QBiLoY9B9#PE>v*Rwfgmy*~sX^DUJ8j z{i>?0zP-KO{_O1R!xq&`^{cd9x5iJtJo%!-O@`~v>mHx@tjyubb@0e9VMB`qgPzb& z`}-H&THh-BJG7pw`o32Fy_P2r7>?W3URV{XeR0M_#-qo2C*0b0HFkGc#~$DP-(D)0 zN&fi#o@Y(O!XwLkxom1OdZ%jt-B4Ak%EHTWIn52anzT|CV)}e_1z2ojFu3 zdarqrK+h?$t#!IuH`f0O&iMW9^ZCZa!wXKGYVwl3|L?C-^~Vnatj=5q|9{s1Z1(ro znwdLvBNVo^M{nb?D0FI!-7Rust2d{+`vQ0V1>yP&+R#^rLSJd@H71W_V%)6+}tU5cN8-J{{H^? zitxIQZswq%Cw)y_3(N1^KX~$=`o zjFOIUyt%hmdUM*@LtC@28)RNm0WFC++{VkSFlp1dxz>-*%ruVJTV-lwY%C}z*Z1K= z!IGs*Pkxf?Zk=DpBqQ7S^77NZmM+DqL9LFa><^DEH#gXIE@RK*Z+uaeTQAw1|Mbh{ zXh=KXq9uvn>Z9}Sv9R$n)zr8g3-bB-qhovRf4dFI>=)KbC#12(>}Knc*Z=00eZk?$ ziu3bN%jyb>vfR8rqxAJP-oU`X83u_=hYlYOTpMKya_+fv=NKA(e}C`1^2)RR(%09H z&N9t5sQXh<^Yv=@hfkjlU0WL+xU(pg;lN_|{twUR*E2D!3SGVI^KL#_s}{FjDbW+Z zwaWbFG6@O07P&1^FH0-?vG3^j6DLkJcxiI6sVrAt{4Ia$$Hx2Y5^@$Y)6`mvWw`|R zDz-A6h|AE{^nBB~Ea>IG*`Gh3U-T#O^E1~~s~*=I8Zkv}7u&wWBH?pdVAB5!iVxoJ zKl=8vf8+Q2>{Z`Hq$8hi`qk9Y#duTLm_foUXGYqQ*RJjS^5-sITk0)d^74}E^~bh0 zHVVlLPd<8m-o9~yz(&3XkMliKZuKt{eIEY6=?H5~$Bu^ie*arIdDR{~mXa6mVp4Qj z!v61H()MR(d~&0clnkm&CQM+Eu~z%$q1~2~)3C4h=-Y?R32&n&E{WZvA++u6Y{u&9 zjrCFI=Q-Tn)e!V;r@zaT_#gX?_sX?8t?|$cbb9A;;s6hiM8|#WKYaey{w?Y)$uHI| z{1E$~d#m{MqAumY!fCZ3I+l?ktb9BoH#=^9dU{|@WK#I^q-7zR31=i890DDLTzLPi zuTS=$pXm$gYCp!ld~p#pIr7JE)`}O&Np3E!vw{}7@c)&Z7S7IkFC*3IKlzy5V^SIeok8ute$XxA1IrJXnpkm zv?AySqA7tG4HN+ia~WJ#bxohK1mcBG-2vof`TxW?Wo7*IGSHK|f~2Zj0F- zYGG<&KXx6wzQgv9SzXr8$;cyvXu9@9kr&U?t}TL5$9A4D9?}M^96ZFhG}k*@?!1K=bNf3vr|$dF3+`R20-ehwY@+0BlFDUJ zw&up#NL>@qN`fm3_1koGT^%R*&UTr!EosEPV|#CrUQSvpwE>_5H$g`K23PAJbFIaA`YoUw($6 z^O@(tw>L0WeDTN;ns&FDomD!Tal=MIQR(gZ>`F=vOT8NxC>S1)5MrwN+$-Vv`77(b ze^M6J)3PstR~os5=LYZu~X@?c6D{&nWFD`3N|u7-kNWWpVirUB5?n2z7>(dA?1JG z7;j9E`WDLtSw=IRn^SQ13K!RtvYZ#Qi?@~?U9%u^hxI4DV^?IExs$m;C6~y5G2RI( zoS<(r@j3J2=`>yDUFGa*J`=2k7TIWLMhY3v zK7Zuz#P5dN?nU_iK4{GznC2(xV`ak`*!kyDqZ{w-b*+<<XS+zFW9H0dJMZ+#2Go9RJrQ)J>tTB9#*GplF6v@C{L!xsuO;HLEskB2UacuKX~wh;(f;rU*FHxZxqG=3?Y_N9 z)ren4AXMh6S-zNb)7~ALH-3ITnrEEtuqIE!PUgmT{)%5AIT?31FQ4)C=bM=ktFEt| zEm5*2K0YU__FK-zH(W}46O-I5Q&SnQu4aDsZjOf^+riTZx$XCTSFQ?wyEZerIFomq zOP=FW*Qp=wz52f4>#eYql)`;{f`7ALg*^Cv|7erW)^`4*x87_@ZCvsw`tQ|iVL2Il zv!3tLt)&78@#^RT*Bh((f{Wo1>@t{n#tCW(6~F@MRMS#G%Tk4ubX4Qul2 zzShaD!g9y$k4;$|9Pn@XC!MYSE|#pUnZ|-!zmx#E41kPu_HZ2>1k{~exH_Q zo%lv;%8CZbv*`~Grt@!DciGD1TSm`g;UPE9Sh zmS!#XziRj5*>&D;&%PPCdAqc>t<8NmRr>!QVT*FUj_%9bRMomzqk5$}S=P@eEM@)m zMR5C+DLj9^1RG46{QBXCL{Yyv0^VQ3)(Dt8tclFN6>>+)ljSJ!a%NU`SJ)#_8%dSx+n zV#(G#-MVRsM=claDcDwYY=zb050P)r3rNXzJzaQuqiK%zt>0U&%WQu2N9#`S&Ti0B zR(*E;pG~TZ4y`QD-)I?8v}xPhW4wmDwq;M3&UyrV{cX8zuHog?PkjWsa$vxbWRcOCJjxM#goFKQ?@7fAQ+N=+a#8(-MY) zqFP={^E_+C#S@--ZJgS>b?dg;HxUyz=teT}NCbQ+6f-Ce7CaLhOH`^tj#BSC({zQ8-?+)RHM?77ZCS2@ zK>&}Hkf@l?8IRXD3*PW+|6GcUW;zjE2a8h0YExEfK4iZOfJ3P`7u*nu)fC)+HVxS2k?a z{1L(3F`-CX}}&oUnHOVDL`SEaqOrE4{0x=i_^Kb$M}XFI*Pw zTk_>)N8di#hi_l#CLeJL(b&6V-x_c6iJ>X?^>wYHuFMW!>7o?A$mQTM4Pj~Nzz3UB zy+2ym%I+v&&Z4mGG>7E^8gM=`lY&)!Cxx9|Dkbtq zyRjoKWbdvWspaqIMdYNWEt@^1SAy}*PUTmZudfc@P1mT}#@;zq+Lm8e+*%pD$mIV_<3%exDl9f6x9?cFbN6et zY||`}+e|Y<8fMH0^!uYW&!g;I*f|La0|91cHYGJxHtTio4=h_fyWr75&MW%S@x^zJ zI13l*{gJu%y-NOlc+LFRmpU}c_1Ed&-o|@lyZ;oOGxxsTOix<8A$Iqcw}OIf6H8O% zLxa7&n9j|=u9lU4jv;(~*QdYza-Dj?#bs=N{x+@(-D)l`Ul_OO`oSYTEl*Mo+=+Ro z(V-z;mR9!S<$Yn>ztu{{+QM2(y*}S*)0QrH`_lByj(yBGI77-;_I=mh*FQ}(YSFZ6 zT?x&fhW;-40UAdH{ClN#y;b$@VoEr>x%b5KB@C&jyLMJD_kS%WZO9-dcI%Kr7ANPT zSIOT}-u^0`xc}X4^}MWO#}*yvunG)T&-3$R{TH@^363@ z6^w;Fe6OBWTjtNcE|!^%Pvqnr#*LeVn0s%sOA8A(dQU$Ra^myzqi+wf8a9XgwXhZ! z|G0em`t=@nu9&OkwDopMcCN2@cSmsQ9IvU9tfiDrG1sTp|FHi3c=fM%&`N;%yFa+C z^WPl#cl&qX>AlmQ?aX?W z++b*F>B#KQ>X&28zRtue-L%&y8qZo0vO%G8b(7 zo160%g{_?AaW6vhl7WGtvZ1Dx7T1mn!42D{SxYHZIjib=XMOWJedd%)%&M}D|97fC z2c;I!YWvTA=bJlEv3&Kq?%e%J_rjIUnyYq)J>TN4bZYL@sWY0V-|dl1n!JIHcS|li zf7jcxS62jQx38RQ%N?>Jp@m20bF_iC}Ju8$G)j43hs z@csUyX>)sd12!r>c&eHws+Cc1Wnqx1t@mTS0cT&|A}(P;QEsiJT;HC3n|0i-&+f*Z zQsZxTZZ+F(|Mnp7OsveVYL51Ia!d?9Sr(ka(!MMVDJiKAD+8QXKG0k3@)`5 zd%OG1n=PJEJBz$jRHigFH#6DU`P}M~QcH7jVLNc@2$yV)^@8Snc8^Idv(M)xytiQIXbw{eWBDkHscp|)U=aUA;q`8uU zqS;)nOmTd1ABsL4Qr~Llm=?C|+~@lHzopLy&r5#2b?uF+Ty2H}Cl7Ig99lQ?*NeEN z)-t*>sU34Vx@5$~Cpy~HuM0MhD|{!@GkMa4%+#f}W>!%?&1+(%BewAbtSquz_|VW) zwAJa)pCY^IQ>?UpaZ}>+72fUWJ&F`NpTZ1g%#hqQS-mlI^^ufkj?GW{+B#A`BrQEIc{Y8)>iF=pA;*)y_bX~? za@EKDWCr0}t!)=o($wYWxfE3yW$nD4WGJXqWm#Q4w|%Cx`J)%-?H9+j^IfQ6nro-K ziM!RwTywTXV9y?2DVC7cVF7~ToMK`QPftB!V|e*;=8dhdS)#UPwVv@wwy99Kw(jm; z?mN4e|NeYY*>HlSm|C8Ga@H!}OIPf#evgfHRXsUL)s^XZ%&)fwhQ=jwatB&C?;P&w zFzK1%#-StHaUiJi$EUmc6Q|8=yWH>h_{HAEJ7h{F<;vt{C8x{H@6^4%?SMySi_|*P z4|y-kKjzIW4_xnKJ7tT>n!kM=8vH%Ig3;^dygPRF{XXtD_jKDDH$`vvJM%dEe%$S{ zk4hT~6fdk0ys$Rf(Iw`|jG39;txwc+eSKQb%v)nyrz2$c_55=GqamlP%a6Pb72(>r zY;B5X?xtzC{i~}t>YY31cV*7wj5%V$#?H^5vii)^DHm}G>6p2~=R=<4#Dcvi?%tAJ zn&b5_@s9JHx)Q17@^g>9nY@{iVd@;MhmR(7&r(u~oRp~dMSaorlw4jG)~7lDzeR6s z&{A-?UG_y|Lxo|%|9yE$X0^M1oZerYK2i08_skg#PfvB;KD}falmEOIYS}m6ySsE8 zJd=L@$TtT6`CYeP2Wh!BE%Un;_a`%5T`MRms%w$vv}yYL^OHV>-3`<*FjQ7rWNx

(YD!XW9Qgw0et4!X=f7z9#wWe9!R7i+P*PGBe$AcEkN?D_3p{ zII()k@^00pz(A$I)Bipn{cUKNbTTn&md2T%Z)Wb;tDBrWaY1B6#|~egBf7u;ip#Hl zzdA(8v*xC*>e7TP0|P_jl)%6P&Fl_SwXC>{Iy*kCS`!;NWvh0#+&^0ehK-sVJA8Vs z*vy|Wt)bZeT&COEvb@`z3Cy6Er9amvh@CeyG){@$*3r7f(J{%-TrkjXqv__> zwKL0%BfXQo@BH|})_2#st@pUO(j^t4g@Ow!W_=N{&VS>=`B`Yz5glV~Vfmb24F6RB z3O*2PkXmQ@AnEI@|F?uEKHRibR62hDio96E{p&o1b8p|>ec;VarNu99hu_|pGc#iU zwVlT9*S~ly6nM&e=B%sW#O)L3%`-0a_P%^CC^){>-ZZr5PU?QoN$(yXIpXu@Pw~G! z-@_A=(oP5o9eHwB%JfNJOGlSwt5ajqx2FNOR+;3yzqu%Mb=ZlZ6h#vok>zr8o3=M^ ze|96=e|@Hw!>XN;yA=-~=XlW(tAR63=(edPoIhSKTt=N!GMo-X*!gs1 zhwk5$x9hVr2o!A=ec-YreyKOJ{htY&_lE0FoN{&b^4#4eoS=4<-kE>1>i!;KOAKC? zVSX))|6oM)Yx6p-X)|U>S}mQl^i$`GfWnPM2h&UKF5CEdcspcNXq>YX>x@$FcboP6 zU*#A6I*x1q7N)E*aZ_FH^`ZQmd+7638ISL>iOOn;rTlOSnNs>vDeq?JDwaRLvd>N2 zWSs7DNzL=twg(A;hxX^iKKN0X`}^eNMRj|(oBw~eXnInTn~O{9tf`$>y-$CgzD>8+ z|K3j)(AK(|Bb7&%9(!1Gq;gKbMSo}nt9iD$Z&KO2la_1t?hp%|v--gKll*plc6UT( zcl?_@Tl&KO`g7mDzHZFE?$YXE`ZXwZ&&&iL)! zUG&ZOu-|;Pv~wbt6*jA$KB&Q+21*Hp;e89MH$bF z3y$wRIyyeJIw=b2@>}z7`IZ)J4_xq2C$VJDoe5=bD!- zDpt)cY`7{Omi%_<)>%u|P6}52Ve#w0ttqeFI$qe{xZNFH_WRpYn{&t6CG28+@~hp)uGOP&i)^c17EXLqy)iYd%lFW!X;*E_E-D2^ZVK1;4PL42 zo^WUD>Im)aiOt_`WL`evcdGUm!?|;dbX8qdnq$6)X&4w9hs4D_a&t*pFh^(Zg$tV$ zrK(KMe7tj@p>ajfrY^O@-7=+;6FVo)dNpC&vRhx3AM^JeUu4`JaBrW@9@)JQ-#+N= z;uC%N_5p9cd%i_f!7V|-y=tvYD`KPXY?3x`xU)%I>f|XQjVbzpa!=o$Uc4mLQ)7p^kl@~RZ{~}8seU*rZppXv-cDn!GxK;Kzd4?k%E-*# z^+fA;-#P#JUGw#)eUIN4G8-8+9P4cqQgw;0vH9?3riV)W9Hy*<88ajoy}f<(Lh0eQBttDh!N2O& z#lK^|$KL*S(CkkC-u~AYuY-!4#Ebv$&1+LMv<*x@l5^0Wd&A>jd}oujg|(+_*I(~> zWtrK`RX5vxC#k6Ax=bnOYV|1CwB9gS%XQ&I@m^{6nopfGv{tHl9(Zz6DYLlr>bBW4 zIvy$C6t-sAQ5&t2cC$X-gTo+yp2wq2>S>4Dy92jhUcR;S=KOjl+iIq>vtF({x;lt; zM=AG>-QpGB@2}cZ{f%LM9Ty85)9SFy{ov`qL7PJ3;&QteCU%+D7Gq7Xl)i)1SYwwoOP%>qt8z!0jErMnK$1P;jr| zQm2)gR+kplaL;`nWE@mFY4xmirW0pO>i{k5c6`IEvP3oG)bHq-5s7Y_C1)k?{&!Jy z;lqVWg}==!KX3W$61jWRhYg<__Rh2wHdm^$=5jrE=^q!XK~c)NWvTj0m8kH=>mEJZJbTB_H)(yJ zqh?1afAfATuV6p_rzEJ&(AU{^T3CEaxeh;jF}qrx%aZ!KI?LNd(dz6k)+GnOzU+Qy z)B5?$E{CR1QtFzw!ZcTFlCHM)-Q?$I1cUWghhE-xbp>P2of*YdPp+&y@cH?p_la9q zg*Ga?7tQ-VJ-%Uzh{v*JyDnROZRwn;sI}l>gpyK~Ww3H^pw5wt*4Lkxf4|c^`+VM` zYn!8Y{CuO9cl^$=y)&wJNEe$QzqN(+zs`Z9C%PFLW}ZG$qUxROU2&uG!1^Wf*UID8 zTbjMelvv}l=0VcaLtc|yLMrzBa1Hv_;&b+5p!Hva-N$;1x9!};G}n6ny^UpM4$W+q zx34a4xOmZW{$*xRZ_1@LKy!AGMryFv@+14Bs?v6yd%UhLHt^&|A*c6kN`8{<>YV-) zX3Xn29XP$XXIAOW8?55W`c6v&4xYWmyEMmZ;g;OYDVy|I^WF1#cqCR>PJ4Z)ql1f2 z*w}gUgbBqnrge05i6l>bcWmQh=^pp0Dyy=$w_3y2MkxkQ>}21_Uts=B&uFR7++G9HmlZw)A1< z`Zjb)Mg@|I8X67ZtY$ zj%z&5$Q`pi(tLy6@>|UAzkkexIQh;+RCp5(0uR zxrL3LKYhL4uyyN=BmLQDKp_*THD!az#w#{q8X^*b)h_FfdrfMY(jzkWc(9cJMYX*D zYWWj8Csxe*V&a}SIrsWDMLS))>&5$L9H}k-EbS9-7(02#%E=b)-0q;AQEKyiO^&Cf zr54p&C{-!@oZ)eGYr7$8Ybp8S0%&eeP&AXPmFd~BXIA~~?0oevKT1YQ&iXw`B{A@| zYlm0Yq038_SIqhnQf#kf$R#SP^=i+zv`fA!>MHvyyciBx=e>XMrQ!0d0X3UW6 z+G3LMDdoW<*8|$=KU0*H7Ck!SvGVU^_k{rq+UxtT*S-Bw^!Q=uRqpe_^Rp*yUw-n@ z^6ky&6r7Zpp0>RB&BNX8 z@iUL4`k#@~%kTIs_&hN&htb;D`o^qVhpwFwGh1e+ksU4OeM{$}%s;{U zp5WZ%5H3+r<&p8QWA@?vtXs=vW;U(%U;j#_5bPq+@6{nM7ka*sJ8J8+Y|2W@w#%j~ zHzX&eamd-Ty?MjX%JkvO6l*CZB_%DD5HHa;XWu5~=l!35{2bq`zn7k0GQM0Yr=Pc1 zLa1a= z;~)DcPMWx=^4_5vP0=a=`x27UIJ~B_$=NbJdc+`VZ_&}wp;5ngh6C#~u9~MGU%tHM zl6RZ^w#oO+OLSD0sVXVzGJeeb2%6ulyqmt&-nn}Iw?{v(RGcm3%;dCOW~U|UHDi^} z#91@B7(i;)JTwlIdVOTi?`L^A+_&4Nd;YVMJSK3we&c`cKXnhw=RQB%bH+s|J*V@+ z!G*IjS91I5A6U4%-Q@gAVLNZ(iC4a^yv2TPS<=jtZ=Y}fX!3HU+CyV=v-X`6Ep>Wy zi@xZCmND>j_MWYm2OSctBD~azGdnmtVs_MFQOoZ!xz8`Z+j@TM*XFehM>6K^dbHH4 zv$`-gu3yVG;OKdbe=U>i>{j+P&x1ZCtMz^KDo#r@6MI~J&Tgal+C_Qh< z-5-16x7Kl#@L#c+KV#a8$$uheMr8JFHQfwK(X&3QELV4KVsY?!duHB;yS+QRCw!PN z{g}jjvGqIur{9?Wlz z^`2+`?fNO+_D1H@rR42pw^vE>#+GNwvgOJDxTKPobhtAkYMmy-gEx;i|M>alyk%dY zdZ+Jc)7JjQ{0s_OhFs6*&1qgaQPU@MnPr_-ghhrM-_t`!*6ir+Wi5Ln@V)+r1A1-@Ry;@19>_UG==e7u1Hcy}#7h>c-*y>{UO$SFFANGxYEJ519{^ z&sw5e%`|<^#5J2+oepo}HQapD=d6j}+~_o}J8SNm9KSXD=Hj;O-aGwgJuXV}hWJ~a zwR<&vZdErs!;X({*y=35pZ30g{!`g$)6SbK-IrfT%bh)4&ien}pFfsdQ)f65*WkFH zJyXbh@|UKSFHRm=v%}aBv_U)XE|b@untBl>B_$=JoMmpy*4r-qAp5=iL*H-f^`$x6 zPu;z+wrKlwJAKbd-y-(sWjwj~VyS1$+n}wc$HVj@C4;5?&zc(gob+g1zIU6{&ZQew zS6PL-W~FHb83&o#2O9-Vm^E|N=Y7FOK_-jaK4yM&IF-Hk?Dk_I>&@A%%BEOzfh=AW zle&JzO1*!dthA=D={cpUz5m+AUR!D9l7biB^Uu$dG5eI!Qmy%-M-z<-fl(KR?H)$!fyp?E(UoAWL80 z6z1Sy(2Jd9Ed;VxsfyDtRp;ELOATD24Qq4`oc4Z~0gAYe7pgO6h^DKlflq^Q1Zj8q z-xw^}36@L=(;#-cMrGV26`vUfjO*5|GcY%I-<)=~;PElu+I_5G+ZUOuRVQt$`&-o` zWy&S2?so)qzVgyQ2CSTyq6{}K56`@6e`2gj}L`TgJC-hLdk?U9&q z`Z>_C%PmK{#UEc;8N6Z37MFkkfgql>Mh`m#9sd40aBgmqyA#;u>lLb#%&NcT@JJXi z{QdRSd8yab4HX}gA|fIZUS3+dQ||xce)~nKr>996r}5O()*7as61lP>kooiT^Xv+4 zr=Ojh+x_wJ@x`&b%RYSne*Dx_?T4UBopOt#Y>>k=57u3k|F#x>0%iE$faffeR9=4leqz=P zTl^<#&I{kZ_stA(-`QrolhystU5wk9bo6?)GB_AR*0{R6AHH@iEdP1>&Kd@g|0G+x zJ3Ae3Zb~iu|F3p$*}jFH-QCVFFD?D};2`sj8#hkK`fY?BCb=R0YkTc#`8VOPLqC&} zlLMFeNKVlRbXt#CRL>gs3NZrHdnasMkuTz=R38a>bX+9P>2H8l?XO9k&zY!4;WruSvmQ2 z_Nyx^7Z=+wyt%#Izj)8`iI& zn^nE1F))a5vAXribgm3u4!Ra)-n@A~p3TmG@a$RJx3{-Xe>H<-usE-8N7h7d&+F*w zI@H1`EFdS>mvwbjBIuamN3!4F-@h(twkCSJ-nBK6%^x2hf4qAAzNYEZ#X*O5pPH(j z-6v^XrXwUQY*_HX;mDCA5AK%VKl<+O?!>gTZ&8LbXU$4_bfj~qU;YyFDYjtH+PK_rG6IaLRlCzfY(2 zSH$nPd-L{fVt#&q+Syr8EwC3g`+J?#_y3+cf4x)OuhP%Y&Vug0eDmfF=ullym|k5K zYIXcWmFTD4@s)eI@_*%j-&Oj0L4Zb4PUexhyiF`)Vrt>Z&*1s@@l~ zc@ks9_Pn_%Nl8k&vAaTc)%@IKl5l|GDJb4 zRdI3g%yV-r^J~vN@{s>)Rrtu|7}x$PIeG0`*sWcqt4sd1?Gbbh>-@EMB zi}1RA&-TXi%UY@A-rEzotLSN0$>(RjneXoGoaD81QrY`^Yc1QZude$w_4@1C|8Lhm zKPP+g?%mi`@%#5(Sr=mR{8dJ>gj2oW@ctqf5qhF))o8I#cXDqIOFQ7 zQ14$)Ci|Q88yg#|nwy(v-rAD6Q||uO?C_PPudi9QUp$(l7f zCyyR={q^tnd(-1bjvVn=wrm+F@IIUWaMIcTJ9N^IpIV+jKSxIFtttgafy&3K(9`eh zrmDoPpY$c|@2rUv6|b(14*&J_dVKL0#r5HeAWao}S3TXDKV3Ik?dGjp`@YotEIljs zdu0!FD;lVn?HOg zm|J}7)-5Fig9+DPM}Ju@WgmZkPrRz{D`2XMc z|6iDLa?*?Y`|JB4k#m*jXBF$cJ^8{yLIK-yBB$uZO1-_c_3+cv(@oDmy>6O4<@ooY zCxi}I-kx()NY=WnW%+XTyt}(v*YEqq^?vVnxu)jkg+VJn{qGeq%D=R}XwK#p7sKUQ z*w~VOetHV>{$zE3gUU}SSJubNPuGiW+Pd}Y?Y7t#Pu=&|eLN~&P+WYu=EW*|{(rAG zFS5AozMtt&P3`5n-rnBU-Mg)Wf`bzY#XB1zp{0@_lv4N~Zey`YHPHa_#)`ZkLz&ruOt`EdPG5+Q0bz{rmEbjg1=7 z+jPuwZhSbEf7N4#U9Hu%wbAW|+xeeIyz$O|m-_eA`RnG%xw*X;E(EBks605($PC&J zdTOe6yIZf+N!h50-{SwCdTpBj=<(x=tHbsGd^)XPP*O6*dQQ^g(%+!mv@&=(AE?Ty zjM<(S`{UQIN6+WiADf~X{ORp?k>Ak0Wn385V5OBD!>Os-?C$RFclK0XR?vH6{xaP1 zT;vsz5cwN7Z!Sza+O?zdbK1VSn+>XG*ZqCiE^ko#tK`l7{qq0*{hL+x^|g|c(t}s8 zRu!Miy1MFV{D;;VcE3!`|I~>7TOB{uOI0gm1p~v1u(eX_;`VlBUS75^aIxE-xP|lU z&hoAgf0+8W>h(3mC06 zS(}=Z)AQ=;>g<1gr`Bh0yRqKT*w7Gs>avW*g3QyWPJxneiP8NxpfG?`yYH7CXFhPa zonKH^cI{{R#TM0&9OLWw)zQg`DevyCqp!c(|0;cUW+rHVYT5gHy|YZSU)el=`I1vy zTzqcvv7<*HURfEuC+_~D_~OIoubcmtIdSTgQ&yH1L)`j?x?iT|d*b5nuD7$Z+fngR z$;sK-bo;j4+lvYxALHQVb$xkhY2{ug`@gfKop;AI{`skM;>?*NN4v#M|4z%l{w8}m zrzU7mmio+Dv%F4E*Pp&FW~UObj77kv&6_Vz+4<(`>givePLI#(v#Hhxy>2CdUx~%N%-sSJ^O#Jr#zW&t}fzF>keVP;$6qHigUvwgS z|FUJvyc87`gFHMsp1gXc)hlNk#l^`vG4IZfkGGziu>5*){k;AE7^|8e8%my^lYRN) zpG^8;0yA=`2yGY>Q{vQ4#F@pNhY`#U?8 z8BY{u-`Mald;aBsC*}LgUSIPqDlMG~GNin`d}Z|Zyh~?in{$7V73HgZd3{sr>1Ve< zHOUp3$y2AQ)_y)~K56sj%_&(~TBf znKLTY)zvHg=2~6aRrX8fwJcilEFwKU zeP!tCuuD6OpO>7QE`NQE6R6pJ{5qr&rLkZ1w`rOS7_{PTMPX@J;Sy@zUh}i)#?6~g zUt99a+wrtIHO`nZqsI3AX;5zEYGqoua3Slb-=Lu@kO_;Dk}oasToJZ*)}6!`vG@1Y zg05efyY13a@5d)6tFMUJxyi;+Q1D`OBB*OwHF4TBwQ>$uzpAQV()+`f1|2+ll-146 z?WY82_(B9U_cKLb$~3Db@o-z>lM@pQN=jS;0w%=Ooqu?^J#clHZbVenp>yZ>zP`G8 zcyIOh4K+WDeCF9mK0iOd-DzQi)4~Ivo}Ol8*qnaeZK_r%s6BRRsdw^=3ky9wJStwk z@964sf?nCMWZ5z$ZEfz$%Y2)cFIPWv_H5wRtk6FnkIP%FzqvJATq|r1M{#knN!}fa z^7r@tp8vimKx0G3MWrpdx5cJSoA%?|?fi)|XLkPk`#ZaC`u6SSb$>p(pUqbDoz)_$ z9hPu=Tkfpyl|Mc_j9G3ZXIaFuHS22A%9WZiv9TYYPLEeoR#x`^>+9me+8n=HP%v;` z=fU8S$vyr=7dTJbmb*V{83xOPp9VL^!2$IJfq2QOb1-kyK|*oB48hGlOe zbYgZG9DiT&;Q`|;^ZdSBTeBZ;zhBqvwe-;T`*q#->;KDwuBn(lUA#}uwriek^`Vm| zIeDecjx@9LU)Y%JUi0asx`ai60;tb%-v0let-o?EE%5|ZWzWvdMty}lv)>dt|e!1S&;p>(3^!QFs(`9Cuq7lf{FK>U%^8I4> ze$ZCxFK=&)Ylp8p0@`z%aDZXP%$bRomUylgl@=5fl>sM;{5^a27!*G{6E1goTW&N9 z8{58566NLJV{Siw^hiKjy8HY6dikfPr?WHs`1LDm-u6wKnkG&Z1ogV&%!{6QoUP^O z=l7XwCECo+e{SN8*4EaAm7kxzxUi5J;Khgh;aS*@#DeA$H#v> z>ee?%Jj9|gb&iR%OUMk+M8l#QVF7^;^N&YFM<2d*>sRl&_(d+9pg?kTbj-N7$8wfw zcH6qx-G{DT{W^91?fv!k%Y0|IWnW*XsHev#DJkjU>FF30B&4IG!@zLz@+9 zzMaL-v*M~hKl4>lRR#Iq>bZ}%xAWImR~Z??*TEvaYV~c~@UhJ#JO{%3)zZ#;sRZSGTvcu-Mf65J){W<>cj`9UUI~f0RlJ3O<$g z_CEdJChhC1s~a|Ls(SkN{r>-TFJDjBjc$AJAmPf|Xz|zA*SjC>5-t4nz z_x%6&8#E5G%y)Ldw>ObG5gQm9@*0JLgM&c>9oA)UKpU4$-oDzJVO{>tB_m_Sv$ChB zrpmlNbMHuZ?Y6wTRy}gIQh$GcKYnj-wV;$#SKZ%V8)t9{1{xk0G*(j53dlE}8o0LV z>#G%Ud##T3O1E2;zDhVd%M^6{gpZHUgqbr}7K5&zoH%uAYvks%%w_L$Z){LJZaLLU zHEeBE>$|(V7Z*N0W>NFQ;Le>p0V{)4XUv)fI{PE@T z`AIi6B!b+2q*K^1>x#xYePt!BmLDg5TwGj1*Wj#+-QDIl*9z3Q1QjTDKc5KuPCX71 zNj*IcbW_QkIde9Yy^RW48zs6q{rs^WN#lT>MX77z_DWq|=3D*py@8R@p<7$CA3lHH zuI4*S!N^D`c$v>Z^ZPZ;nU|LxynbC=H+tKVb91dtPX^62O5KooSuN-8F454{VMiYw z?f!VT{QlmH)iNd-0#;>jI`Z!BQZz6SxOnlR)#7vpgM8_4?{UKRf1_lNOPgg&ebxsLQ02O5v=>Px# literal 63556 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 a`~rLje=pqdLYjerfx*+&&t;ucLK6T*NjlO1 -- GitLab From 78bb811f8ec7b057a9f13eacfd128625ac46bd04 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Mon, 26 Aug 2024 18:12:51 +0200 Subject: [PATCH 08/25] Proto: update changelog --- docs/protocols/beta.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/protocols/beta.rst b/docs/protocols/beta.rst index ed810b7e954e..74336b9f449e 100644 --- a/docs/protocols/beta.rst +++ b/docs/protocols/beta.rst @@ -45,12 +45,13 @@ Adaptive Issuance ----------------- - Added the Dynamic Maximum system, that changes the maximum issuance as a - function of the stake ratio. (MR :gl:`!13519`) + function of the stake ratio. (MR :gl:`!13519` :gl:`!14635`) - Changed the semantics of ``min-delegated-in-cycle`` used to compute baking rights to only consider the minimum in between blocks instead of formerly used intra-transactions minimum. (MR :gl:`!13945`) + Gas improvements ---------------- -- GitLab From 4b7aeb843131c617414fd1250efc10a9a1a1cdee Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Thu, 22 Aug 2024 12:09:36 +0200 Subject: [PATCH 09/25] Beta: Revert "Pair ticket under legacy flag" This reverts commit 6a7f272c. --- .../lib_protocol/script_ir_translator.ml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/proto_beta/lib_protocol/script_ir_translator.ml b/src/proto_beta/lib_protocol/script_ir_translator.ml index dbec7e647d0f..988d822de9db 100644 --- a/src/proto_beta/lib_protocol/script_ir_translator.ml +++ b/src/proto_beta/lib_protocol/script_ir_translator.ml @@ -2374,14 +2374,17 @@ let rec parse_data : _annot ) -> parse_ticket loc ticketer contents_type contents amount | Prim (_, D_Pair, _, _) -> - if legacy then - let*? ty = opened_ticket_type (location expr) t in - let+ ({destination; entrypoint = _}, (contents, amount)), ctxt = - non_terminal_recursion ctxt ty expr - in - ((destination, contents, amount), ctxt) - else tzfail @@ unexpected expr [] Constant_namespace [D_Ticket] - | _ -> tzfail @@ unexpected expr [] Constant_namespace [D_Ticket] + (* TODO: https://gitlab.com/tezos/tezos/-/issues/6833 + + In the future, this [D_Pair] constructor must + be allowed only when the legacy flag is set to true. *) + let*? ty = opened_ticket_type (location expr) t in + let+ ({destination; entrypoint = _}, (contents, amount)), ctxt = + non_terminal_recursion ctxt ty expr + in + ((destination, contents, amount), ctxt) + | _ -> + tzfail @@ unexpected expr [] Constant_namespace [D_Ticket; D_Pair] in match Ticket_amount.of_n amount with | Some amount -> ( -- GitLab From 0d0df55d3cfb94a60a95dcc44dc358a2c41ec48b Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Thu, 22 Aug 2024 12:09:50 +0200 Subject: [PATCH 10/25] Beta: Revert "enable legacy mode to support legacy ticket Pair representation" This reverts commit c96e4ddb. --- src/proto_beta/lib_protocol/sc_rollup_management_protocol.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_beta/lib_protocol/sc_rollup_management_protocol.ml b/src/proto_beta/lib_protocol/sc_rollup_management_protocol.ml index c5068e5547b8..8cec2b1c633d 100644 --- a/src/proto_beta/lib_protocol/sc_rollup_management_protocol.ml +++ b/src/proto_beta/lib_protocol/sc_rollup_management_protocol.ml @@ -76,7 +76,7 @@ let make_transaction ctxt ~parameters_ty ~unparsed_parameters ~destination let+ parameters, ctxt = Script_ir_translator.parse_data ctxt - ~elab_conf:Script_ir_translator_config.(make ~legacy:true ()) + ~elab_conf:Script_ir_translator_config.(make ~legacy:false ()) ~allow_forged_tickets:true ~allow_forged_lazy_storage_id:false parameters_ty -- GitLab From c5550bc439ba480abdd78a6a47508b1842c1a555 Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Thu, 22 Aug 2024 12:09:58 +0200 Subject: [PATCH 11/25] Beta: Revert "update tests to use new Ticket constructor" This reverts commit 28f7f7bc. --- src/proto_beta/lib_protocol/test/regression/test_logging.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/proto_beta/lib_protocol/test/regression/test_logging.ml b/src/proto_beta/lib_protocol/test/regression/test_logging.ml index 8c3869821ba4..364356769de3 100644 --- a/src/proto_beta/lib_protocol/test/regression/test_logging.ml +++ b/src/proto_beta/lib_protocol/test/regression/test_logging.ml @@ -382,11 +382,11 @@ let () = ~storage:"{}" "spawn_identities"; transaction - ~parameter:"Ticket \"KT1Ln1MPvHDJ1phLL8dNL4jrKF6Q1yQCBG1v\" nat 17 3" + ~parameter:"Pair \"KT1Ln1MPvHDJ1phLL8dNL4jrKF6Q1yQCBG1v\" 17 3" ~storage:"None" "ticket_join"; transaction - ~parameter:"Ticket \"KT1Ln1MPvHDJ1phLL8dNL4jrKF6Q1yQCBG1v\" nat 17 3" + ~parameter:"Pair \"KT1Ln1MPvHDJ1phLL8dNL4jrKF6Q1yQCBG1v\" 17 3" ~storage:"Unit" "ticket_split"; transaction ~parameter:"5" ~storage:"3" "view_toplevel_lib"; -- GitLab From 6f90a320359b9b23076cc008050a9e91af7786f6 Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Thu, 22 Aug 2024 12:10:03 +0200 Subject: [PATCH 12/25] Beta: Revert "update tests to succeed with new ticket constructor and fail with pair" This reverts commit 05050df9. --- .../michelson/test_ticket_direct_spending.ml | 51 +++++++------------ 1 file changed, 18 insertions(+), 33 deletions(-) diff --git a/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml b/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml index 67813391821a..ecae86703a64 100644 --- a/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml +++ b/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml @@ -147,39 +147,24 @@ let test_spending ~direct_ticket_spending_enable ~constructor () = (Destination.Contract implicit) block in - match constructor with - | Pair -> - let arg = sf "Pair %S Unit 1" boomerang_str in - let*! res = - call_contract ~source:implicit ~contract:consumer ~arg block - in - if direct_ticket_spending_enable then - Assert.proto_error ~loc:__LOC__ res (function - | Script_tc_errors.Invalid_primitive _ -> true - | _ -> false) - else - Assert.proto_error ~loc:__LOC__ res (function - | Script_interpreter.Bad_contract_parameter _ -> true - | _ -> false) - | Ticket -> - let arg = sf "Ticket %S unit Unit 1" boomerang_str in - if direct_ticket_spending_enable then - let* block = - call_contract ~source:implicit ~contract:consumer ~arg block - in - assert_ticket_balance - ~loc:__LOC__ - ~ticketer:boomerang - ~expected_balance:0 - (Destination.Contract implicit) - block - else - let*! res = - call_contract ~source:implicit ~contract:consumer ~arg block - in - Assert.proto_error ~loc:__LOC__ res (function - | Script_interpreter.Bad_contract_parameter _ -> true - | _ -> false) + let arg = + match constructor with + | Pair -> sf "Pair %S Unit 1" boomerang_str + | Ticket -> sf "Ticket %S unit Unit 1" boomerang_str + in + if direct_ticket_spending_enable then + let* block = call_contract ~source:implicit ~contract:consumer ~arg block in + assert_ticket_balance + ~loc:__LOC__ + ~ticketer:boomerang + ~expected_balance:0 + (Destination.Contract implicit) + block + else + let*! res = call_contract ~source:implicit ~contract:consumer ~arg block in + Assert.proto_error ~loc:__LOC__ res (function + | Script_interpreter.Bad_contract_parameter _ -> true + | _ -> false) let tests = [ -- GitLab From 61e136871f67b9d0fb5cd5796ed0bc9cf40e36ac Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Tue, 20 Aug 2024 09:00:43 +0200 Subject: [PATCH 13/25] Tezt: Pair notation is not legacy in Beta anymore --- tezt/tests/tickets.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tezt/tests/tickets.ml b/tezt/tests/tickets.ml index 225712a09706..a780a89ac21c 100644 --- a/tezt/tests/tickets.ml +++ b/tezt/tests/tickets.ml @@ -350,7 +350,7 @@ let test_direct_transfer_tickets_from_implicit_account_to_originated_with_pair_c ~__FILE__ ~title:"Send Pair tickets from implicit account to originated directly" ~tags:["client"; "michelson"; "implicit"; "ticket"; "originated"] - ~supports:(Protocol.From_protocol 21) + ~supports:(Protocol.From_protocol 22) @@ fun protocol -> test_direct_transfer_tickets_from_implicit_account_to_originated protocol @@ -554,7 +554,7 @@ let test_direct_transfer_tickets_from_implicit_account_to_originated_complex_wit "Send Pair tickets (with complex parameters) from implicit account to \ originated directly" ~tags:["client"; "michelson"; "implicit"; "ticket"; "originated"] - ~supports:(Protocol.From_protocol 21) + ~supports:(Protocol.From_protocol 22) @@ fun protocol -> test_direct_transfer_tickets_from_implicit_account_to_originated_complex protocol -- GitLab From daa98de303973e27e6a890723463ebdcdcc2bf17 Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Thu, 22 Aug 2024 12:11:20 +0200 Subject: [PATCH 14/25] Beta: Revert "handle unparsing of D_Ticket constructor" This reverts commit 09970445. --- .../lib_protocol/script_ir_unparser.ml | 35 +++++-------------- 1 file changed, 9 insertions(+), 26 deletions(-) diff --git a/src/proto_beta/lib_protocol/script_ir_unparser.ml b/src/proto_beta/lib_protocol/script_ir_unparser.ml index e7cad561e77d..2a911dd3b1f0 100644 --- a/src/proto_beta/lib_protocol/script_ir_unparser.ml +++ b/src/proto_beta/lib_protocol/script_ir_unparser.ml @@ -2,7 +2,6 @@ (* *) (* Open Source License *) (* Copyright (c) 2022 Nomadic Labs *) -(* Copyright (c) 2024 Marigold, *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) @@ -565,33 +564,17 @@ module Data_unparser (P : MICHELSON_PARSER) = struct items.elements in (Micheline.Seq (loc, List.rev items), ctxt) - | Ticket_t (t, _), {ticketer; contents; amount} -> ( + | Ticket_t (t, _), {ticketer; contents; amount} -> + (* ideally we would like to allow a little overhead here because it is only used for unparsing *) + let*? t = P.opened_ticket_type loc t in let destination : Destination.t = Contract ticketer in let addr = {destination; entrypoint = Entrypoint.default} in - let amount = (amount :> Script_int.n Script_int.num) in - match mode with - | Optimized_legacy -> - let*? t = P.opened_ticket_type loc t in - (unparse_data_rec [@tailcall]) - ctxt - ~stack_depth - mode - t - (addr, (contents, amount)) - | Optimized | Readable -> - let*? ticketer, ctxt = unparse_address ~loc ctxt mode addr in - let* contents, ctxt = - non_terminal_recursion ctxt mode t contents - in - let*? amount, ctxt = unparse_nat ~loc ctxt amount in - let*? contents_type, ctxt = unparse_ty ~loc ctxt t in - return - ( Prim - ( loc, - D_Ticket, - [ticketer; contents_type; contents; amount], - [] ), - ctxt )) + (unparse_data_rec [@tailcall]) + ctxt + ~stack_depth + mode + t + (addr, (contents, (amount :> Script_int.n Script_int.num))) | Set_t (t, _), set -> let+ items, ctxt = List.fold_left_es -- GitLab From 4b354482e1dde349e5d31f68a440d99ad669f652 Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Thu, 22 Aug 2024 12:11:28 +0200 Subject: [PATCH 15/25] Beta: Revert "update ticket storage balances" This reverts commit 64b3bbcd. --- .../michelson/test_ticket_balance.ml | 51 +++++++++---------- 1 file changed, 25 insertions(+), 26 deletions(-) diff --git a/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_balance.ml b/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_balance.ml index f33b53d4e242..89ddd8b88855 100644 --- a/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_balance.ml +++ b/src/proto_beta/lib_protocol/test/integration/michelson/test_ticket_balance.ml @@ -2,7 +2,6 @@ (* *) (* Open Source License *) (* Copyright (c) 2022 Trili Tech, *) -(* Copyright (c) 2024 Marigold, *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) @@ -1661,12 +1660,12 @@ let test_storage_for_create_and_remove_tickets () = (* Add 1000 units of "A" tickets. *) let* block = add block 1000 "A" in (* After adding one block the new used and paid storage grows to accommodate - for the new ticket. The size is 141 + 48 (size of ticket) = 189. *) + for the new ticket. The size is 141 + 40 (size of ticket) = 181. *) let* () = - assert_used_contract_storage ~loc:__LOC__ block ticket_manager 189 + assert_used_contract_storage ~loc:__LOC__ block ticket_manager 181 in let* () = - assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 189 + assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 181 in (* The size of used and paid-for ticket storage is 67 bytes. (65 for hash and 2 for amount). *) @@ -1674,25 +1673,25 @@ let test_storage_for_create_and_remove_tickets () = let* () = assert_paid_ticket_storage ~loc:__LOC__ block 67 in (* Add 1000 units of "B" tickets. *) let* block = add block 1000 "B" in - (* The new used and paid for contract storage grow to 189 + 48 = 237. *) + (* The new used and paid for contract storage grow to 155 + 40 = 195. *) let* () = - assert_used_contract_storage ~loc:__LOC__ block ticket_manager 237 + assert_used_contract_storage ~loc:__LOC__ block ticket_manager 221 in let* () = - assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 237 + assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 221 in (* The new used and paid for ticket storage doubles (2 * 67 = 134). *) let* () = assert_used_ticket_storage ~loc:__LOC__ block 134 in let* () = assert_paid_ticket_storage ~loc:__LOC__ block 134 in (* Clear all tickets. *) let* block = clear block in - (* We're back to 115 base-line for the used contract storage and keep 237 for + (* We're back to 115 base-line for the used contract storage and keep 195 for paid. *) let* () = assert_used_contract_storage ~loc:__LOC__ block ticket_manager 141 in let* () = - assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 237 + assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 221 in (* Since the ticket-table is empty it does not take up any space. However, we've already paid for 134 bytes. *) @@ -1700,14 +1699,14 @@ let test_storage_for_create_and_remove_tickets () = let* () = assert_paid_ticket_storage ~loc:__LOC__ block 134 in (* Add one unit of "C" tickets. *) let* block = add block 1 "C" in - (* The new used storage is 141 + 47 (size of ticket) = 188. The size is 47 - rather than 48 because it carries a smaller amount payload. *) + (* The new used storage is 141 + 39 (size of ticket) = 180. The size is 39 + rather than 40 because it carries a smaller amount payload. *) let* () = - assert_used_contract_storage ~loc:__LOC__ block ticket_manager 188 + assert_used_contract_storage ~loc:__LOC__ block ticket_manager 180 in - (* We still have paid for 237 contract storage. *) + (* We still have paid for 221 contract storage. *) let* () = - assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 237 + assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 221 in (* There is one row in the ticket table with size 65 (for the hash) + 1 (for the amount) = 65 bytes. *) @@ -1716,13 +1715,13 @@ let test_storage_for_create_and_remove_tickets () = let* () = assert_paid_ticket_storage ~loc:__LOC__ block 134 in (* Add yet another "C" ticket. *) let* block = add block 1 "C" in - (* The new used storage is 188 + 47 (size of ticket) = 235. *) + (* The new used storage is 180 + 39 (size of ticket) = 219. *) let* () = - assert_used_contract_storage ~loc:__LOC__ block ticket_manager 235 + assert_used_contract_storage ~loc:__LOC__ block ticket_manager 219 in - (* We still have paid for 237 contract storage. *) + (* We still have paid for 221 contract storage. *) let* () = - assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 237 + assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 221 in (* There is still only one row in the ticket table with size 66. *) let* () = assert_used_ticket_storage ~loc:__LOC__ block 66 in @@ -1730,26 +1729,26 @@ let test_storage_for_create_and_remove_tickets () = let* () = assert_paid_ticket_storage ~loc:__LOC__ block 134 in (* Add a "D" ticket. *) let* block = add block 1 "D" in - (* The new used storage is 235 + 47 (size of ticket) = 282. *) + (* The new used storage is 219 + 39 (size of ticket) = 258. *) let* () = - assert_used_contract_storage ~loc:__LOC__ block ticket_manager 282 + assert_used_contract_storage ~loc:__LOC__ block ticket_manager 258 in - (* The paid storage also increases to 282. *) + (* The paid storage also increases to 258. *) let* () = - assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 282 + assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 258 in (* There are now two rows in the ticket table: 2 x 66 = 132 *) let* () = assert_used_ticket_storage ~loc:__LOC__ block 132 in (* And we've still paid for 134 bytes. *) let* () = assert_paid_ticket_storage ~loc:__LOC__ block 134 in let* block = add block 1 "E" in - (* The new used storage is 282 + 47 (size of ticket) = 297. *) + (* The new used storage is 258 + 39 (size of ticket) = 297. *) let* () = - assert_used_contract_storage ~loc:__LOC__ block ticket_manager 329 + assert_used_contract_storage ~loc:__LOC__ block ticket_manager 297 in - (* The paid storage also increases to 329. *) + (* The paid storage also increases to 297. *) let* () = - assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 329 + assert_paid_contract_storage ~loc:__LOC__ block ticket_manager 297 in (* There are now three rows in the ticket table: 3 x 66 = 198. *) let* () = assert_used_ticket_storage ~loc:__LOC__ block 198 in -- GitLab From 22b54de66fd214b9359db58f7fe1ab51ec71332f Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Thu, 22 Aug 2024 12:39:25 +0200 Subject: [PATCH 16/25] Tezt: Reset regressions --- .../expected/test_logging.ml/ticket_join.out | 32 +-- .../expected/test_logging.ml/ticket_split.out | 148 ++++++------ .../Beta-- Ticket updates in receipt.out | 54 ++--- .../Beta-- Create and remove tickets.out | 62 ++--- ...rt-contract rollup should succeed with.out | 12 +- ...rom implicit accounts must be rejected.out | 6 +- ...ameters) from implicit account to orig.out | 35 --- ...mplicit account to originated directly.out | 21 -- ...inated contracts and implicit accounts.out | 34 +-- ... implicit accounts with some Tez along.out | 8 +- ...icit accounts with the wrong type must.out | 6 +- ...ts from contracts to implicit accounts.out | 6 +- .../Beta-- Send tickets in bigmap.out | 226 +++++++++--------- ...r (with complex parameters) from impli.out | 22 +- ...r from implicit account to originated .out | 18 +- ... contract storage to implicit accounts.out | 36 +-- ...rom implicit accounts must be rejected.out | 6 +- ...rt-contract rollup should succeed with.out | 32 +-- ...accounts or originated contracts accep.out | 12 +- ...rom implicit accounts must be rejected.out | 6 +- ... tx kernel should run e2e (kernel_e2e).out | 46 ++-- .../tzt_regression.ml/Beta-- Run TZT.out | 2 +- 22 files changed, 387 insertions(+), 443 deletions(-) delete mode 100644 tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets (with complex parameters) from implicit account to orig.out delete mode 100644 tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets from implicit account to originated directly.out diff --git a/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out b/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out index 4770d2a5ced8..9b2173a0c4f3 100644 --- a/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out +++ b/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out @@ -1,42 +1,42 @@ trace - UNPAIR (interp) @ location: 10 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 3) None) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 3) None) ] - UNPAIR (entry) @ location: 10 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 3) None) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 3) None) ] - log/SWAP (exit) @ location: 10 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) + [ (Pair "[CONTRACT_HASH]" 17 3) None ] - SWAP (entry) @ location: 11 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) + [ (Pair "[CONTRACT_HASH]" 17 3) None ] - log/IF_NONE (exit) @ location: 11 [ None - (Ticket "[CONTRACT_HASH]" nat 17 3) ] + (Pair "[CONTRACT_HASH]" 17 3) ] - IF_NONE (entry) @ location: 12 [ None - (Ticket "[CONTRACT_HASH]" nat 17 3) ] + (Pair "[CONTRACT_HASH]" 17 3) ] - log/[halt] (exit) @ location: 12 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) ] + [ (Pair "[CONTRACT_HASH]" 17 3) ] - [halt] (entry) @ location: 24 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) ] + [ (Pair "[CONTRACT_HASH]" 17 3) ] - control: KCons - log/SOME (exit) @ location: 12 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) ] + [ (Pair "[CONTRACT_HASH]" 17 3) ] - SOME (entry) @ location: 24 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) ] + [ (Pair "[CONTRACT_HASH]" 17 3) ] - log/NIL (exit) @ location: 24 - [ (Some (Ticket "[CONTRACT_HASH]" nat 17 3)) ] + [ (Some (Pair "[CONTRACT_HASH]" 17 3)) ] - NIL (entry) @ location: 25 - [ (Some (Ticket "[CONTRACT_HASH]" nat 17 3)) ] + [ (Some (Pair "[CONTRACT_HASH]" 17 3)) ] - log/PAIR (exit) @ location: 25 [ {} - (Some (Ticket "[CONTRACT_HASH]" nat 17 3)) ] + (Some (Pair "[CONTRACT_HASH]" 17 3)) ] - PAIR (entry) @ location: 27 [ {} - (Some (Ticket "[CONTRACT_HASH]" nat 17 3)) ] + (Some (Pair "[CONTRACT_HASH]" 17 3)) ] - log/[halt] (exit) @ location: 27 - [ (Pair {} (Some (Ticket "[CONTRACT_HASH]" nat 17 3))) ] + [ (Pair {} (Some (Pair "[CONTRACT_HASH]" 17 3))) ] - [halt] (entry) @ location: 9 - [ (Pair {} (Some (Ticket "[CONTRACT_HASH]" nat 17 3))) ] + [ (Pair {} (Some (Pair "[CONTRACT_HASH]" 17 3))) ] - control: KNil diff --git a/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out b/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out index 5e90aa81ca71..ae449fe91b48 100644 --- a/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out +++ b/src/proto_beta/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out @@ -1,164 +1,164 @@ trace - CAR (interp) @ location: 8 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 3) Unit) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 3) Unit) ] - CAR (entry) @ location: 8 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 3) Unit) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 3) Unit) ] - log/PUSH (exit) @ location: 8 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) ] + [ (Pair "[CONTRACT_HASH]" 17 3) ] - PUSH (entry) @ location: 9 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) ] + [ (Pair "[CONTRACT_HASH]" 17 3) ] - log/SWAP (exit) @ location: 9 [ (Pair 1 2) - (Ticket "[CONTRACT_HASH]" nat 17 3) ] + (Pair "[CONTRACT_HASH]" 17 3) ] - SWAP (entry) @ location: 16 [ (Pair 1 2) - (Ticket "[CONTRACT_HASH]" nat 17 3) ] + (Pair "[CONTRACT_HASH]" 17 3) ] - log/SPLIT_TICKET (exit) @ location: 16 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) + [ (Pair "[CONTRACT_HASH]" 17 3) (Pair 1 2) ] - SPLIT_TICKET (entry) @ location: 17 - [ (Ticket "[CONTRACT_HASH]" nat 17 3) + [ (Pair "[CONTRACT_HASH]" 17 3) (Pair 1 2) ] - log/IF_NONE (exit) @ location: 17 - [ (Some (Pair (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2))) ] + [ (Some (Pair (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2))) ] - IF_NONE (entry) @ location: 19 - [ (Some (Pair (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2))) ] + [ (Some (Pair (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2))) ] - log/[halt] (exit) @ location: 19 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2)) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2)) ] - [halt] (entry) @ location: 25 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2)) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2)) ] - control: KCons - log/UNPAIR (exit) @ location: 19 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2)) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2)) ] - UNPAIR (entry) @ location: 25 - [ (Pair (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2)) ] + [ (Pair (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2)) ] - log/READ_TICKET (exit) @ location: 25 - [ (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - READ_TICKET (entry) @ location: 26 - [ (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/CDR (exit) @ location: 26 [ (Pair "[CONTRACT_HASH]" 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - CDR (entry) @ location: 28 [ (Pair "[CONTRACT_HASH]" 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/CDR (exit) @ location: 28 [ (Pair 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - CDR (entry) @ location: 29 [ (Pair 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/PUSH (exit) @ location: 29 [ 1 - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - PUSH (entry) @ location: 30 [ 1 - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/COMPARE (exit) @ location: 30 [ 1 1 - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - COMPARE (entry) @ location: 35 [ 1 1 - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/EQ (exit) @ location: 35 [ 0 - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - EQ (entry) @ location: 36 [ 0 - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/IF (exit) @ location: 36 [ True - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - IF (entry) @ location: 37 [ True - (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/[halt] (exit) @ location: 37 - [ (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - [halt] (entry) @ location: 43 - [ (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - control: KCons - log/DROP (exit) @ location: 37 - [ (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - DROP (entry) @ location: 43 - [ (Ticket "[CONTRACT_HASH]" nat 17 1) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 1) + (Pair "[CONTRACT_HASH]" 17 2) ] - log/READ_TICKET (exit) @ location: 43 - [ (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 2) ] - READ_TICKET (entry) @ location: 44 - [ (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 2) ] - log/CDR (exit) @ location: 44 [ (Pair "[CONTRACT_HASH]" 17 2) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - CDR (entry) @ location: 46 [ (Pair "[CONTRACT_HASH]" 17 2) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - log/CDR (exit) @ location: 46 [ (Pair 17 2) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - CDR (entry) @ location: 47 [ (Pair 17 2) - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - log/PUSH (exit) @ location: 47 [ 2 - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - PUSH (entry) @ location: 48 [ 2 - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - log/COMPARE (exit) @ location: 48 [ 2 2 - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - COMPARE (entry) @ location: 53 [ 2 2 - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - log/EQ (exit) @ location: 53 [ 0 - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - EQ (entry) @ location: 54 [ 0 - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - log/IF (exit) @ location: 54 [ True - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - IF (entry) @ location: 55 [ True - (Ticket "[CONTRACT_HASH]" nat 17 2) ] + (Pair "[CONTRACT_HASH]" 17 2) ] - log/[halt] (exit) @ location: 55 - [ (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 2) ] - [halt] (entry) @ location: 61 - [ (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 2) ] - control: KCons - log/DROP (exit) @ location: 55 - [ (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 2) ] - DROP (entry) @ location: 61 - [ (Ticket "[CONTRACT_HASH]" nat 17 2) ] + [ (Pair "[CONTRACT_HASH]" 17 2) ] - log/UNIT (exit) @ location: 61 [ ] - UNIT (entry) @ location: 62 diff --git a/tezt/tests/expected/ticket_receipt_and_rpc.ml/Beta-- Ticket updates in receipt.out b/tezt/tests/expected/ticket_receipt_and_rpc.ml/Beta-- Ticket updates in receipt.out index 2cd873964cce..3e1bc9c2e94a 100644 --- a/tezt/tests/expected/ticket_receipt_and_rpc.ml/Beta-- Ticket updates in receipt.out +++ b/tezt/tests/expected/ticket_receipt_and_rpc.ml/Beta-- Ticket updates in receipt.out @@ -1,8 +1,8 @@ ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg '(Pair "[CONTRACT_HASH]" "[CONTRACT_HASH]")' Node is bootstrapped. -Estimated gas: 7897.809 units (will add 100 for safety) -Estimated storage: 515 bytes added (will add 20 for safety) +Estimated gas: 7899.569 units (will add 100 for safety) +Estimated storage: 475 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -14,8 +14,8 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.001138 Expected counter: 1 - Gas limit: 7998 - Storage limit: 535 bytes + Gas limit: 8000 + Storage limit: 495 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.001138 payload fees(the block proposer) ....... +ꜩ0.001138 @@ -26,15 +26,15 @@ This sequence of operations was run: Parameter: (Pair "[CONTRACT_HASH]" "[CONTRACT_HASH]") This transaction was successfully applied Updated storage: - { Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "red" 1 ; - Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "green" 1 ; - Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "green" 1 } - Storage size: 549 bytes - Paid storage size diff: 349 bytes - Consumed gas: 3191.920 + { Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "red" 1) ; + Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "green" 1) ; + Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "green" 1) } + Storage size: 525 bytes + Paid storage size diff: 325 bytes + Consumed gas: 3193.024 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.08725 - storage fees ........................... +ꜩ0.08725 + [PUBLIC_KEY_HASH] ... -ꜩ0.08125 + storage fees ........................... +ꜩ0.08125 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -51,18 +51,18 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [CONTRACT_HASH] - Parameter: (Pair (Pair (Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "blue" 1) - (Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "blue" 1)) + Parameter: (Pair (Pair (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1)) + (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1))) 0x0192ce5ac8f542c49e64c7b6c73c445515ddc20f9400) This transaction was successfully applied Updated storage: - (Some (Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "blue" 1)) - Storage size: 177 bytes - Paid storage size diff: 116 bytes - Consumed gas: 2817.571 + (Some (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1))) + Storage size: 169 bytes + Paid storage size diff: 108 bytes + Consumed gas: 2818.019 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.029 - storage fees ........................... +ꜩ0.029 + [PUBLIC_KEY_HASH] ... -ꜩ0.027 + storage fees ........................... +ꜩ0.027 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -73,16 +73,16 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [CONTRACT_HASH] - Parameter: (Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "blue" 1) + Parameter: (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1)) This transaction was successfully applied Updated storage: - (Some (Ticket 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 string "blue" 1)) - Storage size: 96 bytes - Paid storage size diff: 50 bytes - Consumed gas: 1889.489 + (Some (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1))) + Storage size: 88 bytes + Paid storage size diff: 42 bytes + Consumed gas: 1889.697 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0125 - storage fees ........................... +ꜩ0.0125 + [PUBLIC_KEY_HASH] ... -ꜩ0.0105 + storage fees ........................... +ꜩ0.0105 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Beta-- Create and remove tickets.out b/tezt/tests/expected/tickets.ml/Beta-- Create and remove tickets.out index 502325f00754..fb805354308b 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Create and remove tickets.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Create and remove tickets.out @@ -58,8 +58,8 @@ Contract memorized as add_clear_tickets. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "A"' Node is bootstrapped. -Estimated gas: 1751.443 units (will add 100 for safety) -Estimated storage: 113 bytes added (will add 20 for safety) +Estimated gas: 1751.651 units (will add 100 for safety) +Estimated storage: 105 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -69,13 +69,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000454 + Fee to the baker: ꜩ0.000453 Expected counter: 1 Gas limit: 1852 - Storage limit: 133 bytes + Storage limit: 125 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000454 - payload fees(the block proposer) ....... +ꜩ0.000454 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Transaction: Amount: ꜩ0 From: [PUBLIC_KEY_HASH] @@ -84,13 +84,13 @@ This sequence of operations was run: Parameter: (Pair 1 "A") This transaction was successfully applied Updated storage: - { Ticket 0x01435e1f410af86271d7c8c3c98a8708157a45269200 string "A" 1 } - Storage size: 188 bytes - Paid storage size diff: 113 bytes - Consumed gas: 1752.012 + { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "A" 1) } + Storage size: 180 bytes + Paid storage size diff: 105 bytes + Consumed gas: 1752.186 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.02825 - storage fees ........................... +ꜩ0.02825 + [PUBLIC_KEY_HASH] ... -ꜩ0.02625 + storage fees ........................... +ꜩ0.02625 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -101,7 +101,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint clear --arg Unit Node is bootstrapped. -Estimated gas: 1941.576 units (will add 100 for safety) +Estimated gas: 1941.323 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -127,7 +127,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 141 bytes - Consumed gas: 1942.112 + Consumed gas: 1941.859 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -138,7 +138,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "B"' Node is bootstrapped. -Estimated gas: 1751.443 units (will add 100 for safety) +Estimated gas: 1751.651 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -164,9 +164,9 @@ This sequence of operations was run: Parameter: (Pair 1 "B") This transaction was successfully applied Updated storage: - { Ticket 0x01435e1f410af86271d7c8c3c98a8708157a45269200 string "B" 1 } - Storage size: 188 bytes - Consumed gas: 1751.978 + { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "B" 1) } + Storage size: 180 bytes + Consumed gas: 1752.186 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -177,8 +177,8 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "C"' Node is bootstrapped. -Estimated gas: 2433.498 units (will add 100 for safety) -Estimated storage: 113 bytes added (will add 20 for safety) +Estimated gas: 2433.661 units (will add 100 for safety) +Estimated storage: 105 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -188,13 +188,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000522 + Fee to the baker: ꜩ0.000521 Expected counter: 4 Gas limit: 2534 - Storage limit: 133 bytes + Storage limit: 125 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000522 - payload fees(the block proposer) ....... +ꜩ0.000522 + [PUBLIC_KEY_HASH] ... -ꜩ0.000521 + payload fees(the block proposer) ....... +ꜩ0.000521 Transaction: Amount: ꜩ0 From: [PUBLIC_KEY_HASH] @@ -203,14 +203,14 @@ This sequence of operations was run: Parameter: (Pair 1 "C") This transaction was successfully applied Updated storage: - { Ticket 0x01435e1f410af86271d7c8c3c98a8708157a45269200 string "C" 1 ; - Ticket 0x01435e1f410af86271d7c8c3c98a8708157a45269200 string "B" 1 } - Storage size: 235 bytes - Paid storage size diff: 113 bytes - Consumed gas: 2434.067 + { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "C" 1) ; + Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "B" 1) } + Storage size: 219 bytes + Paid storage size diff: 105 bytes + Consumed gas: 2434.196 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.02825 - storage fees ........................... +ꜩ0.02825 + [PUBLIC_KEY_HASH] ... -ꜩ0.02625 + storage fees ........................... +ꜩ0.02625 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Beta-- Minting then sending tickets to smart-contract rollup should succeed with.out b/tezt/tests/expected/tickets.ml/Beta-- Minting then sending tickets to smart-contract rollup should succeed with.out index 30abebb16c59..0b5df1b13f4a 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Minting then sending tickets to smart-contract rollup should succeed with.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Minting then sending tickets to smart-contract rollup should succeed with.out @@ -1,7 +1,7 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[SMART_ROLLUP_HASH]"' Node is bootstrapped. -Estimated gas: 2783.794 units (will add 100 for safety) +Estimated gas: 2784.256 units (will add 100 for safety) Estimated storage: 132 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000584 Expected counter: 3 - Gas limit: 2884 + Gas limit: 2885 Storage limit: 152 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000584 @@ -28,7 +28,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 197 bytes Paid storage size diff: 132 bytes - Consumed gas: 2673.811 + Consumed gas: 2674.291 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.033 storage fees ........................... +ꜩ0.033 @@ -37,10 +37,10 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [SMART_ROLLUP_HASH] - Parameter: { Ticket 0x01f6719dc3bd86b5c531d6551553c467a31a54717800 string "Ticket2" 1 ; - Ticket 0x01f6719dc3bd86b5c531d6551553c467a31a54717800 string "Ticket" 1 } + Parameter: { Pair 0x01f6719dc3bd86b5c531d6551553c467a31a54717800 (Pair "Ticket2" 1) ; + Pair 0x01f6719dc3bd86b5c531d6551553c467a31a54717800 (Pair "Ticket" 1) } This transaction was successfully applied - Consumed gas: 109.950 + Consumed gas: 109.932 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Beta-- Overdrafting ticket from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Beta-- Overdrafting ticket from implicit accounts must be rejected.out index 8486ecaa1280..fbda5ce5a18b 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Overdrafting ticket from implicit accounts must be rejected.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Overdrafting ticket from implicit accounts must be rejected.out @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.410 units (will add 100 for safety) +Estimated gas: 1858.650 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.547 + Consumed gas: 1758.787 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -96,7 +96,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets (with complex parameters) from implicit account to orig.out b/tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets (with complex parameters) from implicit account to orig.out deleted file mode 100644 index f6fbf24f8469..000000000000 --- a/tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets (with complex parameters) from implicit account to orig.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint store --arg 'Pair 99 {Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket1" 1)) ; Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket2" 2))}' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 4 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: store - Parameter: (Pair 99 - { Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket1" 1)) ; - Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket2" 2)) }) - This operation FAILED. - -At (unshown) location 0, value - (Pair 99 - { Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket1" 1)) ; - Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket2" 2)) }) -is invalid for type pair int (list (pair string (ticket string))). -At (unshown) location 2, value - { Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket1" 1)) ; - Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket2" 2)) } -is invalid for type list (pair string (ticket string)). -At (unshown) location 10, value - (Pair "garbage" (Pair "[CONTRACT_HASH]" (Pair "Ticket2" 2))) -is invalid for type pair string (ticket string). -At (unshown) location 12, invalid primitive Pair, only Ticket can be used here. -Fatal error: - transfer simulation failed diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets from implicit account to originated directly.out b/tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets from implicit account to originated directly.out deleted file mode 100644 index 5e642b7ffed4..000000000000 --- a/tezt/tests/expected/tickets.ml/Beta-- Send Pair tickets from implicit account to originated directly.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint save --arg 'Pair "[CONTRACT_HASH]" (Pair "Ticket" 1)' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 4 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: save - Parameter: (Pair "[CONTRACT_HASH]" (Pair "Ticket" 1)) - This operation FAILED. - -At (unshown) location 0, invalid primitive Pair, only Ticket can be used here. -Fatal error: - transfer simulation failed diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send tickets between originated contracts and implicit accounts.out b/tezt/tests/expected/tickets.ml/Beta-- Send tickets between originated contracts and implicit accounts.out index 923705a237eb..6b8e235c5ded 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Send tickets between originated contracts and implicit accounts.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Send tickets between originated contracts and implicit accounts.out @@ -163,7 +163,7 @@ Contract memorized as tickets_blackhole. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 3' Node is bootstrapped. -Estimated gas: 1858.410 units (will add 100 for safety) +Estimated gas: 1858.650 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -190,7 +190,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.547 + Consumed gas: 1758.787 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -199,7 +199,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 3) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 3)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: @@ -263,8 +263,8 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 1 tickets from bootstrap2 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 Node is bootstrapped. -Estimated gas: 3206.395 units (will add 100 for safety) -Estimated storage: 118 bytes added (will add 20 for safety) +Estimated gas: 3206.843 units (will add 100 for safety) +Estimated storage: 110 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -277,7 +277,7 @@ This sequence of operations was run: Fee to the baker: ꜩ0.00063 Expected counter: 1 Gas limit: 3307 - Storage limit: 138 bytes + Storage limit: 130 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00063 payload fees(the block proposer) ....... +ꜩ0.00063 @@ -297,7 +297,7 @@ This sequence of operations was run: Content: "Ticket" Account updates: [PUBLIC_KEY_HASH] ... -1 - Consumed gas: 1296.312 + Consumed gas: 1296.552 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -307,16 +307,16 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] To: [CONTRACT_HASH] Entrypoint: save - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Updated storage: - { Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1 } - Storage size: 246 bytes - Paid storage size diff: 52 bytes - Consumed gas: 1910.651 + { Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1) } + Storage size: 238 bytes + Paid storage size diff: 44 bytes + Consumed gas: 1910.859 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.013 - storage fees ........................... +ꜩ0.013 + [PUBLIC_KEY_HASH] ... -ꜩ0.011 + storage fees ........................... +ꜩ0.011 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -333,7 +333,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 4716.903 units (will add 100 for safety) +Estimated gas: 4716.890 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -360,7 +360,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 194 bytes - Consumed gas: 2864.316 + Consumed gas: 2864.303 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -373,7 +373,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] To: [CONTRACT_HASH] Entrypoint: ticket - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Updated storage: Unit Storage size: 51 bytes diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with some Tez along.out b/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with some Tez along.out index 7cec27e2a650..ae7d4d6f731b 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with some Tez along.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with some Tez along.out @@ -61,7 +61,7 @@ Contract memorized as tickets_send_with_tez. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[PUBLIC_KEY_HASH]"' Node is bootstrapped. -Estimated gas: 1856.892 units (will add 100 for safety) +Estimated gas: 1857.132 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -74,7 +74,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00049 Expected counter: 2 - Gas limit: 1957 + Gas limit: 1958 Storage limit: 86 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00049 @@ -88,7 +88,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 154 bytes Paid storage size diff: 66 bytes - Consumed gas: 1757.030 + Consumed gas: 1757.270 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -97,7 +97,7 @@ This sequence of operations was run: Amount: ꜩ0.000001 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x017c8454eff9ad796cd8baba365d2592ad1b60efb100 string "Ticket" 1) + Parameter: (Pair 0x017c8454eff9ad796cd8baba365d2592ad1b60efb100 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Balance updates: diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with the wrong type must.out b/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with the wrong type must.out index 8bce47b091d5..5d919fc8d60f 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with the wrong type must.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts with the wrong type must.out @@ -109,7 +109,7 @@ Contract memorized as tickets_list_blackhole. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 4063.615 units (will add 100 for safety) +Estimated gas: 4063.855 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -136,7 +136,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 145 bytes Paid storage size diff: 66 bytes - Consumed gas: 2211.011 + Consumed gas: 2211.251 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -145,7 +145,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [CONTRACT_HASH] - Parameter: { Ticket 0x011213b3979289bef70dc1d1a4fb7574f306bf7f2400 string "Ticket" 1 } + Parameter: { Pair 0x011213b3979289bef70dc1d1a4fb7574f306bf7f2400 (Pair "Ticket" 1) } This transaction was successfully applied Updated storage: Unit Storage size: 42 bytes diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts.out b/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts.out index 5813cffa968b..4c081c37cc6d 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Send tickets from contracts to implicit accounts.out @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.410 units (will add 100 for safety) +Estimated gas: 1858.650 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.547 + Consumed gas: 1758.787 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -96,7 +96,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send tickets in bigmap.out b/tezt/tests/expected/tickets.ml/Beta-- Send tickets in bigmap.out index 83bc41409e10..74ef597a6ef7 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Send tickets in bigmap.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Send tickets in bigmap.out @@ -137,8 +137,8 @@ Contract memorized as send_tickets_in_big_map. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 30 --storage-limit 1000000 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 98994.469 units (will add 100 for safety) -Estimated storage: 11567 bytes added (will add 20 for safety) +Estimated gas: 98835.369 units (will add 100 for safety) +Estimated storage: 10767 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -148,13 +148,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.010206 + Fee to the baker: ꜩ0.01019 Expected counter: 1 - Gas limit: 99095 - Storage limit: 11587 bytes + Gas limit: 98936 + Storage limit: 10787 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.010206 - payload fees(the block proposer) ....... +ꜩ0.010206 + [PUBLIC_KEY_HASH] ... -ꜩ0.01019 + payload fees(the block proposer) ....... +ꜩ0.01019 Transaction: Amount: ꜩ0 From: [PUBLIC_KEY_HASH] @@ -164,109 +164,109 @@ This sequence of operations was run: Updated storage: Unit Updated big_maps: New temp(1) of type (big_map int (ticket string)) - Set temp(1)[22] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[48] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[20] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[67] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[30] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[33] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[42] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[13] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[50] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[84] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[44] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[41] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[4] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[73] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[5] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[28] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[19] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[9] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[86] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[76] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[8] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[97] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[80] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[45] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[87] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[1] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[26] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[38] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[65] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[99] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[69] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[2] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[81] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[82] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[64] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[92] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[90] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[98] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[37] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[66] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[32] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[71] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[51] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[56] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[14] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[12] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[85] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[47] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[74] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[18] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[10] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[35] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[96] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[27] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[77] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[62] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[58] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[25] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[94] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[60] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[7] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[53] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[11] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[17] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[83] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[72] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[6] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[88] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[75] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[3] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[70] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[52] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[95] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[68] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[78] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[23] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[79] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[59] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[100] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[24] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[21] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[49] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[93] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[39] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[63] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[55] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[15] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[16] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[31] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[43] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[29] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[54] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[89] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[36] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[46] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[91] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[61] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[34] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[57] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) - Set temp(1)[40] to (Ticket 0x010d30dc625f57274f300abc4af284934bc05fc46c00 string "BLUE" 1) + Set temp(1)[22] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[48] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[20] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[67] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[30] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[33] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[42] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[13] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[50] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[84] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[44] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[41] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[4] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[73] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[5] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[28] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[19] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[9] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[86] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[76] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[8] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[97] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[80] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[45] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[87] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[1] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[26] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[38] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[65] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[99] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[69] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[2] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[81] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[82] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[64] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[92] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[90] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[98] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[37] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[66] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[32] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[71] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[51] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[56] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[14] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[12] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[85] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[47] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[74] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[18] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[10] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[35] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[96] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[27] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[77] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[62] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[58] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[25] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[94] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[60] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[7] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[53] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[11] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[17] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[83] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[72] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[6] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[88] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[75] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[3] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[70] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[52] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[95] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[68] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[78] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[23] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[79] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[59] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[100] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[24] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[21] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[49] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[93] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[39] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[63] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[55] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[15] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[16] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[31] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[43] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[29] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[54] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[89] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[36] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[46] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[91] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[61] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[34] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[57] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) + Set temp(1)[40] to (Pair 0x010d30dc625f57274f300abc4af284934bc05fc46c00 (Pair "BLUE" 1)) Storage size: 320 bytes Paid storage size diff: 67 bytes - Consumed gas: 50082.437 + Consumed gas: 49909.937 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 @@ -281,12 +281,12 @@ This sequence of operations was run: Updated big_maps: Clear map(4) Copy temp(1) to map(5) - Storage size: 11583 bytes - Paid storage size diff: 11500 bytes - Consumed gas: 48913.021 + Storage size: 10783 bytes + Paid storage size diff: 10700 bytes + Consumed gas: 48926.421 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.875 - storage fees ........................... +ꜩ2.875 + [PUBLIC_KEY_HASH] ... -ꜩ2.675 + storage fees ........................... +ꜩ2.675 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor (with complex parameters) from impli.out b/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor (with complex parameters) from impli.out index be3a373cdeab..2f058a677b5e 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor (with complex parameters) from impli.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor (with complex parameters) from impli.out @@ -1,8 +1,8 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint store --arg 'Pair 99 {Pair "garbage" (Ticket "[CONTRACT_HASH]" string "Ticket1" 1) ; Pair "garbage" (Ticket "[CONTRACT_HASH]" string "Ticket2" 2)}' Node is bootstrapped. -Estimated gas: 4001.689 units (will add 100 for safety) -Estimated storage: 238 bytes added (will add 20 for safety) +Estimated gas: 4002.105 units (will add 100 for safety) +Estimated storage: 222 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -14,8 +14,8 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000843 Expected counter: 4 - Gas limit: 4102 - Storage limit: 258 bytes + Gas limit: 4103 + Storage limit: 242 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000843 payload fees(the block proposer) ....... +ꜩ0.000843 @@ -29,14 +29,14 @@ This sequence of operations was run: Pair "garbage" (Ticket "[CONTRACT_HASH]" string "Ticket2" 2) }) This transaction was successfully applied Updated storage: - { Ticket 0x01b9ce1609aab1100170d2ea4f94e3407244090b1000 string "Ticket2" 2 ; - Ticket 0x01b9ce1609aab1100170d2ea4f94e3407244090b1000 string "Ticket1" 1 } - Storage size: 303 bytes - Paid storage size diff: 238 bytes - Consumed gas: 4001.656 + { Pair 0x01b9ce1609aab1100170d2ea4f94e3407244090b1000 (Pair "Ticket2" 2) ; + Pair 0x01b9ce1609aab1100170d2ea4f94e3407244090b1000 (Pair "Ticket1" 1) } + Storage size: 287 bytes + Paid storage size diff: 222 bytes + Consumed gas: 4002.072 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0595 - storage fees ........................... +ꜩ0.0595 + [PUBLIC_KEY_HASH] ... -ꜩ0.0555 + storage fees ........................... +ꜩ0.0555 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor from implicit account to originated .out b/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor from implicit account to originated .out index d2e55e163aba..f228d2fbf1ef 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor from implicit account to originated .out +++ b/tezt/tests/expected/tickets.ml/Beta-- Send tickets with Ticket constructor from implicit account to originated .out @@ -1,8 +1,8 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint save --arg 'Ticket "[CONTRACT_HASH]" string "Ticket" 1' Node is bootstrapped. -Estimated gas: 3081.753 units (will add 100 for safety) -Estimated storage: 52 bytes added (will add 20 for safety) +Estimated gas: 3081.961 units (will add 100 for safety) +Estimated storage: 44 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -15,7 +15,7 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000643 Expected counter: 4 Gas limit: 3182 - Storage limit: 72 bytes + Storage limit: 64 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000643 payload fees(the block proposer) ....... +ꜩ0.000643 @@ -27,13 +27,13 @@ This sequence of operations was run: Parameter: (Ticket "[CONTRACT_HASH]" string "Ticket" 1) This transaction was successfully applied Updated storage: - { Ticket 0x01fb08747351ab3652f772910c4565880d8df616f800 string "Ticket" 1 } - Storage size: 246 bytes - Paid storage size diff: 52 bytes - Consumed gas: 3081.687 + { Pair 0x01fb08747351ab3652f772910c4565880d8df616f800 (Pair "Ticket" 1) } + Storage size: 238 bytes + Paid storage size diff: 44 bytes + Consumed gas: 3081.895 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.013 - storage fees ........................... +ꜩ0.013 + [PUBLIC_KEY_HASH] ... -ꜩ0.011 + storage fees ........................... +ꜩ0.011 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Beta-- Sending ticket from contract storage to implicit accounts.out b/tezt/tests/expected/tickets.ml/Beta-- Sending ticket from contract storage to implicit accounts.out index 0010c2b15d1b..aeeee4d4a876 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Sending ticket from contract storage to implicit accounts.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Sending ticket from contract storage to implicit accounts.out @@ -119,7 +119,7 @@ Contract memorized as tickets_bag_implicit. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.410 units (will add 100 for safety) +Estimated gas: 1858.650 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -146,7 +146,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.547 + Consumed gas: 1758.787 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -155,7 +155,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: @@ -171,8 +171,8 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 1 tickets from bootstrap1 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 Node is bootstrapped. -Estimated gas: 3175.884 units (will add 100 for safety) -Estimated storage: 52 bytes added (will add 20 for safety) +Estimated gas: 3176.332 units (will add 100 for safety) +Estimated storage: 44 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -184,8 +184,8 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000626 Expected counter: 4 - Gas limit: 3276 - Storage limit: 72 bytes + Gas limit: 3277 + Storage limit: 64 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000626 payload fees(the block proposer) ....... +ꜩ0.000626 @@ -204,23 +204,23 @@ This sequence of operations was run: Content: "Ticket" Account updates: [PUBLIC_KEY_HASH] ... -1 - Consumed gas: 1266.275 + Consumed gas: 1266.515 Internal operations: Internal Transaction: Amount: ꜩ0 From: [PUBLIC_KEY_HASH] To: [CONTRACT_HASH] Entrypoint: save - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Updated storage: - { Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1 } - Storage size: 235 bytes - Paid storage size diff: 52 bytes - Consumed gas: 1910.144 + { Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1) } + Storage size: 227 bytes + Paid storage size diff: 44 bytes + Consumed gas: 1910.352 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.013 - storage fees ........................... +ꜩ0.013 + [PUBLIC_KEY_HASH] ... -ꜩ0.011 + storage fees ........................... +ꜩ0.011 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -237,7 +237,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[PUBLIC_KEY_HASH]"' Node is bootstrapped. -Estimated gas: 2511.223 units (will add 100 for safety) +Estimated gas: 2511.210 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -264,7 +264,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 183 bytes - Consumed gas: 2411.360 + Consumed gas: 2411.347 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -276,7 +276,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: diff --git a/tezt/tests/expected/tickets.ml/Beta-- Sending ticket of wrong type from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Beta-- Sending ticket of wrong type from implicit accounts must be rejected.out index 85786efa96d0..24c16086d26f 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Sending ticket of wrong type from implicit accounts must be rejected.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Sending ticket of wrong type from implicit accounts must be rejected.out @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.410 units (will add 100 for safety) +Estimated gas: 1858.650 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.547 + Consumed gas: 1758.787 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -96,7 +96,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: diff --git a/tezt/tests/expected/tickets.ml/Beta-- Sending tickets from storage to smart-contract rollup should succeed with.out b/tezt/tests/expected/tickets.ml/Beta-- Sending tickets from storage to smart-contract rollup should succeed with.out index 20e981ffa479..d916565f422a 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Sending tickets from storage to smart-contract rollup should succeed with.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Sending tickets from storage to smart-contract rollup should succeed with.out @@ -1,8 +1,8 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint mint Node is bootstrapped. -Estimated gas: 2221.617 units (will add 100 for safety) -Estimated storage: 237 bytes added (will add 20 for safety) +Estimated gas: 2222.033 units (will add 100 for safety) +Estimated storage: 221 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -14,8 +14,8 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000494 Expected counter: 3 - Gas limit: 2322 - Storage limit: 257 bytes + Gas limit: 2323 + Storage limit: 241 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 @@ -26,14 +26,14 @@ This sequence of operations was run: Entrypoint: mint This transaction was successfully applied Updated storage: - { Ticket 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 string "Ticket2" 1 ; - Ticket 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 string "Ticket" 1 } - Storage size: 325 bytes - Paid storage size diff: 237 bytes - Consumed gas: 2221.584 + { Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket2" 1) ; + Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket" 1) } + Storage size: 309 bytes + Paid storage size diff: 221 bytes + Consumed gas: 2222 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.05925 - storage fees ........................... +ꜩ0.05925 + [PUBLIC_KEY_HASH] ... -ꜩ0.05525 + storage fees ........................... +ꜩ0.05525 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -49,7 +49,7 @@ This sequence of operations was run: ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[SMART_ROLLUP_HASH]"' Node is bootstrapped. -Estimated gas: 3141.491 units (will add 100 for safety) +Estimated gas: 3141.953 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -76,7 +76,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 220 bytes - Consumed gas: 3031.474 + Consumed gas: 3031.954 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -93,10 +93,10 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [SMART_ROLLUP_HASH] - Parameter: { Ticket 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 string "Ticket2" 1 ; - Ticket 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 string "Ticket" 1 } + Parameter: { Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket2" 1) ; + Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket" 1) } This transaction was successfully applied - Consumed gas: 109.950 + Consumed gas: 109.932 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Beta-- Sending tickets to either implicit accounts or originated contracts accep.out b/tezt/tests/expected/tickets.ml/Beta-- Sending tickets to either implicit accounts or originated contracts accep.out index 7cec55ba2c79..68e808e16d82 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Sending tickets to either implicit accounts or originated contracts accep.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Sending tickets to either implicit accounts or originated contracts accep.out @@ -104,7 +104,7 @@ Contract memorized as tickets_blackhole. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.410 units (will add 100 for safety) +Estimated gas: 1858.650 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -131,7 +131,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.547 + Consumed gas: 1758.787 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -140,7 +140,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: @@ -153,7 +153,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[CONTRACT_HASH]" 1' Node is bootstrapped. -Estimated gas: 4063.583 units (will add 100 for safety) +Estimated gas: 4063.823 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -180,7 +180,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 2210.996 + Consumed gas: 2211.236 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -189,7 +189,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [CONTRACT_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Updated storage: Unit Storage size: 51 bytes diff --git a/tezt/tests/expected/tickets.ml/Beta-- Sending zero ticket from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Beta-- Sending zero ticket from implicit accounts must be rejected.out index 21c90e982d44..ca58a93b53c6 100644 --- a/tezt/tests/expected/tickets.ml/Beta-- Sending zero ticket from implicit accounts must be rejected.out +++ b/tezt/tests/expected/tickets.ml/Beta-- Sending zero ticket from implicit accounts must be rejected.out @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.410 units (will add 100 for safety) +Estimated gas: 1858.650 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.547 + Consumed gas: 1758.787 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -96,7 +96,7 @@ This sequence of operations was run: Amount: ꜩ0 From: [CONTRACT_HASH] To: [PUBLIC_KEY_HASH] - Parameter: (Ticket 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 string "Ticket" 1) + Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) This transaction was successfully applied Consumed gas: 100.398 Ticket updates: diff --git a/tezt/tests/expected/tx_sc_rollup.ml/Beta-- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out b/tezt/tests/expected/tx_sc_rollup.ml/Beta-- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out index eb0ec52329a8..52a59d964c2f 100644 --- a/tezt/tests/expected/tx_sc_rollup.ml/Beta-- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out +++ b/tezt/tests/expected/tx_sc_rollup.ml/Beta-- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out @@ -1,7 +1,7 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1000 --arg 'Pair (Pair "[SMART_ROLLUP_HASH]" "[PUBLIC_KEY_HASH]") (Pair 450 "Hello, Ticket!")' Node is bootstrapped. -Estimated gas: 2329.644 units (will add 100 for safety) +Estimated gas: 2329.875 units (will add 100 for safety) Estimated storage: 67 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -29,7 +29,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 205 bytes Paid storage size diff: 67 bytes - Consumed gas: 2222.617 + Consumed gas: 2222.857 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 @@ -39,9 +39,9 @@ This sequence of operations was run: From: [CONTRACT_HASH] To: [SMART_ROLLUP_HASH] Parameter: (Pair "[PUBLIC_KEY_HASH]" - (Ticket [MICHELINE_KT1_BYTES] string "Hello, Ticket!" 450)) + (Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 450))) This transaction was successfully applied - Consumed gas: 106.960 + Consumed gas: 106.951 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -110,8 +110,8 @@ GET http://[HOST]:[PORT]/global/block/12/total_ticks ./octez-client --wait none execute outbox message of smart rollup '[SMART_ROLLUP_HASH]' from bootstrap1 for commitment hash '[SC_ROLLUP_COMMITMENT_HASH]' and output proof '[SMART_ROLLUP_BYTES]' --burn-cap 10 Node is bootstrapped. -Estimated gas: 6269.695 units (will add 100 for safety) -Estimated storage: 133 bytes added (will add 20 for safety) +Estimated gas: 6269.903 units (will add 100 for safety) +Estimated storage: 125 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -124,7 +124,7 @@ This sequence of operations was run: Fee to the baker: ꜩ0.001625 Expected counter: 8 Gas limit: 6370 - Storage limit: 153 bytes + Storage limit: 145 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.001625 payload fees(the block proposer) ....... +ꜩ0.001625 @@ -152,13 +152,13 @@ This sequence of operations was run: Parameter: (Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 220)) This transaction was successfully applied Updated storage: - { Ticket [MICHELINE_KT1_BYTES] string "Hello, Ticket!" 220 } - Storage size: 183 bytes - Paid storage size diff: 61 bytes - Consumed gas: 1208.766 + { Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 220) } + Storage size: 175 bytes + Paid storage size diff: 53 bytes + Consumed gas: 1208.974 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01525 - storage fees ........................... +ꜩ0.01525 + [PUBLIC_KEY_HASH] ... -ꜩ0.01325 + storage fees ........................... +ꜩ0.01325 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -169,8 +169,8 @@ This sequence of operations was run: ./octez-client --wait none execute outbox message of smart rollup '[SMART_ROLLUP_HASH]' from bootstrap1 for commitment hash '[SC_ROLLUP_COMMITMENT_HASH]' and output proof '[SMART_ROLLUP_BYTES]' --burn-cap 10 Node is bootstrapped. -Estimated gas: 5818.056 units (will add 100 for safety) -Estimated storage: 60 bytes added (will add 20 for safety) +Estimated gas: 5818.472 units (will add 100 for safety) +Estimated storage: 52 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -183,7 +183,7 @@ This sequence of operations was run: Fee to the baker: ꜩ0.001577 Expected counter: 9 Gas limit: 5919 - Storage limit: 80 bytes + Storage limit: 72 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.001577 payload fees(the block proposer) ....... +ꜩ0.001577 @@ -207,14 +207,14 @@ This sequence of operations was run: Parameter: (Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 40)) This transaction was successfully applied Updated storage: - { Ticket [MICHELINE_KT1_BYTES] string "Hello, Ticket!" 40 ; - Ticket [MICHELINE_KT1_BYTES] string "Hello, Ticket!" 220 } - Storage size: 243 bytes - Paid storage size diff: 60 bytes - Consumed gas: 1216.781 + { Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 40) ; + Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 220) } + Storage size: 227 bytes + Paid storage size diff: 52 bytes + Consumed gas: 1217.197 Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.015 - storage fees ........................... +ꜩ0.015 + [PUBLIC_KEY_HASH] ... -ꜩ0.013 + storage fees ........................... +ꜩ0.013 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out b/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out index 69d209086794..f6e30c95cd92 100644 --- a/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out +++ b/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out @@ -22,7 +22,7 @@ tzt_reference_test_suite/ticket_00.tzt: Got output: StaticError "Error:\n Contract_storage.Failure \"get_balance\"\n" Expected: { Stack_elt (option (ticket string)) - (Some (Ticket "KT1Q36KWPSba7dHsH5E4ZsQHehrChc51e19d" string "Blue" 42)) } + (Some (Pair "KT1Q36KWPSba7dHsH5E4ZsQHehrChc51e19d" "Blue" 42)) } tzt_reference_test_suite/setdelegate_00.tzt: Got output: { Stack_elt -- GitLab From 9c0d677f5175790ff92c4897c245e3ce94880e36 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:07 +0200 Subject: [PATCH 17/25] Beta/src: add vanity nonce --- src/proto_beta/lib_protocol/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_beta/lib_protocol/main.ml b/src/proto_beta/lib_protocol/main.ml index 573bb82d59e4..d0ccc5f3d1cb 100644 --- a/src/proto_beta/lib_protocol/main.ml +++ b/src/proto_beta/lib_protocol/main.ml @@ -467,4 +467,4 @@ module Mempool = struct ~predecessor_hash:head_hash) end -(* Vanity nonce: TBD *) +(* Vanity nonce: 3214283110922770 *) -- GitLab From bf687f02d391b91f61e4045f4fcb0b3762c33cfe Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:07 +0200 Subject: [PATCH 18/25] Beta/src: update beta hash --- src/proto_beta/lib_protocol/TEZOS_PROTOCOL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_beta/lib_protocol/TEZOS_PROTOCOL b/src/proto_beta/lib_protocol/TEZOS_PROTOCOL index 5846084c0cbb..e8ecbe38cf6e 100644 --- a/src/proto_beta/lib_protocol/TEZOS_PROTOCOL +++ b/src/proto_beta/lib_protocol/TEZOS_PROTOCOL @@ -1,6 +1,6 @@ { "expected_env_version": 13, - "hash": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "hash": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "modules": [ "Misc", "Non_empty_string", -- GitLab From e828f4b2ac7ccbb6a153899c763c42dfd542b0e1 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:23 +0200 Subject: [PATCH 19/25] Beta/src: update protocol hash into final_protocol_versions --- src/lib_protocol_compiler/final_protocol_versions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_protocol_compiler/final_protocol_versions b/src/lib_protocol_compiler/final_protocol_versions index 2931fff46c75..6648dccc72bc 100644 --- a/src/lib_protocol_compiler/final_protocol_versions +++ b/src/lib_protocol_compiler/final_protocol_versions @@ -21,4 +21,4 @@ PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi -Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY +PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT -- GitLab From 6328bf5eb374d6630f24d369962cce41eae6cf08 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:28 +0200 Subject: [PATCH 20/25] Beta/manifest: make manifest --- src/proto_beta/lib_protocol/dune | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_beta/lib_protocol/dune b/src/proto_beta/lib_protocol/dune index f676cd141603..e54efe245145 100644 --- a/src/proto_beta/lib_protocol/dune +++ b/src/proto_beta/lib_protocol/dune @@ -314,7 +314,7 @@ (action (write-file %{targets} - "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY\"\nlet name = Tezos_protocol_environment_beta.Name.name\ninclude Tezos_raw_protocol_beta\ninclude Tezos_raw_protocol_beta.Main\n"))) + "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT\"\nlet name = Tezos_protocol_environment_beta.Name.name\ninclude Tezos_raw_protocol_beta\ninclude Tezos_raw_protocol_beta.Main\n"))) (rule (targets tezos_protocol_beta.ml) -- GitLab From d53382d88adc7e5b357389ff159d3291cd9ad022 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:35 +0200 Subject: [PATCH 21/25] Beta/tezt: adapt lib_tezos/protocol.ml --- tezt/lib_tezos/protocol.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/lib_tezos/protocol.ml b/tezt/lib_tezos/protocol.ml index 96aaafcc1e22..30cb7f972e9b 100644 --- a/tezt/lib_tezos/protocol.ml +++ b/tezt/lib_tezos/protocol.ml @@ -60,7 +60,7 @@ let tag protocol = String.lowercase_ascii (name protocol) let hash = function | Alpha -> "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK" | ParisC -> "PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi" - | Beta -> "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY" + | Beta -> "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT" (* DO NOT REMOVE, AUTOMATICALLY ADD STABILISED PROTOCOL HASH HERE *) let genesis_hash = "ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im" -- GitLab From 035a8c01ad775fb20fdece13b40703ae198dae80 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:45 +0200 Subject: [PATCH 22/25] Beta/tezt: move beta regression files --- ... client) RPC regression tests- mempool.out | 34 +++++++++---------- ...e proxy) RPC regression tests- mempool.out | 34 +++++++++---------- .../baker_test.ml/Beta-- Baker rewards.out | 4 +-- ...abs--storage125992234--input254251340-.out | 2 +- ...abs--storage125992234--input420401245-.out | 2 +- ...abs--storage125992234--input680650890-.out | 2 +- ...add--storage125992234--input125992234-.out | 2 +- ..._fr--storage921624073--input322109491-.out | 2 +- ..._fr--storage921624073--input461261325-.out | 2 +- ..._fr--storage921624073--input530006774-.out | 2 +- ..._fr--storage921624073--input712570300-.out | 2 +- ...amp--storage921624073--input249636002-.out | 2 +- ...amp--storage921624073--input267363182-.out | 2 +- ...amp--storage921624073--input438561129-.out | 2 +- ...lta--storage921624073--input249636002-.out | 2 +- ...lta--storage921624073--input307538219-.out | 2 +- ...lta--storage921624073--input373737581-.out | 2 +- ...ess--storage921624073--input117475800-.out | 2 +- ...and--storage921624073--input106930123-.out | 2 +- ...and--storage921624073--input181204719-.out | 2 +- ...and--storage921624073--input223774825-.out | 2 +- ...and--storage921624073--input908807505-.out | 2 +- ...ary--storage125992234--input125992234-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...l_1--storage570553153--input106930123-.out | 2 +- ...l_1--storage570553153--input181204719-.out | 2 +- ...l_1--storage570553153--input223774825-.out | 2 +- ...l_1--storage570553153--input908807505-.out | 2 +- ...nce--storage492856247--input125992234-.out | 2 +- ...nat--storage495706788--input453441034-.out | 2 +- ..._nat--storage56274299--input453441034-.out | 2 +- ..._nat--storage56274299--input564400327-.out | 2 +- ..._nat--storage56274299--input654274102-.out | 2 +- ...nat--storage690637660--input453441034-.out | 2 +- ...nat--storage806237530--input453441034-.out | 2 +- ...ng--storage109689253--input1071610051-.out | 2 +- ...ing--storage109689253--input700475845-.out | 2 +- ...ing--storage109689253--input905318451-.out | 2 +- ...ing--storage495706788--input700475845-.out | 2 +- ...ing--storage915708427--input700475845-.out | 2 +- ...ing--storage936682951--input905318451-.out | 2 +- ...t_padded--storage921624073--input12599.out | 2 +- ...nat--storage921624073--input125992234-.out | 2 +- ...nt--storage680650890--input1043734173-.out | 2 +- ...int--storage680650890--input151303925-.out | 2 +- ...int--storage680650890--input520610122-.out | 2 +- ...int--storage680650890--input558805129-.out | 2 +- ...tez--storage680650890--input229402968-.out | 2 +- ...nt--storage287336412--input1019409032-.out | 2 +- ...int--storage698210250--input949526473-.out | 2 +- ...int--storage739946440--input166435292-.out | 2 +- ...int--storage739946440--input583291483-.out | 2 +- ...nt--storage994282947--input1055524890-.out | 2 +- ...int--storage994282947--input453441034-.out | 2 +- ...int--storage994282947--input564400327-.out | 2 +- ...int--storage994282947--input585234482-.out | 2 +- ...int--storage994282947--input680650890-.out | 2 +- ...int--storage994282947--input701858804-.out | 2 +- ...at--storage287336412--input1019409032-.out | 2 +- ...nat--storage698210250--input949526473-.out | 2 +- ...nat--storage739946440--input166435292-.out | 2 +- ...nat--storage739946440--input583291483-.out | 2 +- ...at--storage994282947--input1055524890-.out | 2 +- ...nat--storage994282947--input453441034-.out | 2 +- ...nat--storage994282947--input564400327-.out | 2 +- ...nat--storage994282947--input680650890-.out | 2 +- ...nt--storage287336412--input1019409032-.out | 2 +- ...int--storage698210250--input949526473-.out | 2 +- ...int--storage739946440--input166435292-.out | 2 +- ...int--storage739946440--input583291483-.out | 2 +- ...nt--storage994282947--input1055524890-.out | 2 +- ...int--storage994282947--input453441034-.out | 2 +- ...int--storage994282947--input564400327-.out | 2 +- ...int--storage994282947--input585234482-.out | 2 +- ...int--storage994282947--input680650890-.out | 2 +- ...int--storage994282947--input701858804-.out | 2 +- ...at--storage287336412--input1019409032-.out | 2 +- ...nat--storage698210250--input949526473-.out | 2 +- ...nat--storage739946440--input166435292-.out | 2 +- ...nat--storage739946440--input583291483-.out | 2 +- ...at--storage994282947--input1055524890-.out | 2 +- ...nat--storage994282947--input453441034-.out | 2 +- ...nat--storage994282947--input564400327-.out | 2 +- ...nat--storage994282947--input680650890-.out | 2 +- ...int--storage125992234--input125992234-.out | 2 +- ...nat--storage125992234--input125992234-.out | 2 +- ...car--storage680650890--input783124233-.out | 2 +- ...cdr--storage680650890--input783124233-.out | 2 +- ...ore--storage109160754--input125992234-.out | 2 +- ...ore--storage921624073--input125992234-.out | 2 +- ...ore--storage981066851--input125992234-.out | 2 +- ...omb--storage950292965--input125992234-.out | 2 +- ...get--storage125992234--input186507116-.out | 2 +- ...set--storage186507116--input125992234-.out | 2 +- ...t-2--storage921624073--input186507116-.out | 2 +- ...are--storage125992234--input125992234-.out | 2 +- ...ons--storage457300675--input281780712-.out | 2 +- ...llo--storage457300675--input392583650-.out | 2 +- ...llo--storage457300675--input457300675-.out | 2 +- ...llo--storage457300675--input640104625-.out | 2 +- ...tes--storage457300675--input354091714-.out | 2 +- ...tes--storage457300675--input441061063-.out | 2 +- ...tes--storage457300675--input457300675-.out | 2 +- ...list--storage79230375--input264787654-.out | 2 +- ...list--storage79230375--input316676251-.out | 2 +- ...list--storage79230375--input457300675-.out | 2 +- ...ons--storage457300675--input798141440-.out | 2 +- ...ons--storage581876226--input166122047-.out | 2 +- ...ons--storage793461282--input781487591-.out | 2 +- ...all--storage921624073--input315650912-.out | 2 +- ..._all--storage921624073--input51111414-.out | 2 +- ...all--storage921624073--input545734274-.out | 2 +- ...all--storage921624073--input772794967-.out | 2 +- ...all--storage921624073--input917967660-.out | 2 +- ...all--storage921624073--input964818218-.out | 2 +- ...act--storage125992234--input117475800-.out | 2 +- ...act--storage921624073--input125992234-.out | 2 +- ...ps--storage492856247--input1011138251-.out | 2 +- ...ps--storage492856247--input1018564342-.out | 2 +- ...ps--storage492856247--input1031049988-.out | 2 +- ...mps--storage492856247--input685590443-.out | 2 +- ..._eq--storage125992234--input246866101-.out | 2 +- ...g_eq--storage125992234--input26856104-.out | 2 +- ...ign--storage680650890--input529388602-.out | 2 +- ...ip--storage1011138251--input590117173-.out | 2 +- ...ip--storage1011138251--input850887554-.out | 2 +- ...ipn--storage680650890--input529388602-.out | 2 +- ...opn--storage680650890--input529388602-.out | 2 +- ...ugn--storage680650890--input529388602-.out | 2 +- ...p-n--storage125992234--input125992234-.out | 2 +- ...div--storage994417987--input247451205-.out | 2 +- ...div--storage994417987--input250545589-.out | 2 +- ...ediv--storage994417987--input79625541-.out | 2 +- ...tez--storage977883604--input147133089-.out | 2 +- ...tez--storage977883604--input215785357-.out | 2 +- ...tez--storage977883604--input389351431-.out | 2 +- ...utez--storage977883604--input44513000-.out | 2 +- ...tez--storage977883604--input635398196-.out | 2 +- ...tez--storage977883604--input734264738-.out | 2 +- ...tez--storage977883604--input993071382-.out | 2 +- ...mit--storage125992234--input125992234-.out | 2 +- ...map--storage457300675--input125992234-.out | 2 +- ...cat--storage398998998--input246262487-.out | 2 +- ...ncat--storage398998998--input79230375-.out | 2 +- ...rst--storage492856247--input478406404-.out | 2 +- ...rst--storage492856247--input962874972-.out | 2 +- ...ap--storage1026405794--input329240220-.out | 2 +- ...map--storage382368661--input329240220-.out | 2 +- ...map--storage496578814--input329240220-.out | 2 +- ...map--storage496578814--input507231566-.out | 2 +- ...map--storage547821324--input329240220-.out | 2 +- ...map--storage796012494--input156280093-.out | 2 +- ...map--storage796012494--input228164856-.out | 2 +- ...lue--storage139236239--input329240220-.out | 2 +- ...alue--storage139236239--input79230375-.out | 2 +- ...lue--storage329396864--input156280093-.out | 2 +- ...ey--storage921624073--input1040351577-.out | 2 +- ...key--storage921624073--input153350004-.out | 2 +- ...tring--storage151303925--input3431716-.out | 2 +- ...ing--storage151303925--input535018041-.out | 2 +- ...-if--storage921624073--input570553153-.out | 2 +- ...-if--storage921624073--input954397288-.out | 2 +- ...ome--storage398998998--input288201633-.out | 2 +- ...ome--storage398998998--input921624073-.out | 2 +- ...int--storage921624073--input453441034-.out | 2 +- ...int--storage921624073--input535454136-.out | 2 +- ...int--storage921624073--input680650890-.out | 2 +- ...ak--storage921624073--input1008262038-.out | 2 +- ...right--storage4177631--input202098045-.out | 2 +- ..._right--storage4177631--input44576556-.out | 2 +- ...vel--storage492856247--input125992234-.out | 2 +- ...cat--storage717096222--input457300675-.out | 2 +- ...cat--storage717096222--input546523343-.out | 2 +- ...tes--storage149262694--input220724351-.out | 2 +- ...tes--storage149262694--input457300675-.out | 2 +- ...ytes--storage65410082--input457300675-.out | 2 +- ...tes--storage726220441--input972761363-.out | 2 +- ..._id--storage528921618--input264787654-.out | 2 +- ..._id--storage528921618--input457300675-.out | 2 +- ..._id--storage528921618--input656499821-.out | 2 +- ...map--storage528921618--input264787654-.out | 2 +- ...map--storage528921618--input457300675-.out | 2 +- ...map--storage528921618--input656499821-.out | 2 +- ...ter--storage680650890--input568817463-.out | 2 +- ...ter--storage680650890--input737923774-.out | 2 +- ...ock--storage907453363--input457300675-.out | 2 +- ...ock--storage907453363--input648737279-.out | 2 +- ...ock--storage907453363--input908379154-.out | 2 +- ...ize--storage492856247--input403499055-.out | 2 +- ...ize--storage492856247--input457300675-.out | 2 +- ...ize--storage492856247--input469078912-.out | 2 +- ...ize--storage492856247--input802622031-.out | 2 +- ...eft--storage528921618--input457300675-.out | 2 +- ...eft--storage528921618--input851203613-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...id--storage457300675--input1027566226-.out | 2 +- ..._id--storage457300675--input276660554-.out | 2 +- ..._id--storage457300675--input599923743-.out | 2 +- ...er--storage1011138251--input403579222-.out | 2 +- ...er--storage1011138251--input532072758-.out | 2 +- ...map--storage457300675--input798141440-.out | 2 +- ...map--storage794999348--input152441147-.out | 2 +- ..._map--storage88008216--input798141440-.out | 2 +- ...nat--storage495706788--input453441034-.out | 2 +- ..._nat--storage56274299--input453441034-.out | 2 +- ..._nat--storage56274299--input564400327-.out | 2 +- ..._nat--storage56274299--input654274102-.out | 2 +- ...nat--storage690637660--input453441034-.out | 2 +- ...nat--storage806237530--input453441034-.out | 2 +- ...ng--storage109689253--input1071610051-.out | 2 +- ...ing--storage109689253--input700475845-.out | 2 +- ...ing--storage109689253--input905318451-.out | 2 +- ...ing--storage495706788--input700475845-.out | 2 +- ...ing--storage915708427--input700475845-.out | 2 +- ...ing--storage936682951--input905318451-.out | 2 +- ...size--storage492856247--input15265129-.out | 2 +- ...ize--storage492856247--input158311065-.out | 2 +- ...ize--storage492856247--input456982702-.out | 2 +- ...ize--storage492856247--input457300675-.out | 2 +- ...mul--storage125992234--input125992234-.out | 2 +- ..._fr--storage151303925--input216277421-.out | 2 +- ..._fr--storage287799761--input485842614-.out | 2 +- ...eg--storage680650890--input1067298059-.out | 2 +- ...neg--storage680650890--input380029349-.out | 2 +- ...neg--storage680650890--input563503226-.out | 2 +- ...neg--storage680650890--input788662499-.out | 2 +- ...neg--storage680650890--input972832189-.out | 2 +- ...none--storage11179311--input125992234-.out | 2 +- ...not--storage921624073--input570553153-.out | 2 +- ...not--storage921624073--input954397288-.out | 2 +- ...ry--storage921624073--input1051197453-.out | 2 +- ...ary--storage921624073--input123939249-.out | 2 +- ...nary--storage921624073--input24243730-.out | 2 +- ...ary--storage921624073--input518945720-.out | 2 +- ...ary--storage921624073--input788662499-.out | 2 +- ...ary--storage921624073--input906118781-.out | 2 +- ...ary--storage921624073--input921874253-.out | 2 +- ...ary--storage921624073--input972832189-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...-or--storage921624073--input106930123-.out | 2 +- ...-or--storage921624073--input181204719-.out | 2 +- ...-or--storage921624073--input223774825-.out | 2 +- ...-or--storage921624073--input908807505-.out | 2 +- ...ry--storage921624073--input1056991424-.out | 2 +- ...ary--storage921624073--input375993021-.out | 2 +- ...ary--storage921624073--input673240563-.out | 2 +- ...ary--storage921624073--input747448890-.out | 2 +- ...ary--storage921624073--input832403787-.out | 2 +- ...ary--storage921624073--input858098961-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- ...rev--storage125992234--input305844558-.out | 2 +- ...rev--storage125992234--input646365167-.out | 2 +- ...ty--storage125992234--input1028781121-.out | 2 +- ...cty--storage125992234--input802670583-.out | 2 +- ..._id--storage921624073--input106930123-.out | 2 +- ..._id--storage921624073--input181204719-.out | 2 +- ..._id--storage921624073--input223774825-.out | 2 +- ..._id--storage921624073--input908807505-.out | 2 +- ...ec--storage256947135--input1050356042-.out | 2 +- ...c_2--storage197120858--input179371027-.out | 2 +- ...int--storage921624073--input125992234-.out | 2 +- ...rse--storage528921618--input457300675-.out | 2 +- ...rse--storage528921618--input851203613-.out | 2 +- ...oop--storage528921618--input457300675-.out | 2 +- ...oop--storage528921618--input851203613-.out | 2 +- ...ate--storage457300675--input125992234-.out | 2 +- ...ess--storage125992234--input125992234-.out | 2 +- ...int--storage125992234--input125992234-.out | 2 +- ...int--storage125992234--input289072903-.out | 2 +- ...car--storage224747103--input620760059-.out | 2 +- ...car--storage224747103--input717096222-.out | 2 +- ..._car--storage224747103--input79230375-.out | 2 +- ...cdr--storage205576101--input654274102-.out | 2 +- ...cdr--storage224747103--input453441034-.out | 2 +- ...cdr--storage611418174--input967284912-.out | 2 +- ..._id--storage457300675--input264787654-.out | 2 +- ..._id--storage457300675--input457300675-.out | 2 +- ..._id--storage457300675--input989507347-.out | 2 +- ...ter--storage492856247--input457300675-.out | 2 +- ...ter--storage492856247--input701684511-.out | 2 +- ...ter--storage492856247--input802622031-.out | 2 +- ...mber--storage495706788--input33757838-.out | 2 +- ...mber--storage550087893--input79230375-.out | 2 +- ...mber--storage605111220--input33757838-.out | 2 +- ...ize--storage492856247--input403499055-.out | 2 +- ...ize--storage492856247--input457300675-.out | 2 +- ...ize--storage492856247--input469078912-.out | 2 +- ...ize--storage492856247--input802622031-.out | 2 +- ...a3--storage921624073--input1008262038-.out | 2 +- ...fts--storage921624073--input115382786-.out | 2 +- ...fts--storage921624073--input271566295-.out | 2 +- ...fts--storage921624073--input340971987-.out | 2 +- ...fts--storage921624073--input374168553-.out | 2 +- ...fts--storage921624073--input413621582-.out | 2 +- ...fts--storage921624073--input424849461-.out | 2 +- ...fts--storage921624073--input485030042-.out | 2 +- ...fts--storage921624073--input705767726-.out | 2 +- ...fts--storage921624073--input769385932-.out | 2 +- ...fts--storage921624073--input913715337-.out | 2 +- ...lice--storage351480851--input65907686-.out | 2 +- ...ice--storage364922380--input198821575-.out | 2 +- ...ice--storage364922380--input359592843-.out | 2 +- ...ice--storage364922380--input551316239-.out | 2 +- ...ice--storage364922380--input722749044-.out | 2 +- ...ice--storage364922380--input839234860-.out | 2 +- ...ice--storage364922380--input919180079-.out | 2 +- ...ice--storage921624073--input551316239-.out | 2 +- ...tes--storage229749865--input198821575-.out | 2 +- ...tes--storage229749865--input462551352-.out | 2 +- ...tes--storage229749865--input489157380-.out | 2 +- ...tes--storage229749865--input551316239-.out | 2 +- ...tes--storage229749865--input669330759-.out | 2 +- ...tes--storage229749865--input743596105-.out | 2 +- ...tes--storage229749865--input839234860-.out | 2 +- ...ytes--storage504917929--input65907686-.out | 2 +- ...tes--storage921624073--input462551352-.out | 2 +- ...id--storage921624073--input1016369050-.out | 2 +- ...r_id--storage921624073--input93477117-.out | 2 +- ...lta--storage492856247--input249636002-.out | 2 +- ...lta--storage492856247--input307538219-.out | 2 +- ...lta--storage492856247--input831449542-.out | 2 +- ...sub--storage921624073--input706350605-.out | 2 +- ...sub--storage921624073--input856198194-.out | 2 +- ...omb--storage680650890--input394061083-.out | 2 +- ...air--storage125992234--input125992234-.out | 2 +- ...r--storage1011138251--input1040351577-.out | 2 +- ...or--storage921624073--input1058477720-.out | 2 +- ...or--storage921624073--input1073176155-.out | 2 +- ...xor--storage921624073--input246594902-.out | 2 +- ...xor--storage921624073--input506603577-.out | 2 +- ...xor--storage921624073--input576248088-.out | 2 +- ...xor--storage921624073--input612012282-.out | 2 +- ...xor--storage921624073--input617591686-.out | 2 +- ...xor--storage921624073--input639311176-.out | 2 +- ...xor--storage921624073--input688315180-.out | 2 +- ...xor--storage921624073--input967929605-.out | 2 +- ...tes--storage125992234--input125992234-.out | 2 +- .../Beta-- Tc scripts.out | 2 +- ... integration (Use all available slots).out | 6 ++-- .../tzt_regression.ml/Beta-- Run TZT.out | 2 +- 341 files changed, 376 insertions(+), 376 deletions(-) diff --git a/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out index eab8c54bb975..af8f74f0ab26 100644 --- a/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out +++ b/tezt/tests/expected/RPC_test.ml/Beta-- (mode client) RPC regression tests- mempool.out @@ -1,10 +1,10 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' [] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] ./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true' { "validated": @@ -20,7 +20,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -36,7 +36,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -53,7 +53,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -87,7 +87,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -103,7 +103,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -120,7 +120,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -150,7 +150,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -166,7 +166,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -183,7 +183,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -222,7 +222,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -242,7 +242,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [], "outdated": [], "branch_refused": [], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -262,7 +262,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -284,7 +284,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "branch_delayed": [], "unprocessed": [] } curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] ./octez-client rpc get /chains/main/mempool/filter { "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], diff --git a/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out index 5bd731a0bee8..c2b23b4b472c 100644 --- a/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out +++ b/tezt/tests/expected/RPC_test.ml/Beta-- (mode proxy) RPC regression tests- mempool.out @@ -1,10 +1,10 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' [] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] ./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true' { "validated": @@ -20,7 +20,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -36,7 +36,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -53,7 +53,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -87,7 +87,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -103,7 +103,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -120,7 +120,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -150,7 +150,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -166,7 +166,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -183,7 +183,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -222,7 +222,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -242,7 +242,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [], "outdated": [], "branch_refused": [], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -262,7 +262,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -284,7 +284,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "branch_delayed": [], "unprocessed": [] } curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' -[{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.beta.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.beta.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.beta.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] ./octez-client --mode proxy rpc get /chains/main/mempool/filter { "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], diff --git a/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out b/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out index 2a162bd14181..463046346ff6 100644 --- a/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out +++ b/tezt/tests/expected/baker_test.ml/Beta-- Baker rewards.out @@ -1,7 +1,7 @@ ./octez-client rpc get /chains/main/blocks/head/metadata -{ "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", - "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", +{ "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", + "next_protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "test_chain_status": { "status": "not_running" }, "max_operations_ttl": 2, "max_operation_data_length": 32768, "max_block_header_length": 289, "max_operation_list_length": diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out index 8aedc56863f0..87b2464c3b82 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input254251340-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out index b1acf5625ef0..fef67e38f73b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input420401245-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out index 709fa5db018c..30deafcf0374 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -abs--storage125992234--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out index 85689de884e2..a2a24ff71ae4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out index 22d08a99a3db..46f90b52d9bf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out index d0974f71a6b3..da208bdabf41 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack storage (Some 0x0200000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out index dcc050c7a0fc..dd73fcf067c6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out index c0dbdced85b4..a17b0fe4d468 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out index 595da02825ce..2de05f32c5c7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out index e6d0cd633045..928905ae9cb1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out index f7cad2319bcc..47d9bc5628c9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out index 958c166f5eba..0ce67550c54a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out index c1311ab9a3ce..855449bd16fc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out index 0489e1c046b4..29e1108c0ebe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out index dcf10f68d4f8..f5fdcdc95b90 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -address--storage921624073--input117475800-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out index e6b2572af5b1..8abafc8e202e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out index 28e2da25b283..5578ba9f709d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out index 202a98c2c1bc..2590c3bfadc3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out index d20207adb544..e7832fe8ce0e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out index a727a8cb5000..6afc867cfdb0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_binary--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out index a8e17e49339b..a412faee7cbc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out index 22acfbd1e476..64113d5bde88 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack storage False emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out index 4e0c225b4363..d05764977603 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack storage False emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out index 6728b797792a..d322be0c49be 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack storage False emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out index 7bc47633b187..51c3cb716d72 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -and_logical_1--storage570553153--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack storage True emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out index 8306c8ac1ae1..acd36037c2ab 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -balance--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack storage 4000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out index f4be767d992c..ba6b910f78de 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out index dbcb44089600..aa07794727f1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out index 32c6faf1cd1b..364cd480c0ed 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out index 23941a1a0513..50dd37ae39db 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out index dc5e6c49f69b..a0f90c9f481d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out index 00683e191601..0ab708b1d8fa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out index 43480a4c916a..8099e10f25ac 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out index 87256bafd9b8..c00291985353 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out index f61608fb0835..3e450c307d30 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out index bc538d84d6b1..eafe2694a471 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out index dd1ded8e43ff..9f59afe3a07a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out index b8ddab0922a6..11029bdc62d7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -big_map_mem_string--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out index f16b7bdd1fc8..68df7784c216 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out index 3f1ac6450175..3342c9b9f643 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x1000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out index 5fa85dfeeb62..f37d24f15235 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out index 92f65630c1c9..78e71efc510d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out index 5c1440293775..15fd8b92118f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack storage 11320265829256585830781521966149529460476767408210445238902869222031333517497 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out index 453e7b726011..6e02f52a0920 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack storage 17832688077013577776524784494464728518213913213412866604053735695200962927400 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out index 9e4b6e573450..55ff3a40955a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack storage 16 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out index 19117149d4fd..213061387bde 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out index 8733fc75a55a..a00b39710787 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out index 22f7ea2a0485..b90fd86b99ef 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out index cde2c83388b5..023fc59b9ca8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out index 0fb0fb8b88e1..2bdbd688b8b2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out index 5f4572e2d300..17d51a719b85 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out index 848a57200c75..4c510da37bb2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out index 885dba3004ec..3847f695f915 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out index c042c76cf705..fad51ba34cdc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out index 4df9aa19c57f..71d52ae45f00 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out index 4ed6bd428f1d..1fd478785963 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out index 790c42f7d340..7aef445d7790 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out index 41880044e415..3b29bd49bd79 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out index 9e2fb0222b47..52d2cc96243d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out index 7eac320750d8..8718156bc0c2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out index ab4a4af613ec..f795c5b2a6e9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out index 447436126f10..b21779322e59 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out index 39ef2eba692c..5c5c962058b1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out index bfea9dee0d6d..b800e6f207a8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out index 3a451113277f..80bfa99132f3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out index 025cfa948409..8481b5165eec 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out index 14a9a9fcb76c..365e897bf8b6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out index 944c4f7a7183..58430cb4b15a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out index ac1c1aac8b4a..f9a28c7f8ff1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out index 7b7339c49ad5..7810363db618 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out index 0c457e989735..6ca96c630c1d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out index e714626e23a4..2dfb053411b6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out index d0fb4f4008e3..1211e1b39365 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out index cc9ece83666d..8dc1186b4c82 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out index 3b0e11dd6b37..f3111e2e49ec 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out index cf5f028e8f95..3a17c96ca659 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out index 8d7adea1dbc1..3ec8e9f580f9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out index 8004565f6159..a32bb7775f49 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out index 8317aa531d96..60d433aff1c7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out index 409ec7b43e65..e3e33921f7b0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out index b62b00c60f07..f490addd9a53 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out index e9e0d695d65e..dac08e07891a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_int--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_int_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_int_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out index cf7ec8d036a4..cd5e86daf21b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -bytes_of_nat--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_nat_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_nat_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out index 8a99217e3735..d45c777edc3d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -car--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 34 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out index cc3e037066a0..fc125dee213a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cdr--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 17 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out index 323899d04954..17e5e0c9a931 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage109160754--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack storage (Some "NetXynUjJNZm7wi") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out index c9fb3c79c6e4..cf42140d6612 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack storage (Some "NetXynUjJNZm7wi") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out index f2d173027028..b791ba81bd55 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -chain_id_store--storage981066851--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack storage (Some "NetXynUjJNZm7wi") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out index b018dc32c841..f8cfafde61c5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb--storage950292965--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack storage (Pair 1 2 3) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out index 868637853043..56920da51461 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-get--storage125992234--input186507116-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out index f9cac9c2e703..6cae581f059e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set--storage186507116--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack storage (Pair 2 12 8 Unit) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out index 39e1cf06bddb..54c5263789de 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comb-set-2--storage921624073--input186507116-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage (Some (Pair 2 4 "toto" 0x01)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out index f375f7e6c2d8..b7d6db5cee91 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -compare--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out index 39f31b0da339..bd9f101781e2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -comparisons--storage457300675--input281780712-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack storage { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out index d6c2778ccfc4..d0e17d9f9780 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input392583650-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack storage { "Hello test1" ; "Hello test2" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out index b6b5da4cba3a..4773efdca968 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out index 0249ea6c809a..c2bbfe4a103a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello--storage457300675--input640104625-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack storage { "Hello World!" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out index 7dd45b1f8c3f..fda8fa166480 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack storage { 0xffab ; 0xffcd } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out index 5aafd13f8bf0..3b58b0b6064f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack storage { 0xffcd } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out index 2de52b5ad665..c453517824c5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out index 9212e4c752d1..788ecbed406c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage "abc" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out index d6e51c8f2c2a..cfb9d9e641a0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input316676251-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack storage "Hello World!" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out index 6ae75474261f..b1ccd7e5eaa0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -concat_list--storage79230375--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack storage "" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out index 5bba9a5f71f7..720ba871672b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack storage { 10 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out index 047fc6b07794..6551fa73eec2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage581876226--input166122047-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack storage { -5 ; 10 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out index f5cd90c5eb80..05990befdbd1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -cons--storage793461282--input781487591-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack storage { 99 ; -5 ; 10 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out index 35747337e294..de0d053cd378 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input315650912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out index 7af42b756c5d..371a5e3f99aa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input51111414-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out index 472aeecbf422..4b9639dd6346 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input545734274-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out index a41e46ef014a..5f3181a25b19 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input772794967-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out index c829b60847c3..b000dbf2b64b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input917967660-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out index 43e58c6813c3..f82abaf9e958 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contains_all--storage921624073--input964818218-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out index d00ebf1aac3e..0b1b69380b4c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -contract--storage125992234--input117475800-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out index a1b9e3bd1484..a433ba43268d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -create_contract--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack storage (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out index 23975145d828..83db6c283655 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1011138251-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out index d3155b0caebf..bcb74fcb7d77 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1018564342-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack storage -1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out index 947b90f8306b..53123d4304be 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input1031049988-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage 200 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out index 63f0f8f38e5d..b9e8be09a361 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -diff_timestamps--storage492856247--input685590443-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out index f86331a8b87a..9c71c7875902 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input246866101-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out index 85fd891e5e0e..02e8b4c57ac9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dig_eq--storage125992234--input26856104-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out index 85e47161cbd6..3d3647c34f81 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dign--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out index eb41db2eb99b..ff0ae3704630 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input590117173-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack storage (Pair 1 2) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out index 32522916c02a..25f522285fb4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dip--storage1011138251--input850887554-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack storage (Pair 15 24) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out index eb33546d482b..a5a0817fd02d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dipn--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 6 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out index 6de969b985e1..1772f9d7d57a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dropn--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out index 9780b994ad11..31f57c908bf1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dugn--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out index 18ef3deef4a3..893f5c1254f5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -dup-n--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out index 461f69741088..4b1590d74593 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input247451205-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack storage (Pair None None None None) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out index 23b16c91fe9b..b25071f49608 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input250545589-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack storage (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out index badb1c03c0ba..bce49ff974eb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv--storage994417987--input79625541-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack storage (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out index 14c1adad94ee..c9374cda4b63 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input147133089-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack storage (Right None) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out index 29300d3ae449..1bb76d81ce8e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input215785357-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack storage (Right (Some (Pair 3 1))) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out index 19c846a26014..ac2910eda36f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input389351431-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack storage (Left (Some (Pair 1 0))) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out index bac85618c540..885d1e9c9329 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input44513000-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack storage (Left None) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out index f1bc0bb7c99e..531acf7f8f11 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input635398196-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack storage (Left (Some (Pair 3 1))) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out index 87f6704e4b96..9810b908b302 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input734264738-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 1 0))) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out index 6277928dea0e..bd9dcbe31776 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ediv_mutez--storage977883604--input993071382-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 0 5))) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out index bf64584b3188..d82065ede154 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -emit--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out index 3a3bf0a15519..bfb227865021 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -empty_map--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack storage { Elt "hello" "world" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out index 59c4b5f097c6..32fbc03311a2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input246262487-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack storage "test_abc" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out index db354c690ba3..121f481b916f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -exec_concat--storage398998998--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack storage "_abc" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out index 9a637fa52cbd..9e674d020a9f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input478406404-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack storage 4 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out index d12e472b8bae..372a962a86fe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -first--storage492856247--input962874972-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out index 027a9cbd9a00..543e1024db0f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage1026405794--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) {}) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out index ab39039ae35a..1a934fab9829 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage382368661--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out index a8d22889df19..f5701220973b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) { Elt "hello" 5 }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out index 7031b7b17af2..bd8892a9f5f2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage496578814--input507231566-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out index aeb43c6426ae..97e7c0727502 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage547821324--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack storage (Pair None {}) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out index 009a78475dcd..9f68f1441881 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input156280093-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack storage (Pair (Some 1) { Elt "2" 2 }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out index 893067fea180..abf052833c69 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_and_update_map--storage796012494--input228164856-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack storage (Pair (Some 2) { Elt "1" 1 }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out index 4dd25ee0474a..a146fa72f46c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some "hi") { Elt "hello" "hi" }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out index bf4258ea3655..7570edbaeecb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage139236239--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack storage (Pair None { Elt "hello" "hi" }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out index f0c9b28914df..94f64afc56b9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -get_map_value--storage329396864--input156280093-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack storage (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out index fc74c740a469..ca43c3a83327 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input1040351577-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out index 7fa2caca4f70..13e51db5be55 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_key--storage921624073--input153350004-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack storage (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out index 26310cb2dd6c..bfd3991816a9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input3431716-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack storage 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out index f6052fdc3a86..7577fe5be2ad 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -hash_string--storage151303925--input535018041-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack storage 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out index cbdf54690628..1d6e00aedadd 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input False --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input False --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out index 4ec815d1a3e4..dd559c059ead 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input True --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input True --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out index bb16afdb4d73..ce8655b9b61f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input288201633-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack storage "hello" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out index a7a003802134..46810f3b288b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -if_some--storage398998998--input921624073-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack storage "" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out index f0fb66a5e650..b042e957adc3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack storage (Some 1) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out index c59f219b339f..26e2fd4dccae 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input535454136-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack storage (Some 9999) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out index 9088ee55b531..b74241e7a2a4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -int--storage921624073--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out index 791245043bfb..481b728e4b6c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -keccak--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out index 56295d6b4b1b..c81181840e1d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input202098045-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack storage (Right True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out index be216d354faa..6f2b55d6809c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -left_right--storage4177631--input44576556-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack storage (Left "a") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out index 303be80ed128..d69012e5c523 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -level--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out index 4ef8a9b6d8d0..cf3e4a6a2ec4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack storage "abc" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out index ad82c0887e8f..9f9a4252f50b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat--storage717096222--input546523343-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack storage "abcdef" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out index c24c28976f06..cdd7ba039859 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input220724351-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack storage 0x001100 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out index 9b39bd7593ff..9f8de67cecf0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage149262694--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack storage 0x emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out index aaa5031021e8..680bf6c37605 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage65410082--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack storage 0xabcd emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out index d75d50309954..cc6dc5a2973c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_concat_bytes--storage726220441--input972761363-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack storage 0x00abcdef00 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out index a4728525168f..8641ba932bd5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out index 06fa025f65c9..ef96c7b9876c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out index 9f940627dd3d..5472283128ec 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out index 77f8015991d4..9a2796b8382f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out index df9818e79bc0..756bcb1d0842 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out index 71f875f99280..da15b62210aa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_id_map--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out index 75bbae05fe5c..10dc2fcbe977 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input568817463-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack storage 20 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out index 7bc166f0e7c4..7ff35e92aee3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_iter--storage680650890--input737923774-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack storage 162 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out index 05df3a80babc..79c406f165c8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out index 3a09b07b7764..d52cbeec8a88 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input648737279-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack storage { 1 ; 3 ; 5 ; 3 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out index aadc12022035..79e3a4ed6550 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_map_block--storage907453363--input908379154-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack storage { 1 ; 2 ; 3 ; 4 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out index 82ec64a4826a..4e8a42603ced 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out index 4d5481234198..725ed53bb493 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out index 73d830887000..a5dbf10f4002 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out index fc60f1bd0d41..d10e87630bd0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -list_size--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out index 616482b1e619..042928bd753d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out index 29d81aacd087..a6b01f1e6e4b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -loop_left--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out index fbfa0297f0b1..5fbeb97b659c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsl_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsl_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsl_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out index eb40ab93ae38..06afdcd53f8a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -lsr_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsr_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsr_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out index c7b3d0bcc6ab..add596cf2977 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input1027566226-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack storage { Elt 0 0 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out index de084914d24d..045595a2e754 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input276660554-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack storage { Elt 0 0 ; Elt 3 4 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out index 6023127daee0..477b5d26cbba 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_id--storage457300675--input599923743-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack storage { Elt 0 1 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out index 99bb9ffa1b1b..b46417a39779 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input403579222-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 3 101) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out index ce7404644bcd..5edd4a2018db 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_iter--storage1011138251--input532072758-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 2 200) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out index dcaeef9bccd0..01e667695fc2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out index 0890a8d10306..818f6a3d7e37 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage794999348--input152441147-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack storage { Elt "bar" 20 ; Elt "foo" 16 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out index 7cbc236e54b1..0fdcdc6adcee 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_map--storage88008216--input798141440-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack storage { Elt "foo" 11 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out index ea2befa0cad7..900b0b236b47 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out index d788a29e8944..db46984e8354 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out index 3167fb8413d3..86ad7203f5f4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out index 6fc48dde7a25..04380149323c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out index dc737570814d..3ce7f11ab1f7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 0 } (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out index a84c7e9a0cc9..b5c101201e19 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_nat--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 0 1 } (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out index b5e2796464ae..a6b8c6713af3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out index 1b1809317741..7271391739d5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out index 39b90c1df6e8..6e7845fada69 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out index c4fad380474b..a1fa57cb8846 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out index d84decb962d5..4b42f6178e7a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "foo" 1 } (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out index 54d69b2d1c21..e7fde05ba814 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_mem_string--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "foo" 0 } (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out index 7b42af654b4c..2edada0d341a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input15265129-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out index fb28d588a8a8..a5f2e5fd5e44 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input158311065-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out index a85af44e36e3..8a1fd35dfe68 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input456982702-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out index 7ab79d0089fd..dfea9a181108 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -map_size--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out index b00d32069317..30a22891cce7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mul--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out index 77199b1910c0..6e46f805f001 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack storage 0x0101000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out index a4d0757f6ebb..c0a12b83820f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack storage 0x1000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out index 1de42521343e..7b26bb7c547f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input1067298059-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack storage 2 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out index 7756f01e131d..a9b7f5c9edc9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input380029349-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out index 155fad33174d..ba1c68dcfd1e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input563503226-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out index daaa97f9bda6..0d4a56cf8b38 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input788662499-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out index 58584866000c..68d4bc39f48c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -neg--storage680650890--input972832189-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out index d7fdacefeac0..bf30540f6d16 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -none--storage11179311--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out index a5ee413f2c99..72d9fba6d1e7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input False --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input False --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out index 06a36205a109..8e67439633cd 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input True --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input True --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out index c4538c5d01d5..4c3eacd3dc45 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input1051197453-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out index 95af6200ca27..cbf85bbb11b1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input123939249-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out index 0f77bc0e9f90..0ef1ffb5b620 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input24243730-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out index bc6b8837356e..1c4bf1bac351 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input518945720-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out index 48f546948e69..d00ade47326f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input788662499-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out index a602fe2ae3a0..3c81b4e02982 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input906118781-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out index b48af1d3dc1a..96037b7e6e96 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input921874253-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out index 188d5d601b82..970f5c48f356 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_binary--storage921624073--input972832189-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out index 62591526f17e..50d044c5f11e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -not_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out index c8dec9401a3f..e7054f500963 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out index 2f8509fb52b0..851e5ce843f4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out index a3e86675d6bd..d4de4e81bb78 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out index 511dfcfefcc3..bcd95b69f539 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out index 807b62c63b5e..6dbe0bfa6492 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input1056991424-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out index 0ba8267a179c..1075d23c3a2d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input375993021-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out index c47111a954f1..7c1b9849ff08 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input673240563-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out index 7e0a3192a80f..14b58fc73c54 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input747448890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out index 91ff7bac3f8e..74c1d7a219a4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input832403787-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out index 7756a1bd5ac4..f17f718c7513 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_binary--storage921624073--input858098961-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack storage (Some 12) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out index f479aeddf2ec..68534af9b1f4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -or_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out index c652e4d3892d..32a3622df148 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input305844558-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out index f26e413e7b70..28c1637dbf5d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev--storage125992234--input646365167-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out index cdb836dd0c16..c7a1d68b0274 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out index e619b5af1926..91b0d23ad2cf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out index 456cca3f7841..1c8af010244e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some (Pair False True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out index 08fdc90d0cbb..d633a24be547 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some (Pair True False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out index cc832e203edf..db7f13912087 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some (Pair False False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out index 7579d41f688c..0d0ed24ae99c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pair_id--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some (Pair True True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out index 5403882b4b44..4e3118cb87c9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec--storage256947135--input1050356042-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack storage 52 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out index 95c8d32cd8fe..06747fd32d3a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -pexec_2--storage197120858--input179371027-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack storage { 0 ; 7 ; 14 ; 21 } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out index c9230f4d9262..fb4d90b11827 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -ret_int--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack storage (Some 300) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out index d558aaf3bd95..8f7e13e10b8c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out index da1e9cef329d..c65701befa72 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out index 9895ebdffa63..917f4fc82dca 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out index 94a0f093ba13..c9bd7bf16942 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -reverse_loop--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out index aa2de372f498..d01f970977ab 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sapling_empty_state--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out index 439d2baf9532..8e137688b695 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_address--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out index 82c04ab6f5c4..a62c46ec1472 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out index a74ed40f6270..8019b9f3adf0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out index 2a0c7cbcff9b..897894e43d33 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input620760059-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack storage (Pair "world" 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out index 93123c54aa96..9258802bd758 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input717096222-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack storage (Pair "abc" 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out index 42e1c02b8671..6550ceb5f6e7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_car--storage224747103--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack storage (Pair "" 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out index c1a6193faae3..2925508b9901 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage205576101--input654274102-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack storage (Pair "hello" 3) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out index de492102755f..334730b0b24b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage224747103--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack storage (Pair "hello" 1) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out index 89fd806f4fb6..0e87ac82256b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_cdr--storage611418174--input967284912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack storage (Pair "hello" 100) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out index 96e76c09b1ac..3c4a359738f8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out index d6f503f76803..9974683bc94b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out index a4a5aa675cae..a3d1e216a007 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_id--storage457300675--input989507347-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack storage { "asdf" ; "bcde" } emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out index 20185cfeb461..731fdc1ca4f5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out index e79615a31fa6..fc77bec81e41 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input701684511-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack storage -94 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out index c59448b67e28..1f4b9f459ddc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_iter--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out index 08b806d4fe70..6f2eef5ee474 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage495706788--input33757838-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out index 9d21da484707..be59acdfb07a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage550087893--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack storage (Pair { "Hello" ; "World" } (Some False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out index 7a264ef5fc34..c0c9318715ec 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_member--storage605111220--input33757838-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack storage (Pair { "Hi" } (Some True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out index 09e816070d22..f6128764bd4a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out index cd877078eff2..5ef6752d0a58 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out index 0ed12cb9d7e1..0d361b94476a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out index aaf368fbed42..e58fb45048d0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -set_size--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out index 87bf909749e9..5bde5df0e3fe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sha3--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out index 5e18f15293e6..d5eefdd393c5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input115382786-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack storage (Some 60) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out index 883562f305d3..a56458728dfa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input271566295-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out index 4ec2131812e9..5644eadd3afa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input340971987-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out index 61bd91df6ca9..f927ee636c95 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input374168553-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack storage (Some 3) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out index b4f09c75e464..b2c27b1c59ff 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input413621582-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out index b9e2c1f5da3a..c01b8eeb6f0d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input424849461-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out index a0924d554e42..88ddb5c5e888 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input485030042-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack storage (Some 16) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out index b47420b26d04..1293e8c557e6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input705767726-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out index 5c80cf8fb775..2b1c5704adb6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input769385932-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out index d628e6e1a9d2..d22e44063172 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -shifts--storage921624073--input913715337-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out index 6e31cd8a812a..162a653cf6f3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage351480851--input65907686-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out index 2204f2877078..0b3e0aa59770 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input198821575-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack storage (Some "o") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out index 6ff4e7f09d4d..c67c4acb2ebb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input359592843-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out index 407154de8fae..37b552114cc2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input551316239-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack storage (Some "") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out index cb6da9570834..5aeacd467a3f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input722749044-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out index cff673495a86..6b04446cfbba 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input839234860-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out index 2510c3a43e8e..4afb58d49f5b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage364922380--input919180079-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack storage (Some "Fo") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out index db4cfbf47e72..dbc8a9d5687e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice--storage921624073--input551316239-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out index 3bb91a68ad89..be651a6d6aeb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input198821575-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack storage (Some 0xbb) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out index f77b8d18f822..75d79bbe2173 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input462551352-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack storage (Some 0xaa) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out index c7b17ab27c02..e3d432110c16 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input489157380-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack storage (Some 0xbbcc) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out index 53dcbb68a392..cbd6d6a05d3b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input551316239-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack storage (Some 0x) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out index 325b0e58273c..1d8786ea6539 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input669330759-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out index cd36aa197200..aa38a0027cca 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input743596105-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack storage (Some 0xcc) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out index 05b803c2a814..7ea763c91f6c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage229749865--input839234860-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out index 72c8372cbf39..6bd4d4362d02 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage504917929--input65907686-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out index 081098d30f4c..60e7518f14eb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -slice_bytes--storage921624073--input462551352-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out index c4a168b686e5..6f1c68940cd0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input1016369050-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack storage (Some "abcd") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out index 8810ec1be9c6..5750b812eb09 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -str_id--storage921624073--input93477117-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack storage (Some "Hello") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out index 5f1e6d63a185..2881d5192c73 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack storage "1970-01-01T00:00:00Z" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out index 2305e302d1c2..c5f1a5f07403 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack storage "1970-01-01T00:03:20Z" emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out index f55e23424375..87ba9193ba07 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack storage -1999999999999999900 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out index 1b56fe4c6c36..db073b3f9fdb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input706350605-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack storage (Some (Pair 3320000 1300000)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out index 03de49b923c7..e69626dd1c53 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -tez_add_sub--storage921624073--input856198194-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack storage (Some (Pair 3000000 1000000)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out index bc12e681944a..78303ec0664f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -uncomb--storage680650890--input394061083-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack storage 142 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out index d5c143f1f8ac..c61d08f5cb26 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -unpair--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out index faa678869e55..95663fba24c3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -voting_power--storage1011138251--input1040351577-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Pair 4000000000000 20000000000000) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out index 26ebea341420..51c9afdbb250 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1058477720-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out index fa87f9de3012..fc01e0f44ae1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input1073176155-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out index 00b8840bf5cf..fab45dd3ebbd 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input246594902-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out index 6a5c9eed2553..abfa63834efa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input506603577-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out index 3fca93bef28d..f08b110bd057 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input576248088-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out index ce38ef24babc..723820851a36 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input612012282-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack storage (Some (Right 63)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out index 78080c6ccd96..75cb9ada3887 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input617591686-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out index 0ec3532de834..c65c69d6742b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input639311176-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out index efd51b965cb1..b18ce43eff5e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input688315180-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack storage (Some (Right 21)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out index 2fafd0c78257..406042931367 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor--storage921624073--input967929605-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out index 15ef4d716b8a..f631d65ae925 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Beta-- opcodes -xor_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out b/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out index a24c365ae48c..df97d7a9e6af 100644 --- a/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out +++ b/tezt/tests/expected/contract_typecheck_regression.ml/Beta-- Tc scripts.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings typecheck script michelson_test_scripts/attic/accounts.tz michelson_test_scripts/attic/add1.tz michelson_test_scripts/attic/add1_list.tz michelson_test_scripts/attic/after_strategy.tz michelson_test_scripts/attic/always.tz michelson_test_scripts/attic/append.tz michelson_test_scripts/attic/at_least.tz michelson_test_scripts/attic/auction.tz michelson_test_scripts/attic/bad_lockup.tz michelson_test_scripts/attic/big_map_union.tz michelson_test_scripts/attic/cadr_annotation.tz michelson_test_scripts/attic/concat.tz michelson_test_scripts/attic/conditionals.tz michelson_test_scripts/attic/cons_twice.tz michelson_test_scripts/attic/cps_fact.tz michelson_test_scripts/attic/create_add1_lists.tz michelson_test_scripts/attic/data_publisher.tz michelson_test_scripts/attic/dispatch.tz michelson_test_scripts/attic/empty.tz michelson_test_scripts/attic/fail_amount.tz michelson_test_scripts/attic/faucet.tz michelson_test_scripts/attic/forward.tz michelson_test_scripts/attic/id.tz michelson_test_scripts/attic/infinite_loop.tz michelson_test_scripts/attic/insertion_sort.tz michelson_test_scripts/attic/int_publisher.tz michelson_test_scripts/attic/king_of_tez.tz michelson_test_scripts/attic/list_of_transactions.tz michelson_test_scripts/attic/queue.tz michelson_test_scripts/attic/reduce_map.tz michelson_test_scripts/attic/reentrancy.tz michelson_test_scripts/attic/reservoir.tz michelson_test_scripts/attic/scrutable_reservoir.tz michelson_test_scripts/attic/spawn_identities.tz michelson_test_scripts/entrypoints/big_map_entrypoints.tz michelson_test_scripts/entrypoints/delegatable_target.tz michelson_test_scripts/entrypoints/manager.tz michelson_test_scripts/entrypoints/no_default_target.tz michelson_test_scripts/entrypoints/no_entrypoint_target.tz michelson_test_scripts/entrypoints/rooted_target.tz michelson_test_scripts/entrypoints/simple_entrypoints.tz michelson_test_scripts/macros/assert.tz michelson_test_scripts/macros/assert_cmpeq.tz michelson_test_scripts/macros/assert_cmpge.tz michelson_test_scripts/macros/assert_cmpgt.tz michelson_test_scripts/macros/assert_cmple.tz michelson_test_scripts/macros/assert_cmplt.tz michelson_test_scripts/macros/assert_cmpneq.tz michelson_test_scripts/macros/assert_eq.tz michelson_test_scripts/macros/assert_ge.tz michelson_test_scripts/macros/assert_gt.tz michelson_test_scripts/macros/assert_le.tz michelson_test_scripts/macros/assert_lt.tz michelson_test_scripts/macros/assert_neq.tz michelson_test_scripts/macros/big_map_get_add.tz michelson_test_scripts/macros/big_map_mem.tz michelson_test_scripts/macros/build_list.tz michelson_test_scripts/macros/carn_and_cdrn.tz michelson_test_scripts/macros/compare.tz michelson_test_scripts/macros/compare_bytes.tz michelson_test_scripts/macros/fail.tz michelson_test_scripts/macros/guestbook.tz michelson_test_scripts/macros/macro_annotations.tz michelson_test_scripts/macros/map_caddaadr.tz michelson_test_scripts/macros/max_in_list.tz michelson_test_scripts/macros/min.tz michelson_test_scripts/macros/pair_macro.tz michelson_test_scripts/macros/set_caddaadr.tz michelson_test_scripts/macros/take_my_money.tz michelson_test_scripts/macros/unpair_macro.tz michelson_test_scripts/mini_scenarios/999_constant.tz michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz michelson_test_scripts/mini_scenarios/always_fails.tz michelson_test_scripts/mini_scenarios/authentication.tz michelson_test_scripts/mini_scenarios/big_map_all.tz michelson_test_scripts/mini_scenarios/big_map_entrypoints.tz michelson_test_scripts/mini_scenarios/big_map_magic.tz michelson_test_scripts/mini_scenarios/big_map_read.tz michelson_test_scripts/mini_scenarios/big_map_store.tz michelson_test_scripts/mini_scenarios/big_map_write.tz michelson_test_scripts/mini_scenarios/cache_consistency.tz michelson_test_scripts/mini_scenarios/check_signature.tz michelson_test_scripts/mini_scenarios/constant_entrypoints.tz michelson_test_scripts/mini_scenarios/constant_unit.tz michelson_test_scripts/mini_scenarios/create_contract.tz michelson_test_scripts/mini_scenarios/create_contract_simple.tz michelson_test_scripts/mini_scenarios/default_account.tz michelson_test_scripts/mini_scenarios/emit_events.tz michelson_test_scripts/mini_scenarios/execution_order_appender.tz michelson_test_scripts/mini_scenarios/execution_order_caller.tz michelson_test_scripts/mini_scenarios/execution_order_storer.tz michelson_test_scripts/mini_scenarios/fa12_reference.tz michelson_test_scripts/mini_scenarios/fail_on_false.tz michelson_test_scripts/mini_scenarios/generic_multisig.tz michelson_test_scripts/mini_scenarios/groth16.tz michelson_test_scripts/mini_scenarios/hardlimit.tz michelson_test_scripts/mini_scenarios/large_error.tz michelson_test_scripts/mini_scenarios/large_flat_contract.tz michelson_test_scripts/mini_scenarios/large_str_id.tz michelson_test_scripts/mini_scenarios/legacy_multisig.tz michelson_test_scripts/mini_scenarios/lockup.tz michelson_test_scripts/mini_scenarios/loop.tz michelson_test_scripts/mini_scenarios/lqt_fa12.mligo.tz michelson_test_scripts/mini_scenarios/multiple_en2.tz michelson_test_scripts/mini_scenarios/multiple_entrypoints_counter.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint_arg.tz michelson_test_scripts/mini_scenarios/nat_id.tz michelson_test_scripts/mini_scenarios/noop_bytes.tz michelson_test_scripts/mini_scenarios/originate_contract.tz michelson_test_scripts/mini_scenarios/parameterized_multisig.tz michelson_test_scripts/mini_scenarios/parsable_contract.tz michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz michelson_test_scripts/mini_scenarios/replay.tz michelson_test_scripts/mini_scenarios/reveal_signed_preimage.tz michelson_test_scripts/mini_scenarios/sc_rollup_forward.tz michelson_test_scripts/mini_scenarios/sc_rollup_mint_and_forward.tz michelson_test_scripts/mini_scenarios/self_address_receiver.tz michelson_test_scripts/mini_scenarios/self_address_sender.tz michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz michelson_test_scripts/mini_scenarios/send_ticket_list_multiple_016.tz michelson_test_scripts/mini_scenarios/send_tickets_from_storage_016.tz michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz michelson_test_scripts/mini_scenarios/smart_rollup_mint_and_deposit_ticket_016.tz michelson_test_scripts/mini_scenarios/smart_rollup_receive_tickets_016.tz michelson_test_scripts/mini_scenarios/str_id.tz michelson_test_scripts/mini_scenarios/ticket_builder_fungible.tz michelson_test_scripts/mini_scenarios/ticket_builder_non_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_non_fungible.tz michelson_test_scripts/mini_scenarios/tickets_015.tz michelson_test_scripts/mini_scenarios/tickets_bag_016.tz michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_create_and_send_015.tz michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_mint_and_store_complex_param.tz michelson_test_scripts/mini_scenarios/tickets_receive_and_store.tz michelson_test_scripts/mini_scenarios/tickets_send_016.tz michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz michelson_test_scripts/mini_scenarios/tickets_store_fst_and_rely_snd.tz michelson_test_scripts/mini_scenarios/tzip4_view.tz michelson_test_scripts/mini_scenarios/very_small.tz michelson_test_scripts/mini_scenarios/view_check_caller.tz michelson_test_scripts/mini_scenarios/view_registers_callers.tz michelson_test_scripts/mini_scenarios/viewable.tz michelson_test_scripts/mini_scenarios/vote_for_delegate.tz michelson_test_scripts/mini_scenarios/weather_insurance.tz michelson_test_scripts/mini_scenarios/xcat.tz michelson_test_scripts/mini_scenarios/xcat_dapp.tz michelson_test_scripts/non_regression/262_bug.tz michelson_test_scripts/non_regression/843_bug.tz michelson_test_scripts/non_regression/bad_annot_contract.tz michelson_test_scripts/non_regression/pairk_annot.tz michelson_test_scripts/opcodes/abs.tz michelson_test_scripts/opcodes/add.tz michelson_test_scripts/opcodes/add_bls12_381_fr.tz michelson_test_scripts/opcodes/add_bls12_381_g1.tz michelson_test_scripts/opcodes/add_bls12_381_g2.tz michelson_test_scripts/opcodes/add_delta_timestamp.tz michelson_test_scripts/opcodes/add_timestamp_delta.tz michelson_test_scripts/opcodes/address.tz michelson_test_scripts/opcodes/amount_after_fib_view.tz michelson_test_scripts/opcodes/amount_after_nonexistent_view.tz michelson_test_scripts/opcodes/amount_after_view.tz michelson_test_scripts/opcodes/and.tz michelson_test_scripts/opcodes/and_binary.tz michelson_test_scripts/opcodes/and_bytes_016.tz michelson_test_scripts/opcodes/and_logical_1.tz michelson_test_scripts/opcodes/balance.tz michelson_test_scripts/opcodes/balance_after_fib_view.tz michelson_test_scripts/opcodes/balance_after_nonexistent_view.tz michelson_test_scripts/opcodes/balance_after_view.tz michelson_test_scripts/opcodes/big_map_mem_nat.tz michelson_test_scripts/opcodes/big_map_mem_string.tz michelson_test_scripts/opcodes/big_map_to_self.tz michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz michelson_test_scripts/opcodes/bytes.tz michelson_test_scripts/opcodes/bytes_of_int_016.tz michelson_test_scripts/opcodes/bytes_of_nat_016.tz michelson_test_scripts/opcodes/car.tz michelson_test_scripts/opcodes/cdr.tz michelson_test_scripts/opcodes/chain_id.tz michelson_test_scripts/opcodes/chain_id_store.tz michelson_test_scripts/opcodes/check_signature.tz michelson_test_scripts/opcodes/comb.tz michelson_test_scripts/opcodes/comb-get.tz michelson_test_scripts/opcodes/comb-literals.tz michelson_test_scripts/opcodes/comb-set.tz michelson_test_scripts/opcodes/comb-set-2.tz michelson_test_scripts/opcodes/compare.tz michelson_test_scripts/opcodes/compare_big_type.tz michelson_test_scripts/opcodes/compare_big_type2.tz michelson_test_scripts/opcodes/comparisons.tz michelson_test_scripts/opcodes/concat_hello.tz michelson_test_scripts/opcodes/concat_hello_bytes.tz michelson_test_scripts/opcodes/concat_list.tz michelson_test_scripts/opcodes/cons.tz michelson_test_scripts/opcodes/contains_all.tz michelson_test_scripts/opcodes/contract.tz michelson_test_scripts/opcodes/create_contract.tz michelson_test_scripts/opcodes/create_contract_rootname.tz michelson_test_scripts/opcodes/create_contract_rootname_alt.tz michelson_test_scripts/opcodes/create_contract_with_view.tz michelson_test_scripts/opcodes/diff_timestamps.tz michelson_test_scripts/opcodes/dig_eq.tz michelson_test_scripts/opcodes/dign.tz michelson_test_scripts/opcodes/dip.tz michelson_test_scripts/opcodes/dipn.tz michelson_test_scripts/opcodes/dropn.tz michelson_test_scripts/opcodes/dugn.tz michelson_test_scripts/opcodes/dup-n.tz michelson_test_scripts/opcodes/ediv.tz michelson_test_scripts/opcodes/ediv_mutez.tz michelson_test_scripts/opcodes/emit.tz michelson_test_scripts/opcodes/empty_map.tz michelson_test_scripts/opcodes/exec_concat.tz michelson_test_scripts/opcodes/fact.tz michelson_test_scripts/opcodes/first.tz michelson_test_scripts/opcodes/get_and_update_big_map.tz michelson_test_scripts/opcodes/get_and_update_map.tz michelson_test_scripts/opcodes/get_big_map_value.tz michelson_test_scripts/opcodes/get_map_value.tz michelson_test_scripts/opcodes/hash_consistency_checker.tz michelson_test_scripts/opcodes/hash_key.tz michelson_test_scripts/opcodes/hash_string.tz michelson_test_scripts/opcodes/if.tz michelson_test_scripts/opcodes/if_some.tz michelson_test_scripts/opcodes/int.tz michelson_test_scripts/opcodes/iter_fail.tz michelson_test_scripts/opcodes/keccak.tz michelson_test_scripts/opcodes/left_right.tz michelson_test_scripts/opcodes/level.tz michelson_test_scripts/opcodes/list_concat.tz michelson_test_scripts/opcodes/list_concat_bytes.tz michelson_test_scripts/opcodes/list_id.tz michelson_test_scripts/opcodes/list_id_map.tz michelson_test_scripts/opcodes/list_iter.tz michelson_test_scripts/opcodes/list_map_block.tz michelson_test_scripts/opcodes/list_size.tz michelson_test_scripts/opcodes/loop_failwith.tz michelson_test_scripts/opcodes/loop_left.tz michelson_test_scripts/opcodes/loop_left_failwith.tz michelson_test_scripts/opcodes/lsl_bytes_016.tz michelson_test_scripts/opcodes/lsr_bytes_016.tz michelson_test_scripts/opcodes/map_car.tz michelson_test_scripts/opcodes/map_id.tz michelson_test_scripts/opcodes/map_iter.tz michelson_test_scripts/opcodes/map_map.tz michelson_test_scripts/opcodes/map_map_sideeffect.tz michelson_test_scripts/opcodes/map_mem_nat.tz michelson_test_scripts/opcodes/map_mem_string.tz michelson_test_scripts/opcodes/map_size.tz michelson_test_scripts/opcodes/merge_comparable_pairs.tz michelson_test_scripts/opcodes/mul.tz michelson_test_scripts/opcodes/mul_bls12_381_fr.tz michelson_test_scripts/opcodes/mul_bls12_381_g1.tz michelson_test_scripts/opcodes/mul_bls12_381_g2.tz michelson_test_scripts/opcodes/mul_overflow.tz michelson_test_scripts/opcodes/munch.tz michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz michelson_test_scripts/opcodes/neg.tz michelson_test_scripts/opcodes/neg_bls12_381_fr.tz michelson_test_scripts/opcodes/neg_bls12_381_g1.tz michelson_test_scripts/opcodes/neg_bls12_381_g2.tz michelson_test_scripts/opcodes/none.tz michelson_test_scripts/opcodes/noop.tz michelson_test_scripts/opcodes/not.tz michelson_test_scripts/opcodes/not_binary.tz michelson_test_scripts/opcodes/not_bytes_016.tz michelson_test_scripts/opcodes/or.tz michelson_test_scripts/opcodes/or_binary.tz michelson_test_scripts/opcodes/or_bytes_016.tz michelson_test_scripts/opcodes/originate_big_map.tz michelson_test_scripts/opcodes/packunpack.tz michelson_test_scripts/opcodes/packunpack_rev.tz michelson_test_scripts/opcodes/packunpack_rev_cty.tz michelson_test_scripts/opcodes/pair_id.tz michelson_test_scripts/opcodes/pairing_check.tz michelson_test_scripts/opcodes/pexec.tz michelson_test_scripts/opcodes/pexec_2.tz michelson_test_scripts/opcodes/proxy.tz michelson_test_scripts/opcodes/ret_int.tz michelson_test_scripts/opcodes/reverse.tz michelson_test_scripts/opcodes/reverse_loop.tz michelson_test_scripts/opcodes/sapling_empty_state.tz michelson_test_scripts/opcodes/self.tz michelson_test_scripts/opcodes/self_address.tz michelson_test_scripts/opcodes/self_address_after_fib_view.tz michelson_test_scripts/opcodes/self_address_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_address_after_view.tz michelson_test_scripts/opcodes/self_after_fib_view.tz michelson_test_scripts/opcodes/self_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_after_view.tz michelson_test_scripts/opcodes/self_with_default_entrypoint.tz michelson_test_scripts/opcodes/self_with_entrypoint.tz michelson_test_scripts/opcodes/sender.tz michelson_test_scripts/opcodes/sender_after_fib_view.tz michelson_test_scripts/opcodes/sender_after_nonexistent_view.tz michelson_test_scripts/opcodes/sender_after_view.tz michelson_test_scripts/opcodes/set_car.tz michelson_test_scripts/opcodes/set_cdr.tz michelson_test_scripts/opcodes/set_delegate.tz michelson_test_scripts/opcodes/set_id.tz michelson_test_scripts/opcodes/set_iter.tz michelson_test_scripts/opcodes/set_member.tz michelson_test_scripts/opcodes/set_size.tz michelson_test_scripts/opcodes/sets.tz michelson_test_scripts/opcodes/sha3.tz michelson_test_scripts/opcodes/shifts.tz michelson_test_scripts/opcodes/slice.tz michelson_test_scripts/opcodes/slice_bytes.tz michelson_test_scripts/opcodes/slices.tz michelson_test_scripts/opcodes/source.tz michelson_test_scripts/opcodes/split_bytes.tz michelson_test_scripts/opcodes/split_string.tz michelson_test_scripts/opcodes/store_bls12_381_fr.tz michelson_test_scripts/opcodes/store_bls12_381_g1.tz michelson_test_scripts/opcodes/store_bls12_381_g2.tz michelson_test_scripts/opcodes/store_input.tz michelson_test_scripts/opcodes/store_now.tz michelson_test_scripts/opcodes/str_id.tz michelson_test_scripts/opcodes/sub_timestamp_delta.tz michelson_test_scripts/opcodes/subset.tz michelson_test_scripts/opcodes/tez_add_sub.tz michelson_test_scripts/opcodes/ticket_bad.tz michelson_test_scripts/opcodes/ticket_big_store.tz michelson_test_scripts/opcodes/ticket_join.tz michelson_test_scripts/opcodes/ticket_read.tz michelson_test_scripts/opcodes/ticket_split.tz michelson_test_scripts/opcodes/ticket_store.tz michelson_test_scripts/opcodes/ticket_store-2.tz michelson_test_scripts/opcodes/ticketer.tz michelson_test_scripts/opcodes/ticketer-2.tz michelson_test_scripts/opcodes/transfer_amount.tz michelson_test_scripts/opcodes/transfer_tokens.tz michelson_test_scripts/opcodes/uncomb.tz michelson_test_scripts/opcodes/unpair.tz michelson_test_scripts/opcodes/unpair_field_annotation_mismatch.tz michelson_test_scripts/opcodes/update_big_map.tz michelson_test_scripts/opcodes/utxo_read.tz michelson_test_scripts/opcodes/utxor.tz michelson_test_scripts/opcodes/view_fib.tz michelson_test_scripts/opcodes/view_mutual_recursion.tz michelson_test_scripts/opcodes/view_op_add.tz michelson_test_scripts/opcodes/view_op_constant.tz michelson_test_scripts/opcodes/view_op_id.tz michelson_test_scripts/opcodes/view_op_nonexistent_addr.tz michelson_test_scripts/opcodes/view_op_nonexistent_func.tz michelson_test_scripts/opcodes/view_op_test_step_contants.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_input_type.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_output_type.tz michelson_test_scripts/opcodes/view_rec.tz michelson_test_scripts/opcodes/view_toplevel_lib.tz michelson_test_scripts/opcodes/voting_power.tz michelson_test_scripts/opcodes/xor.tz michelson_test_scripts/opcodes/xor_bytes_016.tz --details --display-names +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings typecheck script michelson_test_scripts/attic/accounts.tz michelson_test_scripts/attic/add1.tz michelson_test_scripts/attic/add1_list.tz michelson_test_scripts/attic/after_strategy.tz michelson_test_scripts/attic/always.tz michelson_test_scripts/attic/append.tz michelson_test_scripts/attic/at_least.tz michelson_test_scripts/attic/auction.tz michelson_test_scripts/attic/bad_lockup.tz michelson_test_scripts/attic/big_map_union.tz michelson_test_scripts/attic/cadr_annotation.tz michelson_test_scripts/attic/concat.tz michelson_test_scripts/attic/conditionals.tz michelson_test_scripts/attic/cons_twice.tz michelson_test_scripts/attic/cps_fact.tz michelson_test_scripts/attic/create_add1_lists.tz michelson_test_scripts/attic/data_publisher.tz michelson_test_scripts/attic/dispatch.tz michelson_test_scripts/attic/empty.tz michelson_test_scripts/attic/fail_amount.tz michelson_test_scripts/attic/faucet.tz michelson_test_scripts/attic/forward.tz michelson_test_scripts/attic/id.tz michelson_test_scripts/attic/infinite_loop.tz michelson_test_scripts/attic/insertion_sort.tz michelson_test_scripts/attic/int_publisher.tz michelson_test_scripts/attic/king_of_tez.tz michelson_test_scripts/attic/list_of_transactions.tz michelson_test_scripts/attic/queue.tz michelson_test_scripts/attic/reduce_map.tz michelson_test_scripts/attic/reentrancy.tz michelson_test_scripts/attic/reservoir.tz michelson_test_scripts/attic/scrutable_reservoir.tz michelson_test_scripts/attic/spawn_identities.tz michelson_test_scripts/entrypoints/big_map_entrypoints.tz michelson_test_scripts/entrypoints/delegatable_target.tz michelson_test_scripts/entrypoints/manager.tz michelson_test_scripts/entrypoints/no_default_target.tz michelson_test_scripts/entrypoints/no_entrypoint_target.tz michelson_test_scripts/entrypoints/rooted_target.tz michelson_test_scripts/entrypoints/simple_entrypoints.tz michelson_test_scripts/macros/assert.tz michelson_test_scripts/macros/assert_cmpeq.tz michelson_test_scripts/macros/assert_cmpge.tz michelson_test_scripts/macros/assert_cmpgt.tz michelson_test_scripts/macros/assert_cmple.tz michelson_test_scripts/macros/assert_cmplt.tz michelson_test_scripts/macros/assert_cmpneq.tz michelson_test_scripts/macros/assert_eq.tz michelson_test_scripts/macros/assert_ge.tz michelson_test_scripts/macros/assert_gt.tz michelson_test_scripts/macros/assert_le.tz michelson_test_scripts/macros/assert_lt.tz michelson_test_scripts/macros/assert_neq.tz michelson_test_scripts/macros/big_map_get_add.tz michelson_test_scripts/macros/big_map_mem.tz michelson_test_scripts/macros/build_list.tz michelson_test_scripts/macros/carn_and_cdrn.tz michelson_test_scripts/macros/compare.tz michelson_test_scripts/macros/compare_bytes.tz michelson_test_scripts/macros/fail.tz michelson_test_scripts/macros/guestbook.tz michelson_test_scripts/macros/macro_annotations.tz michelson_test_scripts/macros/map_caddaadr.tz michelson_test_scripts/macros/max_in_list.tz michelson_test_scripts/macros/min.tz michelson_test_scripts/macros/pair_macro.tz michelson_test_scripts/macros/set_caddaadr.tz michelson_test_scripts/macros/take_my_money.tz michelson_test_scripts/macros/unpair_macro.tz michelson_test_scripts/mini_scenarios/999_constant.tz michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz michelson_test_scripts/mini_scenarios/always_fails.tz michelson_test_scripts/mini_scenarios/authentication.tz michelson_test_scripts/mini_scenarios/big_map_all.tz michelson_test_scripts/mini_scenarios/big_map_entrypoints.tz michelson_test_scripts/mini_scenarios/big_map_magic.tz michelson_test_scripts/mini_scenarios/big_map_read.tz michelson_test_scripts/mini_scenarios/big_map_store.tz michelson_test_scripts/mini_scenarios/big_map_write.tz michelson_test_scripts/mini_scenarios/cache_consistency.tz michelson_test_scripts/mini_scenarios/check_signature.tz michelson_test_scripts/mini_scenarios/constant_entrypoints.tz michelson_test_scripts/mini_scenarios/constant_unit.tz michelson_test_scripts/mini_scenarios/create_contract.tz michelson_test_scripts/mini_scenarios/create_contract_simple.tz michelson_test_scripts/mini_scenarios/default_account.tz michelson_test_scripts/mini_scenarios/emit_events.tz michelson_test_scripts/mini_scenarios/execution_order_appender.tz michelson_test_scripts/mini_scenarios/execution_order_caller.tz michelson_test_scripts/mini_scenarios/execution_order_storer.tz michelson_test_scripts/mini_scenarios/fa12_reference.tz michelson_test_scripts/mini_scenarios/fail_on_false.tz michelson_test_scripts/mini_scenarios/generic_multisig.tz michelson_test_scripts/mini_scenarios/groth16.tz michelson_test_scripts/mini_scenarios/hardlimit.tz michelson_test_scripts/mini_scenarios/large_error.tz michelson_test_scripts/mini_scenarios/large_flat_contract.tz michelson_test_scripts/mini_scenarios/large_str_id.tz michelson_test_scripts/mini_scenarios/legacy_multisig.tz michelson_test_scripts/mini_scenarios/lockup.tz michelson_test_scripts/mini_scenarios/loop.tz michelson_test_scripts/mini_scenarios/lqt_fa12.mligo.tz michelson_test_scripts/mini_scenarios/multiple_en2.tz michelson_test_scripts/mini_scenarios/multiple_entrypoints_counter.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint_arg.tz michelson_test_scripts/mini_scenarios/nat_id.tz michelson_test_scripts/mini_scenarios/noop_bytes.tz michelson_test_scripts/mini_scenarios/originate_contract.tz michelson_test_scripts/mini_scenarios/parameterized_multisig.tz michelson_test_scripts/mini_scenarios/parsable_contract.tz michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz michelson_test_scripts/mini_scenarios/replay.tz michelson_test_scripts/mini_scenarios/reveal_signed_preimage.tz michelson_test_scripts/mini_scenarios/sc_rollup_forward.tz michelson_test_scripts/mini_scenarios/sc_rollup_mint_and_forward.tz michelson_test_scripts/mini_scenarios/self_address_receiver.tz michelson_test_scripts/mini_scenarios/self_address_sender.tz michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz michelson_test_scripts/mini_scenarios/send_ticket_list_multiple_016.tz michelson_test_scripts/mini_scenarios/send_tickets_from_storage_016.tz michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz michelson_test_scripts/mini_scenarios/smart_rollup_mint_and_deposit_ticket_016.tz michelson_test_scripts/mini_scenarios/smart_rollup_receive_tickets_016.tz michelson_test_scripts/mini_scenarios/str_id.tz michelson_test_scripts/mini_scenarios/ticket_builder_fungible.tz michelson_test_scripts/mini_scenarios/ticket_builder_non_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_non_fungible.tz michelson_test_scripts/mini_scenarios/tickets_015.tz michelson_test_scripts/mini_scenarios/tickets_bag_016.tz michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_create_and_send_015.tz michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_mint_and_store_complex_param.tz michelson_test_scripts/mini_scenarios/tickets_receive_and_store.tz michelson_test_scripts/mini_scenarios/tickets_send_016.tz michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz michelson_test_scripts/mini_scenarios/tickets_store_fst_and_rely_snd.tz michelson_test_scripts/mini_scenarios/tzip4_view.tz michelson_test_scripts/mini_scenarios/very_small.tz michelson_test_scripts/mini_scenarios/view_check_caller.tz michelson_test_scripts/mini_scenarios/view_registers_callers.tz michelson_test_scripts/mini_scenarios/viewable.tz michelson_test_scripts/mini_scenarios/vote_for_delegate.tz michelson_test_scripts/mini_scenarios/weather_insurance.tz michelson_test_scripts/mini_scenarios/xcat.tz michelson_test_scripts/mini_scenarios/xcat_dapp.tz michelson_test_scripts/non_regression/262_bug.tz michelson_test_scripts/non_regression/843_bug.tz michelson_test_scripts/non_regression/bad_annot_contract.tz michelson_test_scripts/non_regression/pairk_annot.tz michelson_test_scripts/opcodes/abs.tz michelson_test_scripts/opcodes/add.tz michelson_test_scripts/opcodes/add_bls12_381_fr.tz michelson_test_scripts/opcodes/add_bls12_381_g1.tz michelson_test_scripts/opcodes/add_bls12_381_g2.tz michelson_test_scripts/opcodes/add_delta_timestamp.tz michelson_test_scripts/opcodes/add_timestamp_delta.tz michelson_test_scripts/opcodes/address.tz michelson_test_scripts/opcodes/amount_after_fib_view.tz michelson_test_scripts/opcodes/amount_after_nonexistent_view.tz michelson_test_scripts/opcodes/amount_after_view.tz michelson_test_scripts/opcodes/and.tz michelson_test_scripts/opcodes/and_binary.tz michelson_test_scripts/opcodes/and_bytes_016.tz michelson_test_scripts/opcodes/and_logical_1.tz michelson_test_scripts/opcodes/balance.tz michelson_test_scripts/opcodes/balance_after_fib_view.tz michelson_test_scripts/opcodes/balance_after_nonexistent_view.tz michelson_test_scripts/opcodes/balance_after_view.tz michelson_test_scripts/opcodes/big_map_mem_nat.tz michelson_test_scripts/opcodes/big_map_mem_string.tz michelson_test_scripts/opcodes/big_map_to_self.tz michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz michelson_test_scripts/opcodes/bytes.tz michelson_test_scripts/opcodes/bytes_of_int_016.tz michelson_test_scripts/opcodes/bytes_of_nat_016.tz michelson_test_scripts/opcodes/car.tz michelson_test_scripts/opcodes/cdr.tz michelson_test_scripts/opcodes/chain_id.tz michelson_test_scripts/opcodes/chain_id_store.tz michelson_test_scripts/opcodes/check_signature.tz michelson_test_scripts/opcodes/comb.tz michelson_test_scripts/opcodes/comb-get.tz michelson_test_scripts/opcodes/comb-literals.tz michelson_test_scripts/opcodes/comb-set.tz michelson_test_scripts/opcodes/comb-set-2.tz michelson_test_scripts/opcodes/compare.tz michelson_test_scripts/opcodes/compare_big_type.tz michelson_test_scripts/opcodes/compare_big_type2.tz michelson_test_scripts/opcodes/comparisons.tz michelson_test_scripts/opcodes/concat_hello.tz michelson_test_scripts/opcodes/concat_hello_bytes.tz michelson_test_scripts/opcodes/concat_list.tz michelson_test_scripts/opcodes/cons.tz michelson_test_scripts/opcodes/contains_all.tz michelson_test_scripts/opcodes/contract.tz michelson_test_scripts/opcodes/create_contract.tz michelson_test_scripts/opcodes/create_contract_rootname.tz michelson_test_scripts/opcodes/create_contract_rootname_alt.tz michelson_test_scripts/opcodes/create_contract_with_view.tz michelson_test_scripts/opcodes/diff_timestamps.tz michelson_test_scripts/opcodes/dig_eq.tz michelson_test_scripts/opcodes/dign.tz michelson_test_scripts/opcodes/dip.tz michelson_test_scripts/opcodes/dipn.tz michelson_test_scripts/opcodes/dropn.tz michelson_test_scripts/opcodes/dugn.tz michelson_test_scripts/opcodes/dup-n.tz michelson_test_scripts/opcodes/ediv.tz michelson_test_scripts/opcodes/ediv_mutez.tz michelson_test_scripts/opcodes/emit.tz michelson_test_scripts/opcodes/empty_map.tz michelson_test_scripts/opcodes/exec_concat.tz michelson_test_scripts/opcodes/fact.tz michelson_test_scripts/opcodes/first.tz michelson_test_scripts/opcodes/get_and_update_big_map.tz michelson_test_scripts/opcodes/get_and_update_map.tz michelson_test_scripts/opcodes/get_big_map_value.tz michelson_test_scripts/opcodes/get_map_value.tz michelson_test_scripts/opcodes/hash_consistency_checker.tz michelson_test_scripts/opcodes/hash_key.tz michelson_test_scripts/opcodes/hash_string.tz michelson_test_scripts/opcodes/if.tz michelson_test_scripts/opcodes/if_some.tz michelson_test_scripts/opcodes/int.tz michelson_test_scripts/opcodes/iter_fail.tz michelson_test_scripts/opcodes/keccak.tz michelson_test_scripts/opcodes/left_right.tz michelson_test_scripts/opcodes/level.tz michelson_test_scripts/opcodes/list_concat.tz michelson_test_scripts/opcodes/list_concat_bytes.tz michelson_test_scripts/opcodes/list_id.tz michelson_test_scripts/opcodes/list_id_map.tz michelson_test_scripts/opcodes/list_iter.tz michelson_test_scripts/opcodes/list_map_block.tz michelson_test_scripts/opcodes/list_size.tz michelson_test_scripts/opcodes/loop_failwith.tz michelson_test_scripts/opcodes/loop_left.tz michelson_test_scripts/opcodes/loop_left_failwith.tz michelson_test_scripts/opcodes/lsl_bytes_016.tz michelson_test_scripts/opcodes/lsr_bytes_016.tz michelson_test_scripts/opcodes/map_car.tz michelson_test_scripts/opcodes/map_id.tz michelson_test_scripts/opcodes/map_iter.tz michelson_test_scripts/opcodes/map_map.tz michelson_test_scripts/opcodes/map_map_sideeffect.tz michelson_test_scripts/opcodes/map_mem_nat.tz michelson_test_scripts/opcodes/map_mem_string.tz michelson_test_scripts/opcodes/map_size.tz michelson_test_scripts/opcodes/merge_comparable_pairs.tz michelson_test_scripts/opcodes/mul.tz michelson_test_scripts/opcodes/mul_bls12_381_fr.tz michelson_test_scripts/opcodes/mul_bls12_381_g1.tz michelson_test_scripts/opcodes/mul_bls12_381_g2.tz michelson_test_scripts/opcodes/mul_overflow.tz michelson_test_scripts/opcodes/munch.tz michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz michelson_test_scripts/opcodes/neg.tz michelson_test_scripts/opcodes/neg_bls12_381_fr.tz michelson_test_scripts/opcodes/neg_bls12_381_g1.tz michelson_test_scripts/opcodes/neg_bls12_381_g2.tz michelson_test_scripts/opcodes/none.tz michelson_test_scripts/opcodes/noop.tz michelson_test_scripts/opcodes/not.tz michelson_test_scripts/opcodes/not_binary.tz michelson_test_scripts/opcodes/not_bytes_016.tz michelson_test_scripts/opcodes/or.tz michelson_test_scripts/opcodes/or_binary.tz michelson_test_scripts/opcodes/or_bytes_016.tz michelson_test_scripts/opcodes/originate_big_map.tz michelson_test_scripts/opcodes/packunpack.tz michelson_test_scripts/opcodes/packunpack_rev.tz michelson_test_scripts/opcodes/packunpack_rev_cty.tz michelson_test_scripts/opcodes/pair_id.tz michelson_test_scripts/opcodes/pairing_check.tz michelson_test_scripts/opcodes/pexec.tz michelson_test_scripts/opcodes/pexec_2.tz michelson_test_scripts/opcodes/proxy.tz michelson_test_scripts/opcodes/ret_int.tz michelson_test_scripts/opcodes/reverse.tz michelson_test_scripts/opcodes/reverse_loop.tz michelson_test_scripts/opcodes/sapling_empty_state.tz michelson_test_scripts/opcodes/self.tz michelson_test_scripts/opcodes/self_address.tz michelson_test_scripts/opcodes/self_address_after_fib_view.tz michelson_test_scripts/opcodes/self_address_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_address_after_view.tz michelson_test_scripts/opcodes/self_after_fib_view.tz michelson_test_scripts/opcodes/self_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_after_view.tz michelson_test_scripts/opcodes/self_with_default_entrypoint.tz michelson_test_scripts/opcodes/self_with_entrypoint.tz michelson_test_scripts/opcodes/sender.tz michelson_test_scripts/opcodes/sender_after_fib_view.tz michelson_test_scripts/opcodes/sender_after_nonexistent_view.tz michelson_test_scripts/opcodes/sender_after_view.tz michelson_test_scripts/opcodes/set_car.tz michelson_test_scripts/opcodes/set_cdr.tz michelson_test_scripts/opcodes/set_delegate.tz michelson_test_scripts/opcodes/set_id.tz michelson_test_scripts/opcodes/set_iter.tz michelson_test_scripts/opcodes/set_member.tz michelson_test_scripts/opcodes/set_size.tz michelson_test_scripts/opcodes/sets.tz michelson_test_scripts/opcodes/sha3.tz michelson_test_scripts/opcodes/shifts.tz michelson_test_scripts/opcodes/slice.tz michelson_test_scripts/opcodes/slice_bytes.tz michelson_test_scripts/opcodes/slices.tz michelson_test_scripts/opcodes/source.tz michelson_test_scripts/opcodes/split_bytes.tz michelson_test_scripts/opcodes/split_string.tz michelson_test_scripts/opcodes/store_bls12_381_fr.tz michelson_test_scripts/opcodes/store_bls12_381_g1.tz michelson_test_scripts/opcodes/store_bls12_381_g2.tz michelson_test_scripts/opcodes/store_input.tz michelson_test_scripts/opcodes/store_now.tz michelson_test_scripts/opcodes/str_id.tz michelson_test_scripts/opcodes/sub_timestamp_delta.tz michelson_test_scripts/opcodes/subset.tz michelson_test_scripts/opcodes/tez_add_sub.tz michelson_test_scripts/opcodes/ticket_bad.tz michelson_test_scripts/opcodes/ticket_big_store.tz michelson_test_scripts/opcodes/ticket_join.tz michelson_test_scripts/opcodes/ticket_read.tz michelson_test_scripts/opcodes/ticket_split.tz michelson_test_scripts/opcodes/ticket_store.tz michelson_test_scripts/opcodes/ticket_store-2.tz michelson_test_scripts/opcodes/ticketer.tz michelson_test_scripts/opcodes/ticketer-2.tz michelson_test_scripts/opcodes/transfer_amount.tz michelson_test_scripts/opcodes/transfer_tokens.tz michelson_test_scripts/opcodes/uncomb.tz michelson_test_scripts/opcodes/unpair.tz michelson_test_scripts/opcodes/unpair_field_annotation_mismatch.tz michelson_test_scripts/opcodes/update_big_map.tz michelson_test_scripts/opcodes/utxo_read.tz michelson_test_scripts/opcodes/utxor.tz michelson_test_scripts/opcodes/view_fib.tz michelson_test_scripts/opcodes/view_mutual_recursion.tz michelson_test_scripts/opcodes/view_op_add.tz michelson_test_scripts/opcodes/view_op_constant.tz michelson_test_scripts/opcodes/view_op_id.tz michelson_test_scripts/opcodes/view_op_nonexistent_addr.tz michelson_test_scripts/opcodes/view_op_nonexistent_func.tz michelson_test_scripts/opcodes/view_op_test_step_contants.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_input_type.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_output_type.tz michelson_test_scripts/opcodes/view_rec.tz michelson_test_scripts/opcodes/view_toplevel_lib.tz michelson_test_scripts/opcodes/voting_power.tz michelson_test_scripts/opcodes/xor.tz michelson_test_scripts/opcodes/xor_bytes_016.tz --details --display-names Well typed (Gas remaining: 1039933.430 units remaining) michelson_test_scripts/attic/accounts.tz { parameter (or (key_hash %Initialize) diff --git a/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out b/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out index dd2f3144764d..c5be5fed8312 100644 --- a/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out +++ b/tezt/tests/expected/dal.ml/Beta-- Testing DAL L1 integration (Use all available slots).out @@ -1,10 +1,10 @@ GET http://[HOST]:[PORT]/chains/main/blocks/head/metadata 200 OK -{"protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","next_protocol":"Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY","test_chain_status":{"status":"not_running"},"max_operations_ttl":3,"max_operation_data_length":32768,"max_block_header_length":289,"max_operation_list_length":[{"max_size":4194304,"max_op":2048},{"max_size":32768},{"max_size":135168,"max_op":132},{"max_size":524288}],"proposer":"[PUBLIC_KEY_HASH]","baker":"[PUBLIC_KEY_HASH]","level_info":{"level":3,"level_position":2,"cycle":0,"cycle_position":2,"expected_commitment":false},"voting_period_info":{"voting_period":{"index":0,"kind":"proposal","start_position":0},"position":2,"remaining":61},"nonce_hash":null,"deactivated":[],"balance_updates":[{"kind":"accumulator","category":"block fees","change":"-416000","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"416000","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-16667","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16667","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-316666","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-16666","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-316646","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316646","origin":"block"}],"liquidity_baking_toggle_ema":0,"adaptive_issuance_vote_ema":0,"adaptive_issuance_activation_cycle":5,"implicit_operations_results":[{"kind":"transaction","storage":[{"int":"1"},{"int":"166766"},{"int":"100"},{"bytes":"01e927f00ef734dfc85919635e9afc9166c83ef9fc00"},{"bytes":"0115eb0104481a6d7921160bc982c5e0a561cd8a3a00"}],"balance_updates":[{"kind":"minted","category":"subsidy","change":"-83333","origin":"subsidy"},{"kind":"contract","contract":"[CONTRACT_HASH]","change":"83333","origin":"subsidy"}],"consumed_milligas":"206420","storage_size":"4629"}],"proposer_consensus_key":"[PUBLIC_KEY_HASH]","baker_consensus_key":"[PUBLIC_KEY_HASH]","consumed_milligas":"544000000","dal_attestation":"0"} +{"protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","next_protocol":"PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT","test_chain_status":{"status":"not_running"},"max_operations_ttl":3,"max_operation_data_length":32768,"max_block_header_length":289,"max_operation_list_length":[{"max_size":4194304,"max_op":2048},{"max_size":32768},{"max_size":135168,"max_op":132},{"max_size":524288}],"proposer":"[PUBLIC_KEY_HASH]","baker":"[PUBLIC_KEY_HASH]","level_info":{"level":3,"level_position":2,"cycle":0,"cycle_position":2,"expected_commitment":false},"voting_period_info":{"voting_period":{"index":0,"kind":"proposal","start_position":0},"position":2,"remaining":61},"nonce_hash":null,"deactivated":[],"balance_updates":[{"kind":"accumulator","category":"block fees","change":"-416000","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"416000","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-16667","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16667","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-316666","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-16666","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"16666","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-316646","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"316646","origin":"block"}],"liquidity_baking_toggle_ema":0,"adaptive_issuance_vote_ema":0,"adaptive_issuance_activation_cycle":5,"implicit_operations_results":[{"kind":"transaction","storage":[{"int":"1"},{"int":"166766"},{"int":"100"},{"bytes":"01e927f00ef734dfc85919635e9afc9166c83ef9fc00"},{"bytes":"0115eb0104481a6d7921160bc982c5e0a561cd8a3a00"}],"balance_updates":[{"kind":"minted","category":"subsidy","change":"-83333","origin":"subsidy"},{"kind":"contract","contract":"[CONTRACT_HASH]","change":"83333","origin":"subsidy"}],"consumed_milligas":"206420","storage_size":"4629"}],"proposer_consensus_key":"[PUBLIC_KEY_HASH]","baker_consensus_key":"[PUBLIC_KEY_HASH]","consumed_milligas":"544000000","dal_attestation":"0"} { - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", - "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", + "next_protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "test_chain_status": { "status": "not_running" }, diff --git a/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out b/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out index f6e30c95cd92..5df980578ab9 100644 --- a/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out +++ b/tezt/tests/expected/tzt_regression.ml/Beta-- Run TZT.out @@ -1,5 +1,5 @@ -./octez-client --protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY --mode mockup --no-base-dir-warnings run unit tests from tzt_reference_test_suite/abs_00.tzt tzt_reference_test_suite/abs_01.tzt tzt_reference_test_suite/abs_02.tzt tzt_reference_test_suite/add_00.tc.tzt tzt_reference_test_suite/add_01.tc.tzt tzt_reference_test_suite/add_int-int_00.tzt tzt_reference_test_suite/add_int-nat_00.tzt tzt_reference_test_suite/add_int-nat_01.tzt tzt_reference_test_suite/add_int-timestamp_00.tzt tzt_reference_test_suite/add_mutez-mutez_00.tzt tzt_reference_test_suite/add_mutez-mutez_01.tzt tzt_reference_test_suite/add_nat-int_00.tzt tzt_reference_test_suite/add_nat-nat_00.tzt tzt_reference_test_suite/add_timestamp-int_00.tzt tzt_reference_test_suite/add_timestamp-int_01.tzt tzt_reference_test_suite/add_timestamp-int_02.tzt tzt_reference_test_suite/add_timestamp-int_03.tzt tzt_reference_test_suite/address_00.tzt tzt_reference_test_suite/address_00.tc.tzt tzt_reference_test_suite/address_01.tzt tzt_reference_test_suite/address_02.tzt tzt_reference_test_suite/amount_00.tzt tzt_reference_test_suite/and_bool-bool_00.tzt tzt_reference_test_suite/and_bool-bool_01.tzt tzt_reference_test_suite/and_bool-bool_02.tzt tzt_reference_test_suite/and_bool-bool_03.tzt tzt_reference_test_suite/and_bytes-bytes_00.tzt tzt_reference_test_suite/and_bytes-bytes_01.tzt tzt_reference_test_suite/and_bytes-bytes_02.tzt tzt_reference_test_suite/and_bytes-bytes_03.tzt tzt_reference_test_suite/and_bytes-bytes_04.tzt tzt_reference_test_suite/and_bytes-bytes_05.tzt tzt_reference_test_suite/and_bytes-bytes_06.tzt tzt_reference_test_suite/and_int-nat_00.tzt tzt_reference_test_suite/and_int-nat_01.tzt tzt_reference_test_suite/and_int-nat_02.tzt tzt_reference_test_suite/and_int-nat_03.tzt tzt_reference_test_suite/and_int-nat_04.tzt tzt_reference_test_suite/and_int-nat_05.tzt tzt_reference_test_suite/and_int-nat_06.tzt tzt_reference_test_suite/and_nat-nat_00.tzt tzt_reference_test_suite/and_nat-nat_01.tzt tzt_reference_test_suite/and_nat-nat_02.tzt tzt_reference_test_suite/apply_00.tzt tzt_reference_test_suite/apply_01.tzt tzt_reference_test_suite/apply_02.tzt tzt_reference_test_suite/balance_00.tzt tzt_reference_test_suite/blake2b_00.tzt tzt_reference_test_suite/blake2b_01.tzt tzt_reference_test_suite/car_00.tzt tzt_reference_test_suite/car_00.tc.tzt tzt_reference_test_suite/car_01.tzt tzt_reference_test_suite/cdr_00.tzt tzt_reference_test_suite/cdr_00.tc.tzt tzt_reference_test_suite/cdr_01.tzt tzt_reference_test_suite/chain_id_00.tzt tzt_reference_test_suite/chain_id_01.tzt tzt_reference_test_suite/checksignature_00.tzt tzt_reference_test_suite/checksignature_00.tc.tzt tzt_reference_test_suite/checksignature_01.tzt tzt_reference_test_suite/compare_00.tc.tzt tzt_reference_test_suite/compare_01.tc.tzt tzt_reference_test_suite/compare_02.tc.tzt tzt_reference_test_suite/compare_bool_00.tzt tzt_reference_test_suite/compare_bool_01.tzt tzt_reference_test_suite/compare_bool_02.tzt tzt_reference_test_suite/compare_bool_03.tzt tzt_reference_test_suite/compare_bytes_00.tzt tzt_reference_test_suite/compare_bytes_01.tzt tzt_reference_test_suite/compare_bytes_02.tzt tzt_reference_test_suite/compare_bytes_03.tzt tzt_reference_test_suite/compare_bytes_04.tzt tzt_reference_test_suite/compare_int_00.tzt tzt_reference_test_suite/compare_int_01.tzt tzt_reference_test_suite/compare_int_02.tzt tzt_reference_test_suite/compare_int_03.tzt tzt_reference_test_suite/compare_int_04.tzt tzt_reference_test_suite/compare_keyhash_00.tzt tzt_reference_test_suite/compare_keyhash_01.tzt tzt_reference_test_suite/compare_keyhash_02.tzt tzt_reference_test_suite/compare_mutez_00.tzt tzt_reference_test_suite/compare_mutez_01.tzt tzt_reference_test_suite/compare_mutez_02.tzt tzt_reference_test_suite/compare_mutez_03.tzt tzt_reference_test_suite/compare_mutez_04.tzt tzt_reference_test_suite/compare_mutez_05.tzt tzt_reference_test_suite/compare_nat_00.tzt tzt_reference_test_suite/compare_nat_01.tzt tzt_reference_test_suite/compare_nat_02.tzt tzt_reference_test_suite/compare_nat_03.tzt tzt_reference_test_suite/compare_nat_04.tzt tzt_reference_test_suite/compare_nat_05.tzt tzt_reference_test_suite/compare_never_00.tzt tzt_reference_test_suite/compare_pairintint_00.tzt tzt_reference_test_suite/compare_pairintint_01.tzt tzt_reference_test_suite/compare_pairintint_02.tzt tzt_reference_test_suite/compare_pairintint_03.tzt tzt_reference_test_suite/compare_string_00.tzt tzt_reference_test_suite/compare_string_01.tzt tzt_reference_test_suite/compare_string_02.tzt tzt_reference_test_suite/compare_string_03.tzt tzt_reference_test_suite/compare_string_04.tzt tzt_reference_test_suite/compare_timestamp_00.tzt tzt_reference_test_suite/compare_timestamp_01.tzt tzt_reference_test_suite/compare_timestamp_02.tzt tzt_reference_test_suite/compare_timestamp_03.tzt tzt_reference_test_suite/compare_timestamp_04.tzt tzt_reference_test_suite/compare_timestamp_05.tzt tzt_reference_test_suite/concat_00.tc.tzt tzt_reference_test_suite/concat_bytes_00.tzt tzt_reference_test_suite/concat_bytes_01.tzt tzt_reference_test_suite/concat_listbytes_00.tzt tzt_reference_test_suite/concat_listbytes_01.tzt tzt_reference_test_suite/concat_listbytes_02.tzt tzt_reference_test_suite/concat_liststring_00.tzt tzt_reference_test_suite/concat_liststring_01.tzt tzt_reference_test_suite/concat_liststring_02.tzt tzt_reference_test_suite/concat_liststring_03.tzt tzt_reference_test_suite/concat_liststring_04.tzt tzt_reference_test_suite/concat_string_00.tzt tzt_reference_test_suite/concat_string_01.tzt tzt_reference_test_suite/concat_string_02.tzt tzt_reference_test_suite/cons_int_00.tzt tzt_reference_test_suite/cons_int_01.tzt tzt_reference_test_suite/cons_int_02.tzt tzt_reference_test_suite/cons_lists_00.tc.tzt tzt_reference_test_suite/cons_string_00.tzt tzt_reference_test_suite/contract_00.tzt tzt_reference_test_suite/contract_01.tzt tzt_reference_test_suite/contract_02.tzt tzt_reference_test_suite/contract_03.tzt tzt_reference_test_suite/contract_04.tzt tzt_reference_test_suite/contract_05.tzt tzt_reference_test_suite/createcontract_00.tzt tzt_reference_test_suite/createcontract_01.tzt tzt_reference_test_suite/dig_00.tzt tzt_reference_test_suite/dig_01.tzt tzt_reference_test_suite/dig_02.tzt tzt_reference_test_suite/dig_03.tzt tzt_reference_test_suite/dig_04.tzt tzt_reference_test_suite/dip_00.tzt tzt_reference_test_suite/dip_00.tc.tzt tzt_reference_test_suite/dip_01.tzt tzt_reference_test_suite/dip_02.tzt tzt_reference_test_suite/dipn_00.tzt tzt_reference_test_suite/dipn_00.tc.tzt tzt_reference_test_suite/dipn_01.tzt tzt_reference_test_suite/dipn_01.tc.tzt tzt_reference_test_suite/dipn_02.tzt tzt_reference_test_suite/dipn_02.tc.tzt tzt_reference_test_suite/dipn_03.tzt tzt_reference_test_suite/drop_00.tzt tzt_reference_test_suite/drop_00.tc.tzt tzt_reference_test_suite/dropn_00.tzt tzt_reference_test_suite/dropn_00.tc.tzt tzt_reference_test_suite/dropn_01.tzt tzt_reference_test_suite/dropn_02.tzt tzt_reference_test_suite/dropn_03.tzt tzt_reference_test_suite/dugn_00.tzt tzt_reference_test_suite/dup_00.tzt tzt_reference_test_suite/dup_00.tc.tzt tzt_reference_test_suite/dupn_00.tzt tzt_reference_test_suite/dupn_00.tc.tzt tzt_reference_test_suite/dupn_01.tzt tzt_reference_test_suite/dupn_01.tc.tzt tzt_reference_test_suite/dupn_02.tzt tzt_reference_test_suite/dupn_03.tzt tzt_reference_test_suite/dupn_04.tzt tzt_reference_test_suite/ediv_int-int_00.tzt tzt_reference_test_suite/ediv_int-int_01.tzt tzt_reference_test_suite/ediv_int-int_02.tzt tzt_reference_test_suite/ediv_int-int_03.tzt tzt_reference_test_suite/ediv_int-int_04.tzt tzt_reference_test_suite/ediv_int-int_05.tzt tzt_reference_test_suite/ediv_int-int_06.tzt tzt_reference_test_suite/ediv_int-int_07.tzt tzt_reference_test_suite/ediv_int-int_08.tzt tzt_reference_test_suite/ediv_int-nat_00.tzt tzt_reference_test_suite/ediv_int-nat_01.tzt tzt_reference_test_suite/ediv_int-nat_02.tzt tzt_reference_test_suite/ediv_int-nat_03.tzt tzt_reference_test_suite/ediv_int-nat_04.tzt tzt_reference_test_suite/ediv_int-nat_05.tzt tzt_reference_test_suite/ediv_mutez-mutez_00.tzt tzt_reference_test_suite/ediv_mutez-mutez_01.tzt tzt_reference_test_suite/ediv_mutez-mutez_02.tzt tzt_reference_test_suite/ediv_mutez-mutez_03.tzt tzt_reference_test_suite/ediv_mutez-mutez_04.tzt tzt_reference_test_suite/ediv_mutez-mutez_05.tzt tzt_reference_test_suite/ediv_mutez-nat_00.tzt tzt_reference_test_suite/ediv_mutez-nat_01.tzt tzt_reference_test_suite/ediv_mutez-nat_02.tzt tzt_reference_test_suite/ediv_mutez-nat_03.tzt tzt_reference_test_suite/ediv_mutez-nat_04.tzt tzt_reference_test_suite/ediv_mutez-nat_05.tzt tzt_reference_test_suite/ediv_mutez-nat_06.tzt tzt_reference_test_suite/ediv_nat-int_00.tzt tzt_reference_test_suite/ediv_nat-int_01.tzt tzt_reference_test_suite/ediv_nat-int_02.tzt tzt_reference_test_suite/ediv_nat-int_03.tzt tzt_reference_test_suite/ediv_nat-int_04.tzt tzt_reference_test_suite/ediv_nat-int_05.tzt tzt_reference_test_suite/ediv_nat-nat_00.tzt tzt_reference_test_suite/ediv_nat-nat_01.tzt tzt_reference_test_suite/ediv_nat-nat_02.tzt tzt_reference_test_suite/ediv_nat-nat_03.tzt tzt_reference_test_suite/ediv_nat-nat_04.tzt tzt_reference_test_suite/emptybigmap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_string-string_00.tzt tzt_reference_test_suite/emptyset_00.tc.tzt tzt_reference_test_suite/emptyset_nat_00.tzt tzt_reference_test_suite/eq_00.tzt tzt_reference_test_suite/eq_01.tzt tzt_reference_test_suite/eq_02.tzt tzt_reference_test_suite/eq_03.tzt tzt_reference_test_suite/eq_04.tzt tzt_reference_test_suite/exec_00.tzt tzt_reference_test_suite/exec_01.tzt tzt_reference_test_suite/exec_02.tzt tzt_reference_test_suite/exec_03.tzt tzt_reference_test_suite/failwith_00.tzt tzt_reference_test_suite/failwith_00.tc.tzt tzt_reference_test_suite/gas_exhaustion.tzt tzt_reference_test_suite/ge_00.tzt tzt_reference_test_suite/ge_01.tzt tzt_reference_test_suite/ge_02.tzt tzt_reference_test_suite/ge_03.tzt tzt_reference_test_suite/ge_04.tzt tzt_reference_test_suite/get_00.tc.tzt tzt_reference_test_suite/get_bigmapstringstring_00.tzt tzt_reference_test_suite/get_bigmapstringstring_01.tzt tzt_reference_test_suite/get_bigmapstringstring_02.tzt tzt_reference_test_suite/get_map_00.tc.tzt tzt_reference_test_suite/get_mapintint_00.tzt tzt_reference_test_suite/get_mapintint_01.tzt tzt_reference_test_suite/get_mapstringstring_00.tzt tzt_reference_test_suite/get_mapstringstring_01.tzt tzt_reference_test_suite/get_mapstringstring_02.tzt tzt_reference_test_suite/gt_00.tzt tzt_reference_test_suite/gt_00.tc.tzt tzt_reference_test_suite/gt_01.tzt tzt_reference_test_suite/gt_02.tzt tzt_reference_test_suite/gt_03.tzt tzt_reference_test_suite/gt_04.tzt tzt_reference_test_suite/if_00.tzt tzt_reference_test_suite/if_00.tc.tzt tzt_reference_test_suite/if_01.tzt tzt_reference_test_suite/if_01.tc.tzt tzt_reference_test_suite/ifcons_00.tc.tzt tzt_reference_test_suite/ifcons_listint_00.tzt tzt_reference_test_suite/ifcons_listint_01.tzt tzt_reference_test_suite/ifcons_listnat_00.tzt tzt_reference_test_suite/ifcons_listnat_01.tzt tzt_reference_test_suite/ifleft_00.tc.tzt tzt_reference_test_suite/ifleft_orintstring_00.tzt tzt_reference_test_suite/ifleft_orstringint_00.tzt tzt_reference_test_suite/ifnone_00.tc.tzt tzt_reference_test_suite/ifnone_optionint_00.tzt tzt_reference_test_suite/ifnone_optionnat_00.tzt tzt_reference_test_suite/implicitaccount_00.tzt tzt_reference_test_suite/int_00.tc.tzt tzt_reference_test_suite/int_nat_00.tzt tzt_reference_test_suite/int_nat_01.tzt tzt_reference_test_suite/isnat_00.tzt tzt_reference_test_suite/isnat_01.tzt tzt_reference_test_suite/iter_00.tc.tzt tzt_reference_test_suite/iter_listint_00.tzt tzt_reference_test_suite/iter_listint_01.tzt tzt_reference_test_suite/iter_listint_02.tzt tzt_reference_test_suite/iter_listint_03.tzt tzt_reference_test_suite/iter_liststring_00.tzt tzt_reference_test_suite/iter_liststring_01.tzt tzt_reference_test_suite/iter_mapintint_00.tzt tzt_reference_test_suite/iter_mapintint_01.tzt tzt_reference_test_suite/iter_mapintint_02.tzt tzt_reference_test_suite/iter_mapintint_03.tzt tzt_reference_test_suite/iter_mapintint_04.tzt tzt_reference_test_suite/iter_mapstringstring_00.tzt tzt_reference_test_suite/iter_setint_00.tzt tzt_reference_test_suite/iter_setint_01.tzt tzt_reference_test_suite/iter_setint_02.tzt tzt_reference_test_suite/iter_setstring_00.tzt tzt_reference_test_suite/iter_setstring_01.tzt tzt_reference_test_suite/iter_setstring_02.tzt tzt_reference_test_suite/join_tickets_00.tzt tzt_reference_test_suite/join_tickets_01.tzt tzt_reference_test_suite/join_tickets_02.tzt tzt_reference_test_suite/join_tickets_03.tzt tzt_reference_test_suite/keccak_00.tzt tzt_reference_test_suite/keccak_01.tzt tzt_reference_test_suite/le_00.tzt tzt_reference_test_suite/le_01.tzt tzt_reference_test_suite/le_02.tzt tzt_reference_test_suite/le_03.tzt tzt_reference_test_suite/le_04.tzt tzt_reference_test_suite/left_int-nat_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_01.tzt tzt_reference_test_suite/loop_00.tzt tzt_reference_test_suite/loop_00.tc.tzt tzt_reference_test_suite/loop_01.tzt tzt_reference_test_suite/loop_01.tc.tzt tzt_reference_test_suite/loop_02.tzt tzt_reference_test_suite/loopleft_00.tzt tzt_reference_test_suite/loopleft_01.tzt tzt_reference_test_suite/loopleft_02.tzt tzt_reference_test_suite/loopleft_03.tzt tzt_reference_test_suite/loopleft_04.tzt tzt_reference_test_suite/lsl_bytes_00.tzt tzt_reference_test_suite/lsl_bytes_01.tzt tzt_reference_test_suite/lsl_bytes_02.tzt tzt_reference_test_suite/lsl_bytes_03.tzt tzt_reference_test_suite/lsl_bytes_04.tzt tzt_reference_test_suite/lsl_bytes_05.tzt tzt_reference_test_suite/lsl_bytes_06.tzt tzt_reference_test_suite/lsl_nat_00.tzt tzt_reference_test_suite/lsl_nat_01.tzt tzt_reference_test_suite/lsl_nat_02.tzt tzt_reference_test_suite/lsl_nat_03.tzt tzt_reference_test_suite/lsl_nat_04.tzt tzt_reference_test_suite/lsl_nat_05.tzt tzt_reference_test_suite/lsl_nat_06.tzt tzt_reference_test_suite/lsl_nat_07.tzt tzt_reference_test_suite/lsl_nat_08.tzt tzt_reference_test_suite/lsr_bytes_00.tzt tzt_reference_test_suite/lsr_bytes_01.tzt tzt_reference_test_suite/lsr_bytes_02.tzt tzt_reference_test_suite/lsr_bytes_03.tzt tzt_reference_test_suite/lsr_bytes_04.tzt tzt_reference_test_suite/lsr_bytes_05.tzt tzt_reference_test_suite/lsr_bytes_06.tzt tzt_reference_test_suite/lsr_bytes_07.tzt tzt_reference_test_suite/lsr_nat_00.tzt tzt_reference_test_suite/lsr_nat_01.tzt tzt_reference_test_suite/lsr_nat_02.tzt tzt_reference_test_suite/lsr_nat_03.tzt tzt_reference_test_suite/lsr_nat_04.tzt tzt_reference_test_suite/lsr_nat_05.tzt tzt_reference_test_suite/lsr_nat_06.tzt tzt_reference_test_suite/lsr_nat_07.tzt tzt_reference_test_suite/lt_00.tzt tzt_reference_test_suite/lt_01.tzt tzt_reference_test_suite/lt_02.tzt tzt_reference_test_suite/lt_03.tzt tzt_reference_test_suite/lt_04.tzt tzt_reference_test_suite/macro_pack/assert_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpeq_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpge_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpgt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmple_00.tzt tzt_reference_test_suite/macro_pack/assert_cmplt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpneq_00.tzt tzt_reference_test_suite/macro_pack/assert_eq_00.tzt tzt_reference_test_suite/macro_pack/assert_ge_00.tzt tzt_reference_test_suite/macro_pack/assert_gt_00.tzt tzt_reference_test_suite/macro_pack/assert_le_00.tzt tzt_reference_test_suite/macro_pack/assert_left_00.tzt tzt_reference_test_suite/macro_pack/assert_lt_00.tzt tzt_reference_test_suite/macro_pack/assert_neq_00.tzt tzt_reference_test_suite/macro_pack/assert_none_00.tzt tzt_reference_test_suite/macro_pack/assert_right_00.tzt tzt_reference_test_suite/macro_pack/assert_some_00.tzt tzt_reference_test_suite/macro_pack/cadr_00.tzt tzt_reference_test_suite/macro_pack/carn_00.tzt tzt_reference_test_suite/macro_pack/carn_01.tzt tzt_reference_test_suite/macro_pack/cdrn_00.tzt tzt_reference_test_suite/macro_pack/cdrn_01.tzt tzt_reference_test_suite/macro_pack/cmpeq_00.tzt tzt_reference_test_suite/macro_pack/cmpge_00.tzt tzt_reference_test_suite/macro_pack/cmpgt_00.tzt tzt_reference_test_suite/macro_pack/cmple_00.tzt tzt_reference_test_suite/macro_pack/cmplt_00.tzt tzt_reference_test_suite/macro_pack/cmpneq_00.tzt tzt_reference_test_suite/macro_pack/fail_00.tzt tzt_reference_test_suite/macro_pack/ifcmpeq_00.tzt tzt_reference_test_suite/macro_pack/ifcmpge_00.tzt tzt_reference_test_suite/macro_pack/ifcmpgt_00.tzt tzt_reference_test_suite/macro_pack/ifcmple_00.tzt tzt_reference_test_suite/macro_pack/ifcmplt_00.tzt tzt_reference_test_suite/macro_pack/ifcmpneq_00.tzt tzt_reference_test_suite/macro_pack/ifeq_00.tzt tzt_reference_test_suite/macro_pack/ifge_00.tzt tzt_reference_test_suite/macro_pack/ifgt_00.tzt tzt_reference_test_suite/macro_pack/ifle_00.tzt tzt_reference_test_suite/macro_pack/iflt_00.tzt tzt_reference_test_suite/macro_pack/ifneq_00.tzt tzt_reference_test_suite/macro_pack/ifright_00.tzt tzt_reference_test_suite/macro_pack/ifsome_00.tzt tzt_reference_test_suite/macro_pack/mapcadr_00.tzt tzt_reference_test_suite/macro_pack/mapcar_00.tzt tzt_reference_test_suite/macro_pack/mapcdr_00.tzt tzt_reference_test_suite/macro_pack/papair_00.tzt tzt_reference_test_suite/macro_pack/setcadr_00.tzt tzt_reference_test_suite/macro_pack/setcar_00.tzt tzt_reference_test_suite/macro_pack/setcdr_00.tzt tzt_reference_test_suite/macro_pack/unpapair_00.tzt tzt_reference_test_suite/map_listint_00.tzt tzt_reference_test_suite/map_listint_01.tzt tzt_reference_test_suite/map_listint_02.tzt tzt_reference_test_suite/map_listint_03.tzt tzt_reference_test_suite/map_listint_04.tzt tzt_reference_test_suite/map_listint_05.tzt tzt_reference_test_suite/map_listint_06.tzt tzt_reference_test_suite/map_liststring_00.tzt tzt_reference_test_suite/map_liststring_01.tzt tzt_reference_test_suite/map_liststring_02.tzt tzt_reference_test_suite/map_liststring_04.tzt tzt_reference_test_suite/map_liststring_05.tzt tzt_reference_test_suite/map_liststring_06.tzt tzt_reference_test_suite/map_liststring_07.tzt tzt_reference_test_suite/map_liststring_08.tzt tzt_reference_test_suite/map_mapintint_00.tzt tzt_reference_test_suite/map_mapintint_01.tzt tzt_reference_test_suite/map_mapintstring_00.tzt tzt_reference_test_suite/map_mapintstring_01.tzt tzt_reference_test_suite/map_mapstringnat_00.tzt tzt_reference_test_suite/map_mapstringnat_01.tzt tzt_reference_test_suite/map_mapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_00.tzt tzt_reference_test_suite/mem_bigmapnatnat_01.tzt tzt_reference_test_suite/mem_bigmapnatnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_03.tzt tzt_reference_test_suite/mem_bigmapnatnat_04.tzt tzt_reference_test_suite/mem_bigmapnatnat_05.tzt tzt_reference_test_suite/mem_bigmapstringnat_00.tzt tzt_reference_test_suite/mem_bigmapstringnat_01.tzt tzt_reference_test_suite/mem_bigmapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapstringnat_03.tzt tzt_reference_test_suite/mem_bigmapstringnat_04.tzt tzt_reference_test_suite/mem_bigmapstringnat_05.tzt tzt_reference_test_suite/mem_mapintint_00.tzt tzt_reference_test_suite/mem_mapnatnat_00.tzt tzt_reference_test_suite/mem_mapnatnat_01.tzt tzt_reference_test_suite/mem_mapnatnat_02.tzt tzt_reference_test_suite/mem_mapnatnat_03.tzt tzt_reference_test_suite/mem_mapnatnat_04.tzt tzt_reference_test_suite/mem_mapnatnat_05.tzt tzt_reference_test_suite/mem_mapstringnat_00.tzt tzt_reference_test_suite/mem_mapstringnat_01.tzt tzt_reference_test_suite/mem_mapstringnat_02.tzt tzt_reference_test_suite/mem_mapstringnat_03.tzt tzt_reference_test_suite/mem_mapstringnat_04.tzt tzt_reference_test_suite/mem_mapstringnat_05.tzt tzt_reference_test_suite/mem_setint_00.tzt tzt_reference_test_suite/mem_setint_01.tzt tzt_reference_test_suite/mem_setstring_00.tzt tzt_reference_test_suite/mem_setstring_01.tzt tzt_reference_test_suite/mem_setstring_02.tzt tzt_reference_test_suite/mul_int-int_00.tzt tzt_reference_test_suite/mul_int-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_01.tzt tzt_reference_test_suite/mul_nat-int_00.tzt tzt_reference_test_suite/mul_nat-mutez_00.tzt tzt_reference_test_suite/mul_nat-mutez_01.tzt tzt_reference_test_suite/mul_nat-nat_00.tzt tzt_reference_test_suite/neg_int_00.tzt tzt_reference_test_suite/neg_int_01.tzt tzt_reference_test_suite/neg_int_02.tzt tzt_reference_test_suite/neg_nat_00.tzt tzt_reference_test_suite/neg_nat_01.tzt tzt_reference_test_suite/neq_00.tzt tzt_reference_test_suite/neq_01.tzt tzt_reference_test_suite/neq_02.tzt tzt_reference_test_suite/neq_03.tzt tzt_reference_test_suite/neq_04.tzt tzt_reference_test_suite/never_00.tzt tzt_reference_test_suite/never_00.tc.tzt tzt_reference_test_suite/nil_nat_00.tzt tzt_reference_test_suite/none_int_00.tzt tzt_reference_test_suite/none_pair-nat-string.tzt tzt_reference_test_suite/not_bool_00.tzt tzt_reference_test_suite/not_bool_01.tzt tzt_reference_test_suite/not_bytes_00.tzt tzt_reference_test_suite/not_bytes_01.tzt tzt_reference_test_suite/not_bytes_02.tzt tzt_reference_test_suite/not_bytes_03.tzt tzt_reference_test_suite/not_bytes_04.tzt tzt_reference_test_suite/not_bytes_05.tzt tzt_reference_test_suite/not_int_00.tzt tzt_reference_test_suite/not_nat_00.tzt tzt_reference_test_suite/not_nat_01.tzt tzt_reference_test_suite/not_nat_02.tzt tzt_reference_test_suite/not_nat_03.tzt tzt_reference_test_suite/not_nat_04.tzt tzt_reference_test_suite/not_nat_05.tzt tzt_reference_test_suite/not_nat_06.tzt tzt_reference_test_suite/not_nat_07.tzt tzt_reference_test_suite/now_00.tzt tzt_reference_test_suite/or_bool-bool_00.tzt tzt_reference_test_suite/or_bool-bool_01.tzt tzt_reference_test_suite/or_bool-bool_02.tzt tzt_reference_test_suite/or_bool-bool_03.tzt tzt_reference_test_suite/or_bytes-bytes_00.tzt tzt_reference_test_suite/or_bytes-bytes_01.tzt tzt_reference_test_suite/or_bytes-bytes_02.tzt tzt_reference_test_suite/or_bytes-bytes_03.tzt tzt_reference_test_suite/or_bytes-bytes_04.tzt tzt_reference_test_suite/or_bytes-bytes_05.tzt tzt_reference_test_suite/or_bytes-bytes_06.tzt tzt_reference_test_suite/or_nat-nat_00.tzt tzt_reference_test_suite/or_nat-nat_01.tzt tzt_reference_test_suite/or_nat-nat_02.tzt tzt_reference_test_suite/or_nat-nat_03.tzt tzt_reference_test_suite/or_nat-nat_04.tzt tzt_reference_test_suite/or_nat-nat_05.tzt tzt_reference_test_suite/or_nat-nat_06.tzt tzt_reference_test_suite/pack_address_00.tzt tzt_reference_test_suite/pack_address_01.tzt tzt_reference_test_suite/pack_address_02.tzt tzt_reference_test_suite/pack_address_03.tzt tzt_reference_test_suite/pack_address_04.tzt tzt_reference_test_suite/pack_address_05.tzt tzt_reference_test_suite/pack_bool_00.tzt tzt_reference_test_suite/pack_bool_01.tzt tzt_reference_test_suite/pack_bytes_00.tzt tzt_reference_test_suite/pack_bytes_01.tzt tzt_reference_test_suite/pack_bytes_02.tzt tzt_reference_test_suite/pack_chainid_00.tzt tzt_reference_test_suite/pack_contract_00.tzt tzt_reference_test_suite/pack_key_00.tzt tzt_reference_test_suite/pack_key_01.tzt tzt_reference_test_suite/pack_key_02.tzt tzt_reference_test_suite/pack_key_03.tzt tzt_reference_test_suite/pack_keyhash_01.tzt tzt_reference_test_suite/pack_keyhash_02.tzt tzt_reference_test_suite/pack_keyhash_03.tzt tzt_reference_test_suite/pack_keyhash_04.tzt tzt_reference_test_suite/pack_lambda_comb_pairs.tzt tzt_reference_test_suite/pack_list-bool_00.tzt tzt_reference_test_suite/pack_list-bool_01.tzt tzt_reference_test_suite/pack_list-list-bool.tzt tzt_reference_test_suite/pack_list_large_00.tzt tzt_reference_test_suite/pack_map-bool-unit_00.tzt tzt_reference_test_suite/pack_operation_00.tc.tzt tzt_reference_test_suite/pack_option-unit_00.tzt tzt_reference_test_suite/pack_option-unit_01.tzt tzt_reference_test_suite/pack_or-unit-bool_00.tzt tzt_reference_test_suite/pack_or-unit-bool_01.tzt tzt_reference_test_suite/pack_pair-bool-unit_00.tzt tzt_reference_test_suite/pack_signature_00.tzt tzt_reference_test_suite/pack_signature_01.tzt tzt_reference_test_suite/pack_signature_02.tzt tzt_reference_test_suite/pack_signature_03.tzt tzt_reference_test_suite/pack_string_00.tzt tzt_reference_test_suite/pack_string_01.tzt tzt_reference_test_suite/pack_string_02.tzt tzt_reference_test_suite/pack_string_03.tzt tzt_reference_test_suite/pack_unit_00.tzt tzt_reference_test_suite/packunpack_address_00.tzt tzt_reference_test_suite/packunpack_bool_00.tzt tzt_reference_test_suite/packunpack_bytes_00.tzt tzt_reference_test_suite/packunpack_int_00.tzt tzt_reference_test_suite/packunpack_keyhash_00.tzt tzt_reference_test_suite/packunpack_mutez_00.tzt tzt_reference_test_suite/packunpack_nat_00.tzt tzt_reference_test_suite/packunpack_string_00.tzt tzt_reference_test_suite/packunpack_timestamp_00.tzt tzt_reference_test_suite/pair_00.tc.tzt tzt_reference_test_suite/pair_int-int_00.tzt tzt_reference_test_suite/pair_nat-string_00.tzt tzt_reference_test_suite/pair_pair-nat-string-pair-string-nat_00.tzt tzt_reference_test_suite/push_00.tc.tzt tzt_reference_test_suite/push_int_00.tzt tzt_reference_test_suite/push_string_00.tzt tzt_reference_test_suite/read_ticket_00.tzt tzt_reference_test_suite/right_nat-int_00.tzt tzt_reference_test_suite/self_00.tzt tzt_reference_test_suite/self_01.tzt tzt_reference_test_suite/self_in_lambda.tc.tzt tzt_reference_test_suite/sender_00.tzt tzt_reference_test_suite/setdelegate_00.tzt tzt_reference_test_suite/setdelegate_00.tc.tzt tzt_reference_test_suite/sha256_00.tzt tzt_reference_test_suite/sha256_01.tzt tzt_reference_test_suite/sha3_00.tzt tzt_reference_test_suite/sha3_01.tzt tzt_reference_test_suite/sha512_00.tzt tzt_reference_test_suite/sha512_01.tzt tzt_reference_test_suite/size_bytes_00.tzt tzt_reference_test_suite/size_listint_00.tzt tzt_reference_test_suite/size_listint_01.tzt tzt_reference_test_suite/size_listint_02.tzt tzt_reference_test_suite/size_listint_03.tzt tzt_reference_test_suite/size_mapintint_00.tzt tzt_reference_test_suite/size_mapstringnat_00.tzt tzt_reference_test_suite/size_mapstringnat_01.tzt tzt_reference_test_suite/size_mapstringnat_02.tzt tzt_reference_test_suite/size_mapstringnat_03.tzt tzt_reference_test_suite/size_setint_00.tzt tzt_reference_test_suite/size_setint_01.tzt tzt_reference_test_suite/size_setint_02.tzt tzt_reference_test_suite/size_setint_03.tzt tzt_reference_test_suite/size_setstring_00.tzt tzt_reference_test_suite/size_string_00.tzt tzt_reference_test_suite/slice_bytes_00.tzt tzt_reference_test_suite/slice_bytes_01.tzt tzt_reference_test_suite/slice_bytes_02.tzt tzt_reference_test_suite/slice_bytes_03.tzt tzt_reference_test_suite/slice_bytes_04.tzt tzt_reference_test_suite/slice_string_00.tzt tzt_reference_test_suite/slice_string_01.tzt tzt_reference_test_suite/slice_string_02.tzt tzt_reference_test_suite/slice_string_03.tzt tzt_reference_test_suite/slice_string_04.tzt tzt_reference_test_suite/slice_string_05.tzt tzt_reference_test_suite/some_00.tc.tzt tzt_reference_test_suite/some_int_00.tzt tzt_reference_test_suite/some_pairintint_00.tzt tzt_reference_test_suite/some_string_00.tzt tzt_reference_test_suite/source_00.tzt tzt_reference_test_suite/split_ticket_00.tzt tzt_reference_test_suite/split_ticket_01.tzt tzt_reference_test_suite/split_ticket_02.tzt tzt_reference_test_suite/split_ticket_03.tzt tzt_reference_test_suite/split_ticket_04.tzt tzt_reference_test_suite/sub_int-int_00.tzt tzt_reference_test_suite/sub_int-int_01.tzt tzt_reference_test_suite/sub_int-int_02.tzt tzt_reference_test_suite/sub_int-int_03.tzt tzt_reference_test_suite/sub_int-int_04.tzt tzt_reference_test_suite/sub_int-int_05.tzt tzt_reference_test_suite/sub_int-nat_00.tzt tzt_reference_test_suite/sub_int-nat_01.tzt tzt_reference_test_suite/sub_int-nat_02.tzt tzt_reference_test_suite/sub_int-nat_03.tzt tzt_reference_test_suite/sub_int-nat_04.tzt tzt_reference_test_suite/sub_int-nat_05.tzt tzt_reference_test_suite/sub_mutez_00.tzt tzt_reference_test_suite/sub_mutez_01.tzt tzt_reference_test_suite/sub_nat-int_00.tzt tzt_reference_test_suite/sub_nat-int_01.tzt tzt_reference_test_suite/sub_nat-int_02.tzt tzt_reference_test_suite/sub_nat-int_03.tzt tzt_reference_test_suite/sub_nat-int_04.tzt tzt_reference_test_suite/sub_nat-int_05.tzt tzt_reference_test_suite/sub_nat-nat_00.tzt tzt_reference_test_suite/sub_nat-nat_01.tzt tzt_reference_test_suite/sub_nat-nat_02.tzt tzt_reference_test_suite/sub_nat-nat_03.tzt tzt_reference_test_suite/sub_nat-nat_04.tzt tzt_reference_test_suite/sub_timestamp-int_00.tzt tzt_reference_test_suite/sub_timestamp-int_01.tzt tzt_reference_test_suite/sub_timestamp-int_02.tzt tzt_reference_test_suite/sub_timestamp-int_03.tzt tzt_reference_test_suite/sub_timestamp-int_04.tzt tzt_reference_test_suite/sub_timestamp-int_05.tzt tzt_reference_test_suite/sub_timestamp-int_06.tzt tzt_reference_test_suite/sub_timestamp-timestamp_00.tzt tzt_reference_test_suite/sub_timestamp-timestamp_01.tzt tzt_reference_test_suite/sub_timestamp-timestamp_02.tzt tzt_reference_test_suite/sub_timestamp-timestamp_03.tzt tzt_reference_test_suite/sub_timestamp-timestamp_04.tzt tzt_reference_test_suite/swap_00.tzt tzt_reference_test_suite/swap_00.tc.tzt tzt_reference_test_suite/swap_01.tc.tzt tzt_reference_test_suite/ticket_00.tzt tzt_reference_test_suite/ticket_01.tzt tzt_reference_test_suite/transfertokens_00.tzt tzt_reference_test_suite/transfertokens_00.tc.tzt tzt_reference_test_suite/transfertokens_01.tzt tzt_reference_test_suite/unit_00.tzt tzt_reference_test_suite/unpair_00.tc.tzt tzt_reference_test_suite/unpair_pairstringstring_00.tzt tzt_reference_test_suite/update_00.tc.tzt tzt_reference_test_suite/update_bigmapstringstring_00.tzt tzt_reference_test_suite/update_bigmapstringstring_01.tzt tzt_reference_test_suite/update_bigmapstringstring_02.tzt tzt_reference_test_suite/update_bigmapstringstring_03.tzt tzt_reference_test_suite/update_bigmapstringstring_04.tzt tzt_reference_test_suite/update_bigmapstringstring_05.tzt tzt_reference_test_suite/update_bigmapstringstring_06.tzt tzt_reference_test_suite/update_bigmapstringstring_07.tzt tzt_reference_test_suite/update_mapintint_00.tzt tzt_reference_test_suite/update_mapintint_01.tzt tzt_reference_test_suite/update_setint_00.tzt tzt_reference_test_suite/update_setint_01.tzt tzt_reference_test_suite/update_setint_02.tzt tzt_reference_test_suite/xor_bool-bool_00.tzt tzt_reference_test_suite/xor_bool-bool_01.tzt tzt_reference_test_suite/xor_bool-bool_02.tzt tzt_reference_test_suite/xor_bool-bool_03.tzt tzt_reference_test_suite/xor_bytes-bytes_00.tzt tzt_reference_test_suite/xor_bytes-bytes_01.tzt tzt_reference_test_suite/xor_bytes-bytes_02.tzt tzt_reference_test_suite/xor_bytes-bytes_03.tzt tzt_reference_test_suite/xor_bytes-bytes_04.tzt tzt_reference_test_suite/xor_bytes-bytes_05.tzt tzt_reference_test_suite/xor_bytes-bytes_06.tzt tzt_reference_test_suite/xor_nat-nat_00.tzt tzt_reference_test_suite/xor_nat-nat_01.tzt tzt_reference_test_suite/xor_nat-nat_02.tzt tzt_reference_test_suite/xor_nat-nat_03.tzt tzt_reference_test_suite/xor_nat-nat_04.tzt tzt_reference_test_suite/xor_nat-nat_05.tzt tzt_reference_test_suite/xor_nat-nat_06.tzt +./octez-client --protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT --mode mockup --no-base-dir-warnings run unit tests from tzt_reference_test_suite/abs_00.tzt tzt_reference_test_suite/abs_01.tzt tzt_reference_test_suite/abs_02.tzt tzt_reference_test_suite/add_00.tc.tzt tzt_reference_test_suite/add_01.tc.tzt tzt_reference_test_suite/add_int-int_00.tzt tzt_reference_test_suite/add_int-nat_00.tzt tzt_reference_test_suite/add_int-nat_01.tzt tzt_reference_test_suite/add_int-timestamp_00.tzt tzt_reference_test_suite/add_mutez-mutez_00.tzt tzt_reference_test_suite/add_mutez-mutez_01.tzt tzt_reference_test_suite/add_nat-int_00.tzt tzt_reference_test_suite/add_nat-nat_00.tzt tzt_reference_test_suite/add_timestamp-int_00.tzt tzt_reference_test_suite/add_timestamp-int_01.tzt tzt_reference_test_suite/add_timestamp-int_02.tzt tzt_reference_test_suite/add_timestamp-int_03.tzt tzt_reference_test_suite/address_00.tzt tzt_reference_test_suite/address_00.tc.tzt tzt_reference_test_suite/address_01.tzt tzt_reference_test_suite/address_02.tzt tzt_reference_test_suite/amount_00.tzt tzt_reference_test_suite/and_bool-bool_00.tzt tzt_reference_test_suite/and_bool-bool_01.tzt tzt_reference_test_suite/and_bool-bool_02.tzt tzt_reference_test_suite/and_bool-bool_03.tzt tzt_reference_test_suite/and_bytes-bytes_00.tzt tzt_reference_test_suite/and_bytes-bytes_01.tzt tzt_reference_test_suite/and_bytes-bytes_02.tzt tzt_reference_test_suite/and_bytes-bytes_03.tzt tzt_reference_test_suite/and_bytes-bytes_04.tzt tzt_reference_test_suite/and_bytes-bytes_05.tzt tzt_reference_test_suite/and_bytes-bytes_06.tzt tzt_reference_test_suite/and_int-nat_00.tzt tzt_reference_test_suite/and_int-nat_01.tzt tzt_reference_test_suite/and_int-nat_02.tzt tzt_reference_test_suite/and_int-nat_03.tzt tzt_reference_test_suite/and_int-nat_04.tzt tzt_reference_test_suite/and_int-nat_05.tzt tzt_reference_test_suite/and_int-nat_06.tzt tzt_reference_test_suite/and_nat-nat_00.tzt tzt_reference_test_suite/and_nat-nat_01.tzt tzt_reference_test_suite/and_nat-nat_02.tzt tzt_reference_test_suite/apply_00.tzt tzt_reference_test_suite/apply_01.tzt tzt_reference_test_suite/apply_02.tzt tzt_reference_test_suite/balance_00.tzt tzt_reference_test_suite/blake2b_00.tzt tzt_reference_test_suite/blake2b_01.tzt tzt_reference_test_suite/car_00.tzt tzt_reference_test_suite/car_00.tc.tzt tzt_reference_test_suite/car_01.tzt tzt_reference_test_suite/cdr_00.tzt tzt_reference_test_suite/cdr_00.tc.tzt tzt_reference_test_suite/cdr_01.tzt tzt_reference_test_suite/chain_id_00.tzt tzt_reference_test_suite/chain_id_01.tzt tzt_reference_test_suite/checksignature_00.tzt tzt_reference_test_suite/checksignature_00.tc.tzt tzt_reference_test_suite/checksignature_01.tzt tzt_reference_test_suite/compare_00.tc.tzt tzt_reference_test_suite/compare_01.tc.tzt tzt_reference_test_suite/compare_02.tc.tzt tzt_reference_test_suite/compare_bool_00.tzt tzt_reference_test_suite/compare_bool_01.tzt tzt_reference_test_suite/compare_bool_02.tzt tzt_reference_test_suite/compare_bool_03.tzt tzt_reference_test_suite/compare_bytes_00.tzt tzt_reference_test_suite/compare_bytes_01.tzt tzt_reference_test_suite/compare_bytes_02.tzt tzt_reference_test_suite/compare_bytes_03.tzt tzt_reference_test_suite/compare_bytes_04.tzt tzt_reference_test_suite/compare_int_00.tzt tzt_reference_test_suite/compare_int_01.tzt tzt_reference_test_suite/compare_int_02.tzt tzt_reference_test_suite/compare_int_03.tzt tzt_reference_test_suite/compare_int_04.tzt tzt_reference_test_suite/compare_keyhash_00.tzt tzt_reference_test_suite/compare_keyhash_01.tzt tzt_reference_test_suite/compare_keyhash_02.tzt tzt_reference_test_suite/compare_mutez_00.tzt tzt_reference_test_suite/compare_mutez_01.tzt tzt_reference_test_suite/compare_mutez_02.tzt tzt_reference_test_suite/compare_mutez_03.tzt tzt_reference_test_suite/compare_mutez_04.tzt tzt_reference_test_suite/compare_mutez_05.tzt tzt_reference_test_suite/compare_nat_00.tzt tzt_reference_test_suite/compare_nat_01.tzt tzt_reference_test_suite/compare_nat_02.tzt tzt_reference_test_suite/compare_nat_03.tzt tzt_reference_test_suite/compare_nat_04.tzt tzt_reference_test_suite/compare_nat_05.tzt tzt_reference_test_suite/compare_never_00.tzt tzt_reference_test_suite/compare_pairintint_00.tzt tzt_reference_test_suite/compare_pairintint_01.tzt tzt_reference_test_suite/compare_pairintint_02.tzt tzt_reference_test_suite/compare_pairintint_03.tzt tzt_reference_test_suite/compare_string_00.tzt tzt_reference_test_suite/compare_string_01.tzt tzt_reference_test_suite/compare_string_02.tzt tzt_reference_test_suite/compare_string_03.tzt tzt_reference_test_suite/compare_string_04.tzt tzt_reference_test_suite/compare_timestamp_00.tzt tzt_reference_test_suite/compare_timestamp_01.tzt tzt_reference_test_suite/compare_timestamp_02.tzt tzt_reference_test_suite/compare_timestamp_03.tzt tzt_reference_test_suite/compare_timestamp_04.tzt tzt_reference_test_suite/compare_timestamp_05.tzt tzt_reference_test_suite/concat_00.tc.tzt tzt_reference_test_suite/concat_bytes_00.tzt tzt_reference_test_suite/concat_bytes_01.tzt tzt_reference_test_suite/concat_listbytes_00.tzt tzt_reference_test_suite/concat_listbytes_01.tzt tzt_reference_test_suite/concat_listbytes_02.tzt tzt_reference_test_suite/concat_liststring_00.tzt tzt_reference_test_suite/concat_liststring_01.tzt tzt_reference_test_suite/concat_liststring_02.tzt tzt_reference_test_suite/concat_liststring_03.tzt tzt_reference_test_suite/concat_liststring_04.tzt tzt_reference_test_suite/concat_string_00.tzt tzt_reference_test_suite/concat_string_01.tzt tzt_reference_test_suite/concat_string_02.tzt tzt_reference_test_suite/cons_int_00.tzt tzt_reference_test_suite/cons_int_01.tzt tzt_reference_test_suite/cons_int_02.tzt tzt_reference_test_suite/cons_lists_00.tc.tzt tzt_reference_test_suite/cons_string_00.tzt tzt_reference_test_suite/contract_00.tzt tzt_reference_test_suite/contract_01.tzt tzt_reference_test_suite/contract_02.tzt tzt_reference_test_suite/contract_03.tzt tzt_reference_test_suite/contract_04.tzt tzt_reference_test_suite/contract_05.tzt tzt_reference_test_suite/createcontract_00.tzt tzt_reference_test_suite/createcontract_01.tzt tzt_reference_test_suite/dig_00.tzt tzt_reference_test_suite/dig_01.tzt tzt_reference_test_suite/dig_02.tzt tzt_reference_test_suite/dig_03.tzt tzt_reference_test_suite/dig_04.tzt tzt_reference_test_suite/dip_00.tzt tzt_reference_test_suite/dip_00.tc.tzt tzt_reference_test_suite/dip_01.tzt tzt_reference_test_suite/dip_02.tzt tzt_reference_test_suite/dipn_00.tzt tzt_reference_test_suite/dipn_00.tc.tzt tzt_reference_test_suite/dipn_01.tzt tzt_reference_test_suite/dipn_01.tc.tzt tzt_reference_test_suite/dipn_02.tzt tzt_reference_test_suite/dipn_02.tc.tzt tzt_reference_test_suite/dipn_03.tzt tzt_reference_test_suite/drop_00.tzt tzt_reference_test_suite/drop_00.tc.tzt tzt_reference_test_suite/dropn_00.tzt tzt_reference_test_suite/dropn_00.tc.tzt tzt_reference_test_suite/dropn_01.tzt tzt_reference_test_suite/dropn_02.tzt tzt_reference_test_suite/dropn_03.tzt tzt_reference_test_suite/dugn_00.tzt tzt_reference_test_suite/dup_00.tzt tzt_reference_test_suite/dup_00.tc.tzt tzt_reference_test_suite/dupn_00.tzt tzt_reference_test_suite/dupn_00.tc.tzt tzt_reference_test_suite/dupn_01.tzt tzt_reference_test_suite/dupn_01.tc.tzt tzt_reference_test_suite/dupn_02.tzt tzt_reference_test_suite/dupn_03.tzt tzt_reference_test_suite/dupn_04.tzt tzt_reference_test_suite/ediv_int-int_00.tzt tzt_reference_test_suite/ediv_int-int_01.tzt tzt_reference_test_suite/ediv_int-int_02.tzt tzt_reference_test_suite/ediv_int-int_03.tzt tzt_reference_test_suite/ediv_int-int_04.tzt tzt_reference_test_suite/ediv_int-int_05.tzt tzt_reference_test_suite/ediv_int-int_06.tzt tzt_reference_test_suite/ediv_int-int_07.tzt tzt_reference_test_suite/ediv_int-int_08.tzt tzt_reference_test_suite/ediv_int-nat_00.tzt tzt_reference_test_suite/ediv_int-nat_01.tzt tzt_reference_test_suite/ediv_int-nat_02.tzt tzt_reference_test_suite/ediv_int-nat_03.tzt tzt_reference_test_suite/ediv_int-nat_04.tzt tzt_reference_test_suite/ediv_int-nat_05.tzt tzt_reference_test_suite/ediv_mutez-mutez_00.tzt tzt_reference_test_suite/ediv_mutez-mutez_01.tzt tzt_reference_test_suite/ediv_mutez-mutez_02.tzt tzt_reference_test_suite/ediv_mutez-mutez_03.tzt tzt_reference_test_suite/ediv_mutez-mutez_04.tzt tzt_reference_test_suite/ediv_mutez-mutez_05.tzt tzt_reference_test_suite/ediv_mutez-nat_00.tzt tzt_reference_test_suite/ediv_mutez-nat_01.tzt tzt_reference_test_suite/ediv_mutez-nat_02.tzt tzt_reference_test_suite/ediv_mutez-nat_03.tzt tzt_reference_test_suite/ediv_mutez-nat_04.tzt tzt_reference_test_suite/ediv_mutez-nat_05.tzt tzt_reference_test_suite/ediv_mutez-nat_06.tzt tzt_reference_test_suite/ediv_nat-int_00.tzt tzt_reference_test_suite/ediv_nat-int_01.tzt tzt_reference_test_suite/ediv_nat-int_02.tzt tzt_reference_test_suite/ediv_nat-int_03.tzt tzt_reference_test_suite/ediv_nat-int_04.tzt tzt_reference_test_suite/ediv_nat-int_05.tzt tzt_reference_test_suite/ediv_nat-nat_00.tzt tzt_reference_test_suite/ediv_nat-nat_01.tzt tzt_reference_test_suite/ediv_nat-nat_02.tzt tzt_reference_test_suite/ediv_nat-nat_03.tzt tzt_reference_test_suite/ediv_nat-nat_04.tzt tzt_reference_test_suite/emptybigmap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_nat-nat_00.tzt tzt_reference_test_suite/emptymap_string-string_00.tzt tzt_reference_test_suite/emptyset_00.tc.tzt tzt_reference_test_suite/emptyset_nat_00.tzt tzt_reference_test_suite/eq_00.tzt tzt_reference_test_suite/eq_01.tzt tzt_reference_test_suite/eq_02.tzt tzt_reference_test_suite/eq_03.tzt tzt_reference_test_suite/eq_04.tzt tzt_reference_test_suite/exec_00.tzt tzt_reference_test_suite/exec_01.tzt tzt_reference_test_suite/exec_02.tzt tzt_reference_test_suite/exec_03.tzt tzt_reference_test_suite/failwith_00.tzt tzt_reference_test_suite/failwith_00.tc.tzt tzt_reference_test_suite/gas_exhaustion.tzt tzt_reference_test_suite/ge_00.tzt tzt_reference_test_suite/ge_01.tzt tzt_reference_test_suite/ge_02.tzt tzt_reference_test_suite/ge_03.tzt tzt_reference_test_suite/ge_04.tzt tzt_reference_test_suite/get_00.tc.tzt tzt_reference_test_suite/get_bigmapstringstring_00.tzt tzt_reference_test_suite/get_bigmapstringstring_01.tzt tzt_reference_test_suite/get_bigmapstringstring_02.tzt tzt_reference_test_suite/get_map_00.tc.tzt tzt_reference_test_suite/get_mapintint_00.tzt tzt_reference_test_suite/get_mapintint_01.tzt tzt_reference_test_suite/get_mapstringstring_00.tzt tzt_reference_test_suite/get_mapstringstring_01.tzt tzt_reference_test_suite/get_mapstringstring_02.tzt tzt_reference_test_suite/gt_00.tzt tzt_reference_test_suite/gt_00.tc.tzt tzt_reference_test_suite/gt_01.tzt tzt_reference_test_suite/gt_02.tzt tzt_reference_test_suite/gt_03.tzt tzt_reference_test_suite/gt_04.tzt tzt_reference_test_suite/if_00.tzt tzt_reference_test_suite/if_00.tc.tzt tzt_reference_test_suite/if_01.tzt tzt_reference_test_suite/if_01.tc.tzt tzt_reference_test_suite/ifcons_00.tc.tzt tzt_reference_test_suite/ifcons_listint_00.tzt tzt_reference_test_suite/ifcons_listint_01.tzt tzt_reference_test_suite/ifcons_listnat_00.tzt tzt_reference_test_suite/ifcons_listnat_01.tzt tzt_reference_test_suite/ifleft_00.tc.tzt tzt_reference_test_suite/ifleft_orintstring_00.tzt tzt_reference_test_suite/ifleft_orstringint_00.tzt tzt_reference_test_suite/ifnone_00.tc.tzt tzt_reference_test_suite/ifnone_optionint_00.tzt tzt_reference_test_suite/ifnone_optionnat_00.tzt tzt_reference_test_suite/implicitaccount_00.tzt tzt_reference_test_suite/int_00.tc.tzt tzt_reference_test_suite/int_nat_00.tzt tzt_reference_test_suite/int_nat_01.tzt tzt_reference_test_suite/isnat_00.tzt tzt_reference_test_suite/isnat_01.tzt tzt_reference_test_suite/iter_00.tc.tzt tzt_reference_test_suite/iter_listint_00.tzt tzt_reference_test_suite/iter_listint_01.tzt tzt_reference_test_suite/iter_listint_02.tzt tzt_reference_test_suite/iter_listint_03.tzt tzt_reference_test_suite/iter_liststring_00.tzt tzt_reference_test_suite/iter_liststring_01.tzt tzt_reference_test_suite/iter_mapintint_00.tzt tzt_reference_test_suite/iter_mapintint_01.tzt tzt_reference_test_suite/iter_mapintint_02.tzt tzt_reference_test_suite/iter_mapintint_03.tzt tzt_reference_test_suite/iter_mapintint_04.tzt tzt_reference_test_suite/iter_mapstringstring_00.tzt tzt_reference_test_suite/iter_setint_00.tzt tzt_reference_test_suite/iter_setint_01.tzt tzt_reference_test_suite/iter_setint_02.tzt tzt_reference_test_suite/iter_setstring_00.tzt tzt_reference_test_suite/iter_setstring_01.tzt tzt_reference_test_suite/iter_setstring_02.tzt tzt_reference_test_suite/join_tickets_00.tzt tzt_reference_test_suite/join_tickets_01.tzt tzt_reference_test_suite/join_tickets_02.tzt tzt_reference_test_suite/join_tickets_03.tzt tzt_reference_test_suite/keccak_00.tzt tzt_reference_test_suite/keccak_01.tzt tzt_reference_test_suite/le_00.tzt tzt_reference_test_suite/le_01.tzt tzt_reference_test_suite/le_02.tzt tzt_reference_test_suite/le_03.tzt tzt_reference_test_suite/le_04.tzt tzt_reference_test_suite/left_int-nat_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_00.tzt tzt_reference_test_suite/legacy/sub_mutez-mutez_01.tzt tzt_reference_test_suite/loop_00.tzt tzt_reference_test_suite/loop_00.tc.tzt tzt_reference_test_suite/loop_01.tzt tzt_reference_test_suite/loop_01.tc.tzt tzt_reference_test_suite/loop_02.tzt tzt_reference_test_suite/loopleft_00.tzt tzt_reference_test_suite/loopleft_01.tzt tzt_reference_test_suite/loopleft_02.tzt tzt_reference_test_suite/loopleft_03.tzt tzt_reference_test_suite/loopleft_04.tzt tzt_reference_test_suite/lsl_bytes_00.tzt tzt_reference_test_suite/lsl_bytes_01.tzt tzt_reference_test_suite/lsl_bytes_02.tzt tzt_reference_test_suite/lsl_bytes_03.tzt tzt_reference_test_suite/lsl_bytes_04.tzt tzt_reference_test_suite/lsl_bytes_05.tzt tzt_reference_test_suite/lsl_bytes_06.tzt tzt_reference_test_suite/lsl_nat_00.tzt tzt_reference_test_suite/lsl_nat_01.tzt tzt_reference_test_suite/lsl_nat_02.tzt tzt_reference_test_suite/lsl_nat_03.tzt tzt_reference_test_suite/lsl_nat_04.tzt tzt_reference_test_suite/lsl_nat_05.tzt tzt_reference_test_suite/lsl_nat_06.tzt tzt_reference_test_suite/lsl_nat_07.tzt tzt_reference_test_suite/lsl_nat_08.tzt tzt_reference_test_suite/lsr_bytes_00.tzt tzt_reference_test_suite/lsr_bytes_01.tzt tzt_reference_test_suite/lsr_bytes_02.tzt tzt_reference_test_suite/lsr_bytes_03.tzt tzt_reference_test_suite/lsr_bytes_04.tzt tzt_reference_test_suite/lsr_bytes_05.tzt tzt_reference_test_suite/lsr_bytes_06.tzt tzt_reference_test_suite/lsr_bytes_07.tzt tzt_reference_test_suite/lsr_nat_00.tzt tzt_reference_test_suite/lsr_nat_01.tzt tzt_reference_test_suite/lsr_nat_02.tzt tzt_reference_test_suite/lsr_nat_03.tzt tzt_reference_test_suite/lsr_nat_04.tzt tzt_reference_test_suite/lsr_nat_05.tzt tzt_reference_test_suite/lsr_nat_06.tzt tzt_reference_test_suite/lsr_nat_07.tzt tzt_reference_test_suite/lt_00.tzt tzt_reference_test_suite/lt_01.tzt tzt_reference_test_suite/lt_02.tzt tzt_reference_test_suite/lt_03.tzt tzt_reference_test_suite/lt_04.tzt tzt_reference_test_suite/macro_pack/assert_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpeq_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpge_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpgt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmple_00.tzt tzt_reference_test_suite/macro_pack/assert_cmplt_00.tzt tzt_reference_test_suite/macro_pack/assert_cmpneq_00.tzt tzt_reference_test_suite/macro_pack/assert_eq_00.tzt tzt_reference_test_suite/macro_pack/assert_ge_00.tzt tzt_reference_test_suite/macro_pack/assert_gt_00.tzt tzt_reference_test_suite/macro_pack/assert_le_00.tzt tzt_reference_test_suite/macro_pack/assert_left_00.tzt tzt_reference_test_suite/macro_pack/assert_lt_00.tzt tzt_reference_test_suite/macro_pack/assert_neq_00.tzt tzt_reference_test_suite/macro_pack/assert_none_00.tzt tzt_reference_test_suite/macro_pack/assert_right_00.tzt tzt_reference_test_suite/macro_pack/assert_some_00.tzt tzt_reference_test_suite/macro_pack/cadr_00.tzt tzt_reference_test_suite/macro_pack/carn_00.tzt tzt_reference_test_suite/macro_pack/carn_01.tzt tzt_reference_test_suite/macro_pack/cdrn_00.tzt tzt_reference_test_suite/macro_pack/cdrn_01.tzt tzt_reference_test_suite/macro_pack/cmpeq_00.tzt tzt_reference_test_suite/macro_pack/cmpge_00.tzt tzt_reference_test_suite/macro_pack/cmpgt_00.tzt tzt_reference_test_suite/macro_pack/cmple_00.tzt tzt_reference_test_suite/macro_pack/cmplt_00.tzt tzt_reference_test_suite/macro_pack/cmpneq_00.tzt tzt_reference_test_suite/macro_pack/fail_00.tzt tzt_reference_test_suite/macro_pack/ifcmpeq_00.tzt tzt_reference_test_suite/macro_pack/ifcmpge_00.tzt tzt_reference_test_suite/macro_pack/ifcmpgt_00.tzt tzt_reference_test_suite/macro_pack/ifcmple_00.tzt tzt_reference_test_suite/macro_pack/ifcmplt_00.tzt tzt_reference_test_suite/macro_pack/ifcmpneq_00.tzt tzt_reference_test_suite/macro_pack/ifeq_00.tzt tzt_reference_test_suite/macro_pack/ifge_00.tzt tzt_reference_test_suite/macro_pack/ifgt_00.tzt tzt_reference_test_suite/macro_pack/ifle_00.tzt tzt_reference_test_suite/macro_pack/iflt_00.tzt tzt_reference_test_suite/macro_pack/ifneq_00.tzt tzt_reference_test_suite/macro_pack/ifright_00.tzt tzt_reference_test_suite/macro_pack/ifsome_00.tzt tzt_reference_test_suite/macro_pack/mapcadr_00.tzt tzt_reference_test_suite/macro_pack/mapcar_00.tzt tzt_reference_test_suite/macro_pack/mapcdr_00.tzt tzt_reference_test_suite/macro_pack/papair_00.tzt tzt_reference_test_suite/macro_pack/setcadr_00.tzt tzt_reference_test_suite/macro_pack/setcar_00.tzt tzt_reference_test_suite/macro_pack/setcdr_00.tzt tzt_reference_test_suite/macro_pack/unpapair_00.tzt tzt_reference_test_suite/map_listint_00.tzt tzt_reference_test_suite/map_listint_01.tzt tzt_reference_test_suite/map_listint_02.tzt tzt_reference_test_suite/map_listint_03.tzt tzt_reference_test_suite/map_listint_04.tzt tzt_reference_test_suite/map_listint_05.tzt tzt_reference_test_suite/map_listint_06.tzt tzt_reference_test_suite/map_liststring_00.tzt tzt_reference_test_suite/map_liststring_01.tzt tzt_reference_test_suite/map_liststring_02.tzt tzt_reference_test_suite/map_liststring_04.tzt tzt_reference_test_suite/map_liststring_05.tzt tzt_reference_test_suite/map_liststring_06.tzt tzt_reference_test_suite/map_liststring_07.tzt tzt_reference_test_suite/map_liststring_08.tzt tzt_reference_test_suite/map_mapintint_00.tzt tzt_reference_test_suite/map_mapintint_01.tzt tzt_reference_test_suite/map_mapintstring_00.tzt tzt_reference_test_suite/map_mapintstring_01.tzt tzt_reference_test_suite/map_mapstringnat_00.tzt tzt_reference_test_suite/map_mapstringnat_01.tzt tzt_reference_test_suite/map_mapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_00.tzt tzt_reference_test_suite/mem_bigmapnatnat_01.tzt tzt_reference_test_suite/mem_bigmapnatnat_02.tzt tzt_reference_test_suite/mem_bigmapnatnat_03.tzt tzt_reference_test_suite/mem_bigmapnatnat_04.tzt tzt_reference_test_suite/mem_bigmapnatnat_05.tzt tzt_reference_test_suite/mem_bigmapstringnat_00.tzt tzt_reference_test_suite/mem_bigmapstringnat_01.tzt tzt_reference_test_suite/mem_bigmapstringnat_02.tzt tzt_reference_test_suite/mem_bigmapstringnat_03.tzt tzt_reference_test_suite/mem_bigmapstringnat_04.tzt tzt_reference_test_suite/mem_bigmapstringnat_05.tzt tzt_reference_test_suite/mem_mapintint_00.tzt tzt_reference_test_suite/mem_mapnatnat_00.tzt tzt_reference_test_suite/mem_mapnatnat_01.tzt tzt_reference_test_suite/mem_mapnatnat_02.tzt tzt_reference_test_suite/mem_mapnatnat_03.tzt tzt_reference_test_suite/mem_mapnatnat_04.tzt tzt_reference_test_suite/mem_mapnatnat_05.tzt tzt_reference_test_suite/mem_mapstringnat_00.tzt tzt_reference_test_suite/mem_mapstringnat_01.tzt tzt_reference_test_suite/mem_mapstringnat_02.tzt tzt_reference_test_suite/mem_mapstringnat_03.tzt tzt_reference_test_suite/mem_mapstringnat_04.tzt tzt_reference_test_suite/mem_mapstringnat_05.tzt tzt_reference_test_suite/mem_setint_00.tzt tzt_reference_test_suite/mem_setint_01.tzt tzt_reference_test_suite/mem_setstring_00.tzt tzt_reference_test_suite/mem_setstring_01.tzt tzt_reference_test_suite/mem_setstring_02.tzt tzt_reference_test_suite/mul_int-int_00.tzt tzt_reference_test_suite/mul_int-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_00.tzt tzt_reference_test_suite/mul_mutez-nat_01.tzt tzt_reference_test_suite/mul_nat-int_00.tzt tzt_reference_test_suite/mul_nat-mutez_00.tzt tzt_reference_test_suite/mul_nat-mutez_01.tzt tzt_reference_test_suite/mul_nat-nat_00.tzt tzt_reference_test_suite/neg_int_00.tzt tzt_reference_test_suite/neg_int_01.tzt tzt_reference_test_suite/neg_int_02.tzt tzt_reference_test_suite/neg_nat_00.tzt tzt_reference_test_suite/neg_nat_01.tzt tzt_reference_test_suite/neq_00.tzt tzt_reference_test_suite/neq_01.tzt tzt_reference_test_suite/neq_02.tzt tzt_reference_test_suite/neq_03.tzt tzt_reference_test_suite/neq_04.tzt tzt_reference_test_suite/never_00.tzt tzt_reference_test_suite/never_00.tc.tzt tzt_reference_test_suite/nil_nat_00.tzt tzt_reference_test_suite/none_int_00.tzt tzt_reference_test_suite/none_pair-nat-string.tzt tzt_reference_test_suite/not_bool_00.tzt tzt_reference_test_suite/not_bool_01.tzt tzt_reference_test_suite/not_bytes_00.tzt tzt_reference_test_suite/not_bytes_01.tzt tzt_reference_test_suite/not_bytes_02.tzt tzt_reference_test_suite/not_bytes_03.tzt tzt_reference_test_suite/not_bytes_04.tzt tzt_reference_test_suite/not_bytes_05.tzt tzt_reference_test_suite/not_int_00.tzt tzt_reference_test_suite/not_nat_00.tzt tzt_reference_test_suite/not_nat_01.tzt tzt_reference_test_suite/not_nat_02.tzt tzt_reference_test_suite/not_nat_03.tzt tzt_reference_test_suite/not_nat_04.tzt tzt_reference_test_suite/not_nat_05.tzt tzt_reference_test_suite/not_nat_06.tzt tzt_reference_test_suite/not_nat_07.tzt tzt_reference_test_suite/now_00.tzt tzt_reference_test_suite/or_bool-bool_00.tzt tzt_reference_test_suite/or_bool-bool_01.tzt tzt_reference_test_suite/or_bool-bool_02.tzt tzt_reference_test_suite/or_bool-bool_03.tzt tzt_reference_test_suite/or_bytes-bytes_00.tzt tzt_reference_test_suite/or_bytes-bytes_01.tzt tzt_reference_test_suite/or_bytes-bytes_02.tzt tzt_reference_test_suite/or_bytes-bytes_03.tzt tzt_reference_test_suite/or_bytes-bytes_04.tzt tzt_reference_test_suite/or_bytes-bytes_05.tzt tzt_reference_test_suite/or_bytes-bytes_06.tzt tzt_reference_test_suite/or_nat-nat_00.tzt tzt_reference_test_suite/or_nat-nat_01.tzt tzt_reference_test_suite/or_nat-nat_02.tzt tzt_reference_test_suite/or_nat-nat_03.tzt tzt_reference_test_suite/or_nat-nat_04.tzt tzt_reference_test_suite/or_nat-nat_05.tzt tzt_reference_test_suite/or_nat-nat_06.tzt tzt_reference_test_suite/pack_address_00.tzt tzt_reference_test_suite/pack_address_01.tzt tzt_reference_test_suite/pack_address_02.tzt tzt_reference_test_suite/pack_address_03.tzt tzt_reference_test_suite/pack_address_04.tzt tzt_reference_test_suite/pack_address_05.tzt tzt_reference_test_suite/pack_bool_00.tzt tzt_reference_test_suite/pack_bool_01.tzt tzt_reference_test_suite/pack_bytes_00.tzt tzt_reference_test_suite/pack_bytes_01.tzt tzt_reference_test_suite/pack_bytes_02.tzt tzt_reference_test_suite/pack_chainid_00.tzt tzt_reference_test_suite/pack_contract_00.tzt tzt_reference_test_suite/pack_key_00.tzt tzt_reference_test_suite/pack_key_01.tzt tzt_reference_test_suite/pack_key_02.tzt tzt_reference_test_suite/pack_key_03.tzt tzt_reference_test_suite/pack_keyhash_01.tzt tzt_reference_test_suite/pack_keyhash_02.tzt tzt_reference_test_suite/pack_keyhash_03.tzt tzt_reference_test_suite/pack_keyhash_04.tzt tzt_reference_test_suite/pack_lambda_comb_pairs.tzt tzt_reference_test_suite/pack_list-bool_00.tzt tzt_reference_test_suite/pack_list-bool_01.tzt tzt_reference_test_suite/pack_list-list-bool.tzt tzt_reference_test_suite/pack_list_large_00.tzt tzt_reference_test_suite/pack_map-bool-unit_00.tzt tzt_reference_test_suite/pack_operation_00.tc.tzt tzt_reference_test_suite/pack_option-unit_00.tzt tzt_reference_test_suite/pack_option-unit_01.tzt tzt_reference_test_suite/pack_or-unit-bool_00.tzt tzt_reference_test_suite/pack_or-unit-bool_01.tzt tzt_reference_test_suite/pack_pair-bool-unit_00.tzt tzt_reference_test_suite/pack_signature_00.tzt tzt_reference_test_suite/pack_signature_01.tzt tzt_reference_test_suite/pack_signature_02.tzt tzt_reference_test_suite/pack_signature_03.tzt tzt_reference_test_suite/pack_string_00.tzt tzt_reference_test_suite/pack_string_01.tzt tzt_reference_test_suite/pack_string_02.tzt tzt_reference_test_suite/pack_string_03.tzt tzt_reference_test_suite/pack_unit_00.tzt tzt_reference_test_suite/packunpack_address_00.tzt tzt_reference_test_suite/packunpack_bool_00.tzt tzt_reference_test_suite/packunpack_bytes_00.tzt tzt_reference_test_suite/packunpack_int_00.tzt tzt_reference_test_suite/packunpack_keyhash_00.tzt tzt_reference_test_suite/packunpack_mutez_00.tzt tzt_reference_test_suite/packunpack_nat_00.tzt tzt_reference_test_suite/packunpack_string_00.tzt tzt_reference_test_suite/packunpack_timestamp_00.tzt tzt_reference_test_suite/pair_00.tc.tzt tzt_reference_test_suite/pair_int-int_00.tzt tzt_reference_test_suite/pair_nat-string_00.tzt tzt_reference_test_suite/pair_pair-nat-string-pair-string-nat_00.tzt tzt_reference_test_suite/push_00.tc.tzt tzt_reference_test_suite/push_int_00.tzt tzt_reference_test_suite/push_string_00.tzt tzt_reference_test_suite/read_ticket_00.tzt tzt_reference_test_suite/right_nat-int_00.tzt tzt_reference_test_suite/self_00.tzt tzt_reference_test_suite/self_01.tzt tzt_reference_test_suite/self_in_lambda.tc.tzt tzt_reference_test_suite/sender_00.tzt tzt_reference_test_suite/setdelegate_00.tzt tzt_reference_test_suite/setdelegate_00.tc.tzt tzt_reference_test_suite/sha256_00.tzt tzt_reference_test_suite/sha256_01.tzt tzt_reference_test_suite/sha3_00.tzt tzt_reference_test_suite/sha3_01.tzt tzt_reference_test_suite/sha512_00.tzt tzt_reference_test_suite/sha512_01.tzt tzt_reference_test_suite/size_bytes_00.tzt tzt_reference_test_suite/size_listint_00.tzt tzt_reference_test_suite/size_listint_01.tzt tzt_reference_test_suite/size_listint_02.tzt tzt_reference_test_suite/size_listint_03.tzt tzt_reference_test_suite/size_mapintint_00.tzt tzt_reference_test_suite/size_mapstringnat_00.tzt tzt_reference_test_suite/size_mapstringnat_01.tzt tzt_reference_test_suite/size_mapstringnat_02.tzt tzt_reference_test_suite/size_mapstringnat_03.tzt tzt_reference_test_suite/size_setint_00.tzt tzt_reference_test_suite/size_setint_01.tzt tzt_reference_test_suite/size_setint_02.tzt tzt_reference_test_suite/size_setint_03.tzt tzt_reference_test_suite/size_setstring_00.tzt tzt_reference_test_suite/size_string_00.tzt tzt_reference_test_suite/slice_bytes_00.tzt tzt_reference_test_suite/slice_bytes_01.tzt tzt_reference_test_suite/slice_bytes_02.tzt tzt_reference_test_suite/slice_bytes_03.tzt tzt_reference_test_suite/slice_bytes_04.tzt tzt_reference_test_suite/slice_string_00.tzt tzt_reference_test_suite/slice_string_01.tzt tzt_reference_test_suite/slice_string_02.tzt tzt_reference_test_suite/slice_string_03.tzt tzt_reference_test_suite/slice_string_04.tzt tzt_reference_test_suite/slice_string_05.tzt tzt_reference_test_suite/some_00.tc.tzt tzt_reference_test_suite/some_int_00.tzt tzt_reference_test_suite/some_pairintint_00.tzt tzt_reference_test_suite/some_string_00.tzt tzt_reference_test_suite/source_00.tzt tzt_reference_test_suite/split_ticket_00.tzt tzt_reference_test_suite/split_ticket_01.tzt tzt_reference_test_suite/split_ticket_02.tzt tzt_reference_test_suite/split_ticket_03.tzt tzt_reference_test_suite/split_ticket_04.tzt tzt_reference_test_suite/sub_int-int_00.tzt tzt_reference_test_suite/sub_int-int_01.tzt tzt_reference_test_suite/sub_int-int_02.tzt tzt_reference_test_suite/sub_int-int_03.tzt tzt_reference_test_suite/sub_int-int_04.tzt tzt_reference_test_suite/sub_int-int_05.tzt tzt_reference_test_suite/sub_int-nat_00.tzt tzt_reference_test_suite/sub_int-nat_01.tzt tzt_reference_test_suite/sub_int-nat_02.tzt tzt_reference_test_suite/sub_int-nat_03.tzt tzt_reference_test_suite/sub_int-nat_04.tzt tzt_reference_test_suite/sub_int-nat_05.tzt tzt_reference_test_suite/sub_mutez_00.tzt tzt_reference_test_suite/sub_mutez_01.tzt tzt_reference_test_suite/sub_nat-int_00.tzt tzt_reference_test_suite/sub_nat-int_01.tzt tzt_reference_test_suite/sub_nat-int_02.tzt tzt_reference_test_suite/sub_nat-int_03.tzt tzt_reference_test_suite/sub_nat-int_04.tzt tzt_reference_test_suite/sub_nat-int_05.tzt tzt_reference_test_suite/sub_nat-nat_00.tzt tzt_reference_test_suite/sub_nat-nat_01.tzt tzt_reference_test_suite/sub_nat-nat_02.tzt tzt_reference_test_suite/sub_nat-nat_03.tzt tzt_reference_test_suite/sub_nat-nat_04.tzt tzt_reference_test_suite/sub_timestamp-int_00.tzt tzt_reference_test_suite/sub_timestamp-int_01.tzt tzt_reference_test_suite/sub_timestamp-int_02.tzt tzt_reference_test_suite/sub_timestamp-int_03.tzt tzt_reference_test_suite/sub_timestamp-int_04.tzt tzt_reference_test_suite/sub_timestamp-int_05.tzt tzt_reference_test_suite/sub_timestamp-int_06.tzt tzt_reference_test_suite/sub_timestamp-timestamp_00.tzt tzt_reference_test_suite/sub_timestamp-timestamp_01.tzt tzt_reference_test_suite/sub_timestamp-timestamp_02.tzt tzt_reference_test_suite/sub_timestamp-timestamp_03.tzt tzt_reference_test_suite/sub_timestamp-timestamp_04.tzt tzt_reference_test_suite/swap_00.tzt tzt_reference_test_suite/swap_00.tc.tzt tzt_reference_test_suite/swap_01.tc.tzt tzt_reference_test_suite/ticket_00.tzt tzt_reference_test_suite/ticket_01.tzt tzt_reference_test_suite/transfertokens_00.tzt tzt_reference_test_suite/transfertokens_00.tc.tzt tzt_reference_test_suite/transfertokens_01.tzt tzt_reference_test_suite/unit_00.tzt tzt_reference_test_suite/unpair_00.tc.tzt tzt_reference_test_suite/unpair_pairstringstring_00.tzt tzt_reference_test_suite/update_00.tc.tzt tzt_reference_test_suite/update_bigmapstringstring_00.tzt tzt_reference_test_suite/update_bigmapstringstring_01.tzt tzt_reference_test_suite/update_bigmapstringstring_02.tzt tzt_reference_test_suite/update_bigmapstringstring_03.tzt tzt_reference_test_suite/update_bigmapstringstring_04.tzt tzt_reference_test_suite/update_bigmapstringstring_05.tzt tzt_reference_test_suite/update_bigmapstringstring_06.tzt tzt_reference_test_suite/update_bigmapstringstring_07.tzt tzt_reference_test_suite/update_mapintint_00.tzt tzt_reference_test_suite/update_mapintint_01.tzt tzt_reference_test_suite/update_setint_00.tzt tzt_reference_test_suite/update_setint_01.tzt tzt_reference_test_suite/update_setint_02.tzt tzt_reference_test_suite/xor_bool-bool_00.tzt tzt_reference_test_suite/xor_bool-bool_01.tzt tzt_reference_test_suite/xor_bool-bool_02.tzt tzt_reference_test_suite/xor_bool-bool_03.tzt tzt_reference_test_suite/xor_bytes-bytes_00.tzt tzt_reference_test_suite/xor_bytes-bytes_01.tzt tzt_reference_test_suite/xor_bytes-bytes_02.tzt tzt_reference_test_suite/xor_bytes-bytes_03.tzt tzt_reference_test_suite/xor_bytes-bytes_04.tzt tzt_reference_test_suite/xor_bytes-bytes_05.tzt tzt_reference_test_suite/xor_bytes-bytes_06.tzt tzt_reference_test_suite/xor_nat-nat_00.tzt tzt_reference_test_suite/xor_nat-nat_01.tzt tzt_reference_test_suite/xor_nat-nat_02.tzt tzt_reference_test_suite/xor_nat-nat_03.tzt tzt_reference_test_suite/xor_nat-nat_04.tzt tzt_reference_test_suite/xor_nat-nat_05.tzt tzt_reference_test_suite/xor_nat-nat_06.tzt tzt_reference_test_suite/transfertokens_01.tzt: Got output: { Stack_elt operation -- GitLab From 6a99605d8b87e4fd2469823014ce8e5fb994e283 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:46 +0200 Subject: [PATCH 23/25] Beta/sandbox: update octez-activate-beta command to client sandbox --- src/bin_client/octez-init-sandboxed-client.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin_client/octez-init-sandboxed-client.sh b/src/bin_client/octez-init-sandboxed-client.sh index 6f39beac2070..25399c48233e 100755 --- a/src/bin_client/octez-init-sandboxed-client.sh +++ b/src/bin_client/octez-init-sandboxed-client.sh @@ -207,7 +207,7 @@ main() { cat << EOF if type octez-client-reset >/dev/null 2>&1 ; then octez-client-reset; fi ; PATH="$client_dir/bin:\$PATH" ; export PATH ; -alias octez-activate-beta="$client -block genesis activate protocol Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY with fitness 1 and key activator and parameters $beta_parameters_file"; +alias octez-activate-beta="$client -block genesis activate protocol PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT with fitness 1 and key activator and parameters $beta_parameters_file"; alias octez-activate-alpha="$client -block genesis activate protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK with fitness 1 and key activator and parameters $parameters_file" ; alias octez-client-reset="rm -rf \"$client_dir\"; unalias octez-activate-alpha octez-client-reset" ; alias octez-autocomplete="if [ \$ZSH_NAME ] ; then autoload bashcompinit ; bashcompinit ; fi ; source \"$bin_dir/bash-completion.sh\"" ; -- GitLab From 12131eb43ccf773987ac935ac85315e7f52a11a2 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:15:56 +0200 Subject: [PATCH 24/25] Beta/docs: update docs Makefile --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 44ac251db9a0..457118d1af04 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -21,7 +21,7 @@ PROTOCOLS = $(NAMED_PROTOS) alpha beta # The following variables names are lowercase, so their names can be computed # from the names of the corresponding protocol directories paris_long = PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi -beta_long = Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY +beta_long = PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT alpha_long = ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK paris_short = PtParisC -- GitLab From 15af93c1fd1575abed29963c2c4388b781b75944 Mon Sep 17 00:00:00 2001 From: Julien Tesson Date: Tue, 27 Aug 2024 12:16:45 +0200 Subject: [PATCH 25/25] Beta/docs: generate beta/rpc.rst --- docs/beta/rpc.rst | 16818 ++++++++++++++++++++++---------------------- 1 file changed, 8407 insertions(+), 8411 deletions(-) diff --git a/docs/beta/rpc.rst b/docs/beta/rpc.rst index 7188b03f7a38..23ccc17643f0 100644 --- a/docs/beta/rpc.rst +++ b/docs/beta/rpc.rst @@ -1,6 +1,6 @@ .. raw:: html - - + + - + .. raw:: html - - + + - + .. _rpc_index_beta : @@ -89,153 +89,153 @@ Index ***** * ../ (`GET `_) - + * ..//context - + * ..//context/adaptive_issuance_launch_cycle (`GET `_) - + * ..//context/cache - + * ..//context/cache/contracts - + * ..//context/cache/contracts/all (`GET `_) - + * ..//context/cache/contracts/rank (`POST `_) - + * ..//context/cache/contracts/size (`GET `_) - + * ..//context/cache/contracts/size_limit (`GET `_) - + * ..//context/constants (`GET `_) - + * ..//context/constants/errors (`GET `_) - + * ..//context/constants/parametric (`GET `_) - + * ..//context/denunciations (`GET `_) - + * ..//context/issuance - + * ..//context/issuance/current_yearly_rate (`GET `_) - + * ..//context/issuance/current_yearly_rate_details (`GET `_) - + * ..//context/issuance/current_yearly_rate_exact (`GET `_) - + * ..//context/issuance/expected_issuance (`GET `_) - + * ..//context/issuance/issuance_per_minute (`GET `_) - + * ..//context/liquidity_baking - + * ..//context/liquidity_baking/cpmm_address (`GET `_) - + * ..//context/merkle_tree (`GET `_) - + * ..//context/merkle_tree_v2 (`GET `_) - + * ..//context/nonces - + * ..//context/nonces/ (`GET `_) - + * ..//context/raw - + * ..//context/raw/bytes (`GET `_) - + * ..//context/raw/json () - + * ..//context/sapling - + * ..//context/sapling/ - + * ..//context/sapling//get_diff (`GET `_) - + * ..//context/seed (`POST `_) - + * ..//context/seed_computation (`GET `_) - + * ..//context/total_frozen_stake (`GET `_) - + * ..//context/total_supply (`GET `_) - + * ..//hash (`GET `_) - + * ..//header (`GET `_) - + * ..//header/protocol_data (`GET `_) - + * ..//header/protocol_data/raw (`GET `_) - + * ..//header/raw (`GET `_) - + * ..//header/shell (`GET `_) - + * ..//helpers - + * ..//helpers/complete - + * ..//helpers/complete/ (`GET `_) - + * ..//helpers/forge_block_header (`POST `_) - + * ..//helpers/preapply - + * ..//helpers/preapply/block (`POST `_) - + * ..//helpers/preapply/operations (`POST `_) - + * ..//live_blocks (`GET `_) - + * ..//metadata (`GET `_) - + * ..//metadata_hash (`GET `_) - + * ..//operation_hashes (`GET `_) - + * ..//operation_hashes/ (`GET `_) - + * ..//operation_hashes// (`GET `_) - + * ..//operation_metadata_hashes (`GET `_) - + * ..//operation_metadata_hashes/ (`GET `_) - + * ..//operation_metadata_hashes// (`GET `_) - + * ..//operations (`GET `_) - + * ..//operations/ (`GET `_) - + * ..//operations// (`GET `_) - + * ..//operations_metadata_hash (`GET `_) - + * ..//protocols (`GET `_) - + * ..//resulting_context_hash (`GET `_) - + * ..//votes - + * ..//votes/ballot_list (`GET `_) - + * ..//votes/ballots (`GET `_) - + * ..//votes/current_period (`GET `_) - + * ..//votes/current_proposal (`GET `_) - + * ..//votes/current_quorum (`GET `_) - + * ..//votes/listings (`GET `_) - + * ..//votes/proposal_count - + * ..//votes/proposal_count/ (`GET `_) - + * ..//votes/proposals (`GET `_) - + * ..//votes/successor_period (`GET `_) - + * ..//votes/total_voting_power (`GET `_) Full description @@ -246,7 +246,7 @@ Full description **GET ../?[version=]&[force_metadata]&[metadata=]** .. raw:: html - +

@@ -257,7 +257,7 @@ Full description
     { /* block_info_encoding_v1 */
-      "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+      "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
       "chain_id": $Chain_id,
       "hash": $block_hash,
       "header": $raw_block_header,
@@ -2885,8 +2885,8 @@ Full description
       /* A block identifier (Base58Check-encoded) */
       $unistring
     $block_header_metadata:
-      { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
-        "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+      { "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
+        "next_protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
         "test_chain_status": $test_chain_status,
         "max_operations_ttl": integer ∈ [-2^30, 2^30],
         "max_operation_data_length": integer ∈ [-2^30, 2^30],
@@ -2991,7 +2991,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $operation:
       { /* An operation's shell header. */
-        "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+        "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
         "chain_id": $Chain_id,
         "hash": $Operation_hash,
         "branch": $block_hash,
@@ -2999,14 +2999,14 @@ Full description
         "signature"?: $Signature.V1,
         "metadata": "too large" }
       || { /* An operation's shell header. */
-           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+           "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
            "contents": [ $beta.operation.alpha.contents ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+           "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -3014,7 +3014,7 @@ Full description
              [ $beta.operation.alpha.operation_contents_and_result ... ],
            "signature"?: $Signature.V1 }
       || { /* An operation's shell header. */
-           "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+           "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
@@ -3116,11 +3116,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | operations                     | Variable             | sequence of $X_78                   |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     fitness.elem
     ************
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -3128,104 +3128,104 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     beta.per_block_votes (1 byte, 8-bit tag)
     ****************************************
-    
+
     case_0 (tag 0)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_1 (tag 1)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_2 (tag 2)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_4 (tag 4)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_5 (tag 5)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_6 (tag 6)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_8 (tag 8)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_9 (tag 9)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_10 (tag 10)
     ================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     raw_block_header
     ****************
-    
+
     +---------------------------------------+----------+-------------------------------------+
     | Name                                  | Size     | Contents                            |
     +=======================================+==========+=====================================+
@@ -3261,24 +3261,24 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    
-    
+
+
     test_chain_status (Determined from data, 8-bit tag)
     ***************************************************
-    
+
     Not_running (tag 0)
     ===================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Forking (tag 1)
     ===============
-    
+
     +------------+----------+----------------------------------+
     | Name       | Size     | Contents                         |
     +============+==========+==================================+
@@ -3288,11 +3288,11 @@ Full description
     +------------+----------+----------------------------------+
     | expiration | 8 bytes  | signed 64-bit big-endian integer |
     +------------+----------+----------------------------------+
-    
-    
+
+
     Running (tag 2)
     ===============
-    
+
     +------------+----------+----------------------------------+
     | Name       | Size     | Contents                         |
     +============+==========+==================================+
@@ -3306,11 +3306,11 @@ Full description
     +------------+----------+----------------------------------+
     | expiration | 8 bytes  | signed 64-bit big-endian integer |
     +------------+----------+----------------------------------+
-    
-    
+
+
     X_2
     ***
-    
+
     +------------------------------+---------+-------------------------------------------------------------------------+
     | Name                         | Size    | Contents                                                                |
     +==============================+=========+=========================================================================+
@@ -3320,11 +3320,11 @@ Full description
     +------------------------------+---------+-------------------------------------------------------------------------+
     | max_op                       | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +------------------------------+---------+-------------------------------------------------------------------------+
-    
-    
+
+
     X_1
     ***
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -3332,14 +3332,14 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $X_2                   |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     public_key_hash (21 bytes, 8-bit tag)
     *************************************
-    
+
     Ed25519 (tag 0)
     ===============
-    
+
     +-------------------------+----------+------------------------+
     | Name                    | Size     | Contents               |
     +=========================+==========+========================+
@@ -3347,11 +3347,11 @@ Full description
     +-------------------------+----------+------------------------+
     | Ed25519.Public_key_hash | 20 bytes | bytes                  |
     +-------------------------+----------+------------------------+
-    
-    
+
+
     Secp256k1 (tag 1)
     =================
-    
+
     +---------------------------+----------+------------------------+
     | Name                      | Size     | Contents               |
     +===========================+==========+========================+
@@ -3359,11 +3359,11 @@ Full description
     +---------------------------+----------+------------------------+
     | Secp256k1.Public_key_hash | 20 bytes | bytes                  |
     +---------------------------+----------+------------------------+
-    
-    
+
+
     P256 (tag 2)
     ============
-    
+
     +----------------------+----------+------------------------+
     | Name                 | Size     | Contents               |
     +======================+==========+========================+
@@ -3371,11 +3371,11 @@ Full description
     +----------------------+----------+------------------------+
     | P256.Public_key_hash | 20 bytes | bytes                  |
     +----------------------+----------+------------------------+
-    
-    
+
+
     Bls (tag 3)
     ===========
-    
+
     +---------------------------+----------+------------------------+
     | Name                      | Size     | Contents               |
     +===========================+==========+========================+
@@ -3383,11 +3383,11 @@ Full description
     +---------------------------+----------+------------------------+
     | Bls12_381.Public_key_hash | 20 bytes | bytes                  |
     +---------------------------+----------+------------------------+
-    
-    
+
+
     X_3
     ***
-    
+
     +---------------------+---------+-------------------------------------+
     | Name                | Size    | Contents                            |
     +=====================+=========+=====================================+
@@ -3401,64 +3401,64 @@ Full description
     +---------------------+---------+-------------------------------------+
     | expected_commitment | 1 byte  | boolean (0 for false, 255 for true) |
     +---------------------+---------+-------------------------------------+
-    
-    
+
+
     X_6 (1 byte, 8-bit tag)
     ***********************
-    
+
     Proposal (tag 0)
     ================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     exploration (tag 1)
     ===================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Cooldown (tag 2)
     ================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Promotion (tag 3)
     =================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Adoption (tag 4)
     ================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_5
     ***
-    
+
     +----------------+---------+----------------------------------+
     | Name           | Size    | Contents                         |
     +================+=========+==================================+
@@ -3468,11 +3468,11 @@ Full description
     +----------------+---------+----------------------------------+
     | start_position | 4 bytes | signed 32-bit big-endian integer |
     +----------------+---------+----------------------------------+
-    
-    
+
+
     X_4
     ***
-    
+
     +---------------+---------+----------------------------------+
     | Name          | Size    | Contents                         |
     +===============+=========+==================================+
@@ -3482,24 +3482,24 @@ Full description
     +---------------+---------+----------------------------------+
     | remaining     | 4 bytes | signed 32-bit big-endian integer |
     +---------------+---------+----------------------------------+
-    
-    
+
+
     X_7 (Determined from data, 8-bit tag)
     *************************************
-    
+
     None (tag 0)
     ============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Some (tag 1)
     ============
-    
+
     +-------------+----------+------------------------+
     | Name        | Size     | Contents               |
     +=============+==========+========================+
@@ -3507,14 +3507,14 @@ Full description
     +-------------+----------+------------------------+
     | cycle_nonce | 32 bytes | bytes                  |
     +-------------+----------+------------------------+
-    
-    
+
+
     beta.contract_id (22 bytes, 8-bit tag)
     **************************************
-    
+
     Implicit (tag 0)
     ================
-    
+
     +---------------------------+----------+------------------------+
     | Name                      | Size     | Contents               |
     +===========================+==========+========================+
@@ -3522,11 +3522,11 @@ Full description
     +---------------------------+----------+------------------------+
     | Signature.Public_key_hash | 21 bytes | $public_key_hash       |
     +---------------------------+----------+------------------------+
-    
-    
+
+
     Originated (tag 1)
     ==================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -3536,14 +3536,14 @@ Full description
     +---------------+----------+------------------------+
     | padding       | 1 byte   | padding                |
     +---------------+----------+------------------------+
-    
-    
+
+
     beta.staker (Determined from data, 8-bit tag)
     *********************************************
-    
+
     Single (tag 0)
     ==============
-    
+
     +----------+----------+------------------------+
     | Name     | Size     | Contents               |
     +==========+==========+========================+
@@ -3553,11 +3553,11 @@ Full description
     +----------+----------+------------------------+
     | delegate | 21 bytes | $public_key_hash       |
     +----------+----------+------------------------+
-    
-    
+
+
     Shared (tag 1)
     ==============
-    
+
     +----------+----------+------------------------+
     | Name     | Size     | Contents               |
     +==========+==========+========================+
@@ -3565,14 +3565,14 @@ Full description
     +----------+----------+------------------------+
     | delegate | 21 bytes | $public_key_hash       |
     +----------+----------+------------------------+
-    
-    
+
+
     beta.bond_id (21 bytes, 8-bit tag)
     **********************************
-    
+
     Smart_rollup_bond_id (tag 1)
     ============================
-    
+
     +--------------+----------+------------------------+
     | Name         | Size     | Contents               |
     +==============+==========+========================+
@@ -3580,14 +3580,14 @@ Full description
     +--------------+----------+------------------------+
     | smart_rollup | 20 bytes | bytes                  |
     +--------------+----------+------------------------+
-    
-    
+
+
     beta.frozen_staker (Determined from data, 8-bit tag)
     ****************************************************
-    
+
     Single (tag 0)
     ==============
-    
+
     +----------+----------+------------------------+
     | Name     | Size     | Contents               |
     +==========+==========+========================+
@@ -3597,11 +3597,11 @@ Full description
     +----------+----------+------------------------+
     | delegate | 21 bytes | $public_key_hash       |
     +----------+----------+------------------------+
-    
-    
+
+
     Shared (tag 1)
     ==============
-    
+
     +----------+----------+------------------------+
     | Name     | Size     | Contents               |
     +==========+==========+========================+
@@ -3609,11 +3609,11 @@ Full description
     +----------+----------+------------------------+
     | delegate | 21 bytes | $public_key_hash       |
     +----------+----------+------------------------+
-    
-    
+
+
     Baker (tag 2)
     =============
-    
+
     +-----------------+----------+------------------------+
     | Name            | Size     | Contents               |
     +=================+==========+========================+
@@ -3621,11 +3621,11 @@ Full description
     +-----------------+----------+------------------------+
     | baker_own_stake | 21 bytes | $public_key_hash       |
     +-----------------+----------+------------------------+
-    
-    
+
+
     Baker_edge (tag 3)
     ==================
-    
+
     +------------+----------+------------------------+
     | Name       | Size     | Contents               |
     +============+==========+========================+
@@ -3633,14 +3633,14 @@ Full description
     +------------+----------+------------------------+
     | baker_edge | 21 bytes | $public_key_hash       |
     +------------+----------+------------------------+
-    
-    
+
+
     X_9 (Determined from data, 8-bit tag)
     *************************************
-    
+
     Contract (tag 0)
     ================
-    
+
     +----------+----------+----------------------------------+
     | Name     | Size     | Contents                         |
     +==========+==========+==================================+
@@ -3650,11 +3650,11 @@ Full description
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
-    
-    
+
+
     Block_fees (tag 2)
     ==================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3662,11 +3662,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Deposits (tag 4)
     ================
-    
+
     +--------+----------------------+----------------------------------+
     | Name   | Size                 | Contents                         |
     +========+======================+==================================+
@@ -3676,11 +3676,11 @@ Full description
     +--------+----------------------+----------------------------------+
     | change | 8 bytes              | signed 64-bit big-endian integer |
     +--------+----------------------+----------------------------------+
-    
-    
+
+
     Nonce_revelation_rewards (tag 5)
     ================================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3688,11 +3688,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Attesting_rewards (tag 7)
     =========================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3700,11 +3700,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Baking_rewards (tag 8)
     ======================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3712,11 +3712,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Baking_bonuses (tag 9)
     ======================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3724,11 +3724,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Storage_fees (tag 11)
     =====================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3736,11 +3736,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Double_signing_punishments (tag 12)
     ===================================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3748,11 +3748,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Lost_attesting_rewards (tag 13)
     ===============================
-    
+
     +---------------+----------+-------------------------------------+
     | Name          | Size     | Contents                            |
     +===============+==========+=====================================+
@@ -3766,11 +3766,11 @@ Full description
     +---------------+----------+-------------------------------------+
     | change        | 8 bytes  | signed 64-bit big-endian integer    |
     +---------------+----------+-------------------------------------+
-    
-    
+
+
     Liquidity_baking_subsidies (tag 14)
     ===================================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3778,11 +3778,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Burned (tag 15)
     ===============
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3790,11 +3790,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Commitments (tag 16)
     ====================
-    
+
     +-----------+----------+----------------------------------+
     | Name      | Size     | Contents                         |
     +===========+==========+==================================+
@@ -3804,11 +3804,11 @@ Full description
     +-----------+----------+----------------------------------+
     | change    | 8 bytes  | signed 64-bit big-endian integer |
     +-----------+----------+----------------------------------+
-    
-    
+
+
     Bootstrap (tag 17)
     ==================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3816,11 +3816,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Invoice (tag 18)
     ================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3828,11 +3828,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Initial_commitments (tag 19)
     ============================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3840,11 +3840,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Minted (tag 20)
     ===============
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3852,11 +3852,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Frozen_bonds (tag 21)
     =====================
-    
+
     +----------+----------+----------------------------------+
     | Name     | Size     | Contents                         |
     +==========+==========+==================================+
@@ -3868,11 +3868,11 @@ Full description
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
-    
-    
+
+
     Smart_rollup_refutation_punishments (tag 24)
     ============================================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3880,11 +3880,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Smart_rollup_refutation_rewards (tag 25)
     ========================================
-    
+
     +--------+---------+----------------------------------+
     | Name   | Size    | Contents                         |
     +========+=========+==================================+
@@ -3892,11 +3892,11 @@ Full description
     +--------+---------+----------------------------------+
     | change | 8 bytes | signed 64-bit big-endian integer |
     +--------+---------+----------------------------------+
-    
-    
+
+
     Unstaked_deposits (tag 26)
     ==========================
-    
+
     +--------+----------------------+----------------------------------+
     | Name   | Size                 | Contents                         |
     +========+======================+==================================+
@@ -3908,11 +3908,11 @@ Full description
     +--------+----------------------+----------------------------------+
     | change | 8 bytes              | signed 64-bit big-endian integer |
     +--------+----------------------+----------------------------------+
-    
-    
+
+
     Staking_delegator_numerator (tag 27)
     ====================================
-    
+
     +-----------+----------+----------------------------------+
     | Name      | Size     | Contents                         |
     +===========+==========+==================================+
@@ -3922,11 +3922,11 @@ Full description
     +-----------+----------+----------------------------------+
     | change    | 8 bytes  | signed 64-bit big-endian integer |
     +-----------+----------+----------------------------------+
-    
-    
+
+
     Staking_delegate_denominator (tag 28)
     =====================================
-    
+
     +----------+----------+----------------------------------+
     | Name     | Size     | Contents                         |
     +==========+==========+==================================+
@@ -3936,54 +3936,54 @@ Full description
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
-    
-    
+
+
     X_10 (Determined from data, 8-bit tag)
     **************************************
-    
+
     Block_application (tag 0)
     =========================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Protocol_migration (tag 1)
     ==========================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Subsidy (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Simulation (tag 3)
     ==================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Delayed_operation (tag 4)
     =========================
-    
+
     +------------------------+----------+------------------------+
     | Name                   | Size     | Contents               |
     +========================+==========+========================+
@@ -3991,11 +3991,11 @@ Full description
     +------------------------+----------+------------------------+
     | delayed_operation_hash | 32 bytes | bytes                  |
     +------------------------+----------+------------------------+
-    
-    
+
+
     X_8
     ***
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -4003,38 +4003,38 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | Determined from data | $X_10    |
     +-----------------+----------------------+----------+
-    
-    
+
+
     N.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | N.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
-    
+
+
     Z.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | Z.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
-    
+
+
     beta.contract_id.originated (22 bytes, 8-bit tag)
     *************************************************
-    
+
     Originated (tag 1)
     ==================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -4044,11 +4044,11 @@ Full description
     +---------------+----------+------------------------+
     | padding       | 1 byte   | padding                |
     +---------------+----------+------------------------+
-    
-    
+
+
     sapling.transaction.ciphertext
     ******************************
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -4066,11 +4066,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | nonce_out             | 24 bytes | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_24
     ****
-    
+
     +-----------------+----------------------+---------------------------------+
     | Name            | Size                 | Contents                        |
     +=================+======================+=================================+
@@ -4078,11 +4078,11 @@ Full description
     +-----------------+----------------------+---------------------------------+
     | Unnamed field 1 | Determined from data | $sapling.transaction.ciphertext |
     +-----------------+----------------------+---------------------------------+
-    
-    
+
+
     X_23
     ****
-    
+
     +-----------------------------+----------+------------------------------------+
     | Name                        | Size     | Contents                           |
     +=============================+==========+====================================+
@@ -4094,14 +4094,14 @@ Full description
     +-----------------------------+----------+------------------------------------+
     | nullifiers                  | Variable | sequence of bytes                  |
     +-----------------------------+----------+------------------------------------+
-    
-    
+
+
     X_29 (Determined from data, 8-bit tag)
     **************************************
-    
+
     update (tag 0)
     ==============
-    
+
     +---------+----------------------+------------------------+
     | Name    | Size                 | Contents               |
     +=========+======================+========================+
@@ -4109,21 +4109,21 @@ Full description
     +---------+----------------------+------------------------+
     | updates | Determined from data | $X_23                  |
     +---------+----------------------+------------------------+
-    
-    
+
+
     remove (tag 1)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     copy (tag 2)
     ============
-    
+
     +---------+----------------------+------------------------+
     | Name    | Size                 | Contents               |
     +=========+======================+========================+
@@ -4133,11 +4133,11 @@ Full description
     +---------+----------------------+------------------------+
     | updates | Determined from data | $X_23                  |
     +---------+----------------------+------------------------+
-    
-    
+
+
     alloc (tag 3)
     =============
-    
+
     +-----------+----------------------+------------------------------------+
     | Name      | Size                 | Contents                           |
     +===========+======================+====================================+
@@ -4147,11 +4147,11 @@ Full description
     +-----------+----------------------+------------------------------------+
     | memo_size | 2 bytes              | unsigned 16-bit big-endian integer |
     +-----------+----------------------+------------------------------------+
-    
-    
+
+
     beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     *******************************************************************
-    
+
     +-------------+--------------------------------+
     | Case number | Encoded string                 |
     +=============+================================+
@@ -4471,14 +4471,14 @@ Full description
     +-------------+--------------------------------+
     | 157         | Ticket                         |
     +-------------+--------------------------------+
-    
-    
+
+
     micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag)
     ************************************************************************
-    
+
     Int (tag 0)
     ===========
-    
+
     +------+----------------------+------------------------+
     | Name | Size                 | Contents               |
     +======+======================+========================+
@@ -4486,11 +4486,11 @@ Full description
     +------+----------------------+------------------------+
     | int  | Determined from data | $Z.t                   |
     +------+----------------------+------------------------+
-    
-    
+
+
     String (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -4500,11 +4500,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | string                | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Sequence (tag 2)
     ================
-    
+
     +-----------------------+----------+-----------------------------------------------------+
     | Name                  | Size     | Contents                                            |
     +=======================+==========+=====================================================+
@@ -4514,11 +4514,11 @@ Full description
     +-----------------------+----------+-----------------------------------------------------+
     | Unnamed field 0       | Variable | sequence of $micheline.beta.michelson_v1.expression |
     +-----------------------+----------+-----------------------------------------------------+
-    
-    
+
+
     Prim__no_args__no_annots (tag 3)
     ================================
-    
+
     +------+--------+-----------------------------------------------------------------------------------+
     | Name | Size   | Contents                                                                          |
     +======+========+===================================================================================+
@@ -4526,11 +4526,11 @@ Full description
     +------+--------+-----------------------------------------------------------------------------------+
     | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) |
     +------+--------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__no_args__some_annots (tag 4)
     ==================================
-    
+
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | Name                  | Size     | Contents                                                                          |
     +=======================+==========+===================================================================================+
@@ -4542,11 +4542,11 @@ Full description
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | annots                | Variable | bytes                                                                             |
     +-----------------------+----------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__1_arg__no_annots (tag 5)
     ==============================
-    
+
     +------+----------------------+-----------------------------------------------------------------------------------+
     | Name | Size                 | Contents                                                                          |
     +======+======================+===================================================================================+
@@ -4556,11 +4556,11 @@ Full description
     +------+----------------------+-----------------------------------------------------------------------------------+
     | arg  | Determined from data | $micheline.beta.michelson_v1.expression                                           |
     +------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__1_arg__some_annots (tag 6)
     ================================
-    
+
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                          |
     +=======================+======================+===================================================================================+
@@ -4574,11 +4574,11 @@ Full description
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | annots                | Variable             | bytes                                                                             |
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__2_args__no_annots (tag 7)
     ===============================
-    
+
     +------+----------------------+-----------------------------------------------------------------------------------+
     | Name | Size                 | Contents                                                                          |
     +======+======================+===================================================================================+
@@ -4590,11 +4590,11 @@ Full description
     +------+----------------------+-----------------------------------------------------------------------------------+
     | arg2 | Determined from data | $micheline.beta.michelson_v1.expression                                           |
     +------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__2_args__some_annots (tag 8)
     =================================
-    
+
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                          |
     +=======================+======================+===================================================================================+
@@ -4610,11 +4610,11 @@ Full description
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | annots                | Variable             | bytes                                                                             |
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__generic (tag 9)
     =====================
-    
+
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | Name                  | Size     | Contents                                                                          |
     +=======================+==========+===================================================================================+
@@ -4630,11 +4630,11 @@ Full description
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | annots                | Variable | bytes                                                                             |
     +-----------------------+----------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Bytes (tag 10)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -4644,11 +4644,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | bytes                 | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_30
     ****
-    
+
     +-----------------------------+----------------------+-----------------------------------------+
     | Name                        | Size                 | Contents                                |
     +=============================+======================+=========================================+
@@ -4660,14 +4660,14 @@ Full description
     +-----------------------------+----------------------+-----------------------------------------+
     | value                       | Determined from data | $micheline.beta.michelson_v1.expression |
     +-----------------------------+----------------------+-----------------------------------------+
-    
-    
+
+
     X_41 (Determined from data, 8-bit tag)
     **************************************
-    
+
     update (tag 0)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -4677,21 +4677,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | updates               | Variable | sequence of $X_30                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     remove (tag 1)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     copy (tag 2)
     ============
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -4703,11 +4703,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | updates               | Variable             | sequence of $X_30                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     alloc (tag 3)
     =============
-    
+
     +-----------------------+----------------------+-----------------------------------------+
     | Name                  | Size                 | Contents                                |
     +=======================+======================+=========================================+
@@ -4721,14 +4721,14 @@ Full description
     +-----------------------+----------------------+-----------------------------------------+
     | value_type            | Determined from data | $micheline.beta.michelson_v1.expression |
     +-----------------------+----------------------+-----------------------------------------+
-    
-    
+
+
     X_42 (Determined from data, 8-bit tag)
     **************************************
-    
+
     big_map (tag 0)
     ===============
-    
+
     +------+----------------------+------------------------+
     | Name | Size                 | Contents               |
     +======+======================+========================+
@@ -4738,11 +4738,11 @@ Full description
     +------+----------------------+------------------------+
     | diff | Determined from data | $X_41                  |
     +------+----------------------+------------------------+
-    
-    
+
+
     sapling_state (tag 1)
     =====================
-    
+
     +------+----------------------+------------------------+
     | Name | Size                 | Contents               |
     +======+======================+========================+
@@ -4752,11 +4752,11 @@ Full description
     +------+----------------------+------------------------+
     | diff | Determined from data | $X_29                  |
     +------+----------------------+------------------------+
-    
-    
+
+
     beta.lazy_storage_diff
     **********************
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -4764,11 +4764,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $X_42                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_44
     ****
-    
+
     +--------------+----------------------+-----------------------------------------+
     | Name         | Size                 | Contents                                |
     +==============+======================+=========================================+
@@ -4778,14 +4778,14 @@ Full description
     +--------------+----------------------+-----------------------------------------+
     | content      | Determined from data | $micheline.beta.michelson_v1.expression |
     +--------------+----------------------+-----------------------------------------+
-    
-    
+
+
     beta.transaction_destination (22 bytes, 8-bit tag)
     **************************************************
-    
+
     Implicit (tag 0)
     ================
-    
+
     +---------------------------+----------+------------------------+
     | Name                      | Size     | Contents               |
     +===========================+==========+========================+
@@ -4793,11 +4793,11 @@ Full description
     +---------------------------+----------+------------------------+
     | Signature.Public_key_hash | 21 bytes | $public_key_hash       |
     +---------------------------+----------+------------------------+
-    
-    
+
+
     Originated (tag 1)
     ==================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -4807,11 +4807,11 @@ Full description
     +---------------+----------+------------------------+
     | padding       | 1 byte   | padding                |
     +---------------+----------+------------------------+
-    
-    
+
+
     Smart_rollup (tag 3)
     ====================
-    
+
     +----------------------+----------+------------------------+
     | Name                 | Size     | Contents               |
     +======================+==========+========================+
@@ -4821,11 +4821,11 @@ Full description
     +----------------------+----------+------------------------+
     | padding              | 1 byte   | padding                |
     +----------------------+----------+------------------------+
-    
-    
+
+
     Zk_rollup (tag 4)
     =================
-    
+
     +----------------+----------+------------------------+
     | Name           | Size     | Contents               |
     +================+==========+========================+
@@ -4835,11 +4835,11 @@ Full description
     +----------------+----------+------------------------+
     | padding        | 1 byte   | padding                |
     +----------------+----------+------------------------+
-    
-    
+
+
     X_47
     ****
-    
+
     +---------+----------------------+-------------------------------+
     | Name    | Size                 | Contents                      |
     +=========+======================+===============================+
@@ -4847,11 +4847,11 @@ Full description
     +---------+----------------------+-------------------------------+
     | amount  | Determined from data | $Z.t                          |
     +---------+----------------------+-------------------------------+
-    
-    
+
+
     X_43
     ****
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -4861,14 +4861,14 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | updates               | Variable             | sequence of $X_47                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     X_77 (Determined from data, 8-bit tag)
     **************************************
-    
+
     To_contract (tag 0)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | Name                                                             | Size                 | Contents                                 |
     +==================================================================+======================+==========================================+
@@ -4902,11 +4902,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | lazy_storage_diff                                                | Determined from data | $beta.lazy_storage_diff                  |
     +------------------------------------------------------------------+----------------------+------------------------------------------+
-    
-    
+
+
     To_smart_rollup (tag 2)
     =======================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -4918,14 +4918,14 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_updates        | Variable             | sequence of $X_43                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     beta.operation.alpha.successful_manager_operation_result (Determined from data, 8-bit tag)
     ******************************************************************************************
-    
+
     reveal (tag 0)
     ==============
-    
+
     +-------------------+----------------------+------------------------+
     | Name              | Size                 | Contents               |
     +===================+======================+========================+
@@ -4933,11 +4933,11 @@ Full description
     +-------------------+----------------------+------------------------+
     | consumed_milligas | Determined from data | $N.t                   |
     +-------------------+----------------------+------------------------+
-    
-    
+
+
     transaction (tag 1)
     ===================
-    
+
     +-----------------+----------------------+------------------------+
     | Name            | Size                 | Contents               |
     +=================+======================+========================+
@@ -4945,11 +4945,11 @@ Full description
     +-----------------+----------------------+------------------------+
     | Unnamed field 0 | Determined from data | $X_77                  |
     +-----------------+----------------------+------------------------+
-    
-    
+
+
     origination (tag 2)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | Name                                                             | Size                 | Contents                                 |
     +==================================================================+======================+==========================================+
@@ -4973,11 +4973,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | lazy_storage_diff                                                | Determined from data | $beta.lazy_storage_diff                  |
     +------------------------------------------------------------------+----------------------+------------------------------------------+
-    
-    
+
+
     delegation (tag 3)
     ==================
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -4989,11 +4989,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                  | Variable             | sequence of $X_8                   |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     set_deposits_limit (tag 5)
     ==========================
-    
+
     +-------------------+----------------------+------------------------+
     | Name              | Size                 | Contents               |
     +===================+======================+========================+
@@ -5001,11 +5001,11 @@ Full description
     +-------------------+----------------------+------------------------+
     | consumed_milligas | Determined from data | $N.t                   |
     +-------------------+----------------------+------------------------+
-    
-    
+
+
     update_consensus_key (tag 6)
     ============================
-    
+
     +-------------------+----------------------+------------------------+
     | Name              | Size                 | Contents               |
     +===================+======================+========================+
@@ -5013,11 +5013,11 @@ Full description
     +-------------------+----------------------+------------------------+
     | consumed_milligas | Determined from data | $N.t                   |
     +-------------------+----------------------+------------------------+
-    
-    
+
+
     increase_paid_storage (tag 9)
     =============================
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -5029,11 +5029,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | consumed_milligas                                                | Determined from data | $N.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     smart_rollup_originate (tag 200)
     ================================
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -5051,11 +5051,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | size                                                             | Determined from data | $Z.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     X_0
     ***
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                                |
     +==================================================================+======================+=========================================================================+
@@ -5111,11 +5111,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | dal_attestation                                                  | Determined from data | $Z.t                                                                    |
     +------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    
-    
+
+
     X_81
     ****
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5123,11 +5123,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_82
     ****
-    
+
     +-----------------------+----------+-------------------------------------+
     | Name                  | Size     | Contents                            |
     +=======================+==========+=====================================+
@@ -5139,11 +5139,11 @@ Full description
     +-----------------------+----------+-------------------------------------+
     | exit_validity         | 1 byte   | boolean (0 for false, 255 for true) |
     +-----------------------+----------+-------------------------------------+
-    
-    
+
+
     X_80
     ****
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -5151,11 +5151,11 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | Determined from data | $X_82    |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_85
     ****
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5165,11 +5165,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | fee                   | 32 bytes | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_83
     ****
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -5177,11 +5177,11 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | Determined from data | $X_85    |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_86
     ****
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5189,11 +5189,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of bytes                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_79
     ****
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -5211,11 +5211,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | proof                 | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     X_89
     ****
-    
+
     +--------+----------------------+----------+
     | Name   | Size                 | Contents |
     +========+======================+==========+
@@ -5223,11 +5223,11 @@ Full description
     +--------+----------------------+----------+
     | amount | Determined from data | $Z.t     |
     +--------+----------------------+----------+
-    
-    
+
+
     X_88
     ****
-    
+
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                |
     +=======================+======================+=========================================================================+
@@ -5243,24 +5243,24 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | payload               | Variable             | sequence of bytes                                                       |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
-    
-    
+
+
     X_92 (Determined from data, 8-bit tag)
     **************************************
-    
+
     None (tag 0)
     ============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Some (tag 1)
     ============
-    
+
     +----------+----------------------+-----------------------------------------+
     | Name     | Size                 | Contents                                |
     +==========+======================+=========================================+
@@ -5272,11 +5272,11 @@ Full description
     +----------+----------------------+-----------------------------------------+
     | ticketer | 22 bytes             | $beta.contract_id                       |
     +----------+----------------------+-----------------------------------------+
-    
-    
+
+
     X_87
     ****
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -5284,44 +5284,44 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | Determined from data | $X_92    |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_95 (1 byte, 8-bit tag)
     ************************
-    
+
     Public (tag 0)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Private (tag 1)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Fee (tag 2)
     ===========
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_93
     ****
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -5329,11 +5329,11 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | 1 byte               | $X_95    |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_96
     ****
-    
+
     +------------------+----------+------------------------+
     | Name             | Size     | Contents               |
     +==================+==========+========================+
@@ -5343,11 +5343,11 @@ Full description
     +------------------+----------+------------------------+
     | commitment_proof | 96 bytes | bytes                  |
     +------------------+----------+------------------------+
-    
-    
+
+
     X_97
     ****
-    
+
     +-------+----------+------------------+
     | Name  | Size     | Contents         |
     +=======+==========+==================+
@@ -5355,11 +5355,11 @@ Full description
     +-------+----------+------------------+
     | bob   | 21 bytes | $public_key_hash |
     +-------+----------+------------------+
-    
-    
+
+
     X_98
     ****
-    
+
     +-----------------+---------+----------------------------------+
     | Name            | Size    | Contents                         |
     +=================+=========+==================================+
@@ -5369,14 +5369,14 @@ Full description
     +-----------------+---------+----------------------------------+
     | page_index      | 2 bytes | signed 16-bit big-endian integer |
     +-----------------+---------+----------------------------------+
-    
-    
+
+
     X_99 (Determined from data, 8-bit tag)
     **************************************
-    
+
     raw data proof (tag 0)
     ======================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5386,21 +5386,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | raw_data              | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     metadata proof (tag 1)
     ======================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     dal page proof (tag 2)
     ======================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5412,24 +5412,24 @@ Full description
     +-----------------------+----------+------------------------------------+
     | dal_proof             | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     dal parameters proof (tag 3)
     ============================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_100 (Determined from data, 8-bit tag)
     ***************************************
-    
+
     inbox proof (tag 0)
     ===================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -5443,11 +5443,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | serialized_proof      | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     reveal proof (tag 1)
     ====================
-    
+
     +--------------+----------------------+------------------------+
     | Name         | Size                 | Contents               |
     +==============+======================+========================+
@@ -5455,21 +5455,21 @@ Full description
     +--------------+----------------------+------------------------+
     | reveal_proof | Determined from data | $X_99                  |
     +--------------+----------------------+------------------------+
-    
-    
+
+
     first input (tag 2)
     ===================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_101
     *****
-    
+
     +-----------------------------+----------------------+-------------------------------------+
     | Name                        | Size                 | Contents                            |
     +=============================+======================+=====================================+
@@ -5479,14 +5479,14 @@ Full description
     +-----------------------------+----------------------+-------------------------------------+
     | tick                        | Determined from data | $N.t                                |
     +-----------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_102 (Determined from data, 8-bit tag)
     ***************************************
-    
+
     Dissection (tag 0)
     ==================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5496,11 +5496,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $X_101                 |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Proof (tag 1)
     =============
-    
+
     +-----------------------------------+----------------------+-------------------------------------+
     | Name                              | Size                 | Contents                            |
     +===================================+======================+=====================================+
@@ -5514,14 +5514,14 @@ Full description
     +-----------------------------------+----------------------+-------------------------------------+
     | input_proof                       | Determined from data | $X_100                              |
     +-----------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_103 (Determined from data, 8-bit tag)
     ***************************************
-    
+
     Start (tag 0)
     =============
-    
+
     +--------------------------+----------+------------------------+
     | Name                     | Size     | Contents               |
     +==========================+==========+========================+
@@ -5531,11 +5531,11 @@ Full description
     +--------------------------+----------+------------------------+
     | opponent_commitment_hash | 32 bytes | bytes                  |
     +--------------------------+----------+------------------------+
-    
-    
+
+
     Move (tag 1)
     ============
-    
+
     +--------+----------------------+------------------------+
     | Name   | Size                 | Contents               |
     +========+======================+========================+
@@ -5545,11 +5545,11 @@ Full description
     +--------+----------------------+------------------------+
     | step   | Determined from data | $X_102                 |
     +--------+----------------------+------------------------+
-    
-    
+
+
     X_104
     *****
-    
+
     +------------------+----------+----------------------------------+
     | Name             | Size     | Contents                         |
     +==================+==========+==================================+
@@ -5561,11 +5561,11 @@ Full description
     +------------------+----------+----------------------------------+
     | number_of_ticks  | 8 bytes  | signed 64-bit big-endian integer |
     +------------------+----------+----------------------------------+
-    
-    
+
+
     X_106 (Enumeration: unsigned 8-bit integer):
     ********************************************
-    
+
     +-------------+----------------+
     | Case number | Encoded string |
     +=============+================+
@@ -5575,11 +5575,11 @@ Full description
     +-------------+----------------+
     | 2           | riscv          |
     +-------------+----------------+
-    
-    
+
+
     X_107
     *****
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5587,14 +5587,14 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $public_key_hash       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     public_key (Determined from data, 8-bit tag)
     ********************************************
-    
+
     Ed25519 (tag 0)
     ===============
-    
+
     +--------------------+----------+------------------------+
     | Name               | Size     | Contents               |
     +====================+==========+========================+
@@ -5602,11 +5602,11 @@ Full description
     +--------------------+----------+------------------------+
     | Ed25519.Public_key | 32 bytes | bytes                  |
     +--------------------+----------+------------------------+
-    
-    
+
+
     Secp256k1 (tag 1)
     =================
-    
+
     +----------------------+----------+------------------------+
     | Name                 | Size     | Contents               |
     +======================+==========+========================+
@@ -5614,11 +5614,11 @@ Full description
     +----------------------+----------+------------------------+
     | Secp256k1.Public_key | 33 bytes | bytes                  |
     +----------------------+----------+------------------------+
-    
-    
+
+
     P256 (tag 2)
     ============
-    
+
     +-----------------+----------+------------------------+
     | Name            | Size     | Contents               |
     +=================+==========+========================+
@@ -5626,11 +5626,11 @@ Full description
     +-----------------+----------+------------------------+
     | P256.Public_key | 33 bytes | bytes                  |
     +-----------------+----------+------------------------+
-    
-    
+
+
     Bls (tag 3)
     ===========
-    
+
     +----------------------+----------+------------------------+
     | Name                 | Size     | Contents               |
     +======================+==========+========================+
@@ -5638,11 +5638,11 @@ Full description
     +----------------------+----------+------------------------+
     | Bls12_381.Public_key | 48 bytes | bytes                  |
     +----------------------+----------+------------------------+
-    
-    
+
+
     beta.scripted.contracts
     ***********************
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5654,114 +5654,114 @@ Full description
     +-----------------------+----------+------------------------------------+
     | storage               | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     beta.entrypoint (Determined from data, 8-bit tag)
     *************************************************
-    
+
     default (tag 0)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     root (tag 1)
     ============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     do (tag 2)
     ==========
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     set_delegate (tag 3)
     ====================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     remove_delegate (tag 4)
     =======================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     deposit (tag 5)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     stake (tag 6)
     =============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     unstake (tag 7)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     finalize_unstake (tag 8)
     ========================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     set_delegate_parameters (tag 9)
     ===============================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     named (tag 255)
     ===============
-    
+
     +-----------------------+----------+------------------------+
     | Name                  | Size     | Contents               |
     +=======================+==========+========================+
@@ -5771,11 +5771,11 @@ Full description
     +-----------------------+----------+------------------------+
     | Unnamed field 0       | Variable | bytes                  |
     +-----------------------+----------+------------------------+
-    
-    
+
+
     X_108
     *****
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -5785,11 +5785,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | value                 | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     X_109
     *****
-    
+
     +-----------------+-----------+----------+
     | Name            | Size      | Contents |
     +=================+===========+==========+
@@ -5797,14 +5797,14 @@ Full description
     +-----------------+-----------+----------+
     | Unnamed field 1 | 100 bytes | bytes    |
     +-----------------+-----------+----------+
-    
-    
+
+
     beta.inlined.preattestation.contents (43 bytes, 8-bit tag)
     **********************************************************
-    
+
     Preattestation (tag 20)
     =======================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -5818,11 +5818,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     beta.inlined.preattestation
     ***************************
-    
+
     +------------+----------+---------------------------------------+
     | Name       | Size     | Contents                              |
     +============+==========+=======================================+
@@ -5832,14 +5832,14 @@ Full description
     +------------+----------+---------------------------------------+
     | signature  | Variable | bytes                                 |
     +------------+----------+---------------------------------------+
-    
-    
+
+
     beta.inlined.attestation_mempool.contents (Determined from data, 8-bit tag)
     ***************************************************************************
-    
+
     Attestation (tag 21)
     ====================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -5853,11 +5853,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation_with_dal (tag 23)
     =============================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -5873,11 +5873,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | dal_attestation    | Determined from data | $Z.t                               |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     beta.inlined.attestation
     ************************
-    
+
     +------------+----------------------+--------------------------------------------+
     | Name       | Size                 | Contents                                   |
     +============+======================+============================================+
@@ -5887,14 +5887,14 @@ Full description
     +------------+----------------------+--------------------------------------------+
     | signature  | Variable             | bytes                                      |
     +------------+----------------------+--------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.contents (Determined from data, 8-bit tag)
     ***************************************************************
-    
+
     Seed_nonce_revelation (tag 1)
     =============================
-    
+
     +-------+----------+----------------------------------+
     | Name  | Size     | Contents                         |
     +=======+==========+==================================+
@@ -5904,11 +5904,11 @@ Full description
     +-------+----------+----------------------------------+
     | nonce | 32 bytes | bytes                            |
     +-------+----------+----------------------------------+
-    
-    
+
+
     Double_attestation_evidence (tag 2)
     ===================================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5922,11 +5922,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | op2                   | Variable | $beta.inlined.attestation          |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Double_baking_evidence (tag 3)
     ==============================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5940,11 +5940,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | bh2                   | Variable | $raw_block_header                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Activate_account (tag 4)
     ========================
-    
+
     +--------+----------+------------------------+
     | Name   | Size     | Contents               |
     +========+==========+========================+
@@ -5954,11 +5954,11 @@ Full description
     +--------+----------+------------------------+
     | secret | 20 bytes | bytes                  |
     +--------+----------+------------------------+
-    
-    
+
+
     Proposals (tag 5)
     =================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -5972,11 +5972,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | proposals             | Variable | sequence of at most 20 bytes       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Ballot (tag 6)
     ==============
-    
+
     +----------+----------+----------------------------------+
     | Name     | Size     | Contents                         |
     +==========+==========+==================================+
@@ -5990,11 +5990,11 @@ Full description
     +----------+----------+----------------------------------+
     | ballot   | 1 byte   | signed 8-bit integer             |
     +----------+----------+----------------------------------+
-    
-    
+
+
     Double_preattestation_evidence (tag 7)
     ======================================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -6008,11 +6008,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | op2                   | Variable | $beta.inlined.preattestation       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Vdf_revelation (tag 8)
     ======================
-    
+
     +----------+-----------+------------------------+
     | Name     | Size      | Contents               |
     +==========+===========+========================+
@@ -6020,11 +6020,11 @@ Full description
     +----------+-----------+------------------------+
     | solution | 200 bytes | $X_109                 |
     +----------+-----------+------------------------+
-    
-    
+
+
     Drain_delegate (tag 9)
     ======================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -6036,11 +6036,11 @@ Full description
     +---------------+----------+------------------------+
     | destination   | 21 bytes | $public_key_hash       |
     +---------------+----------+------------------------+
-    
-    
+
+
     Failing_noop (tag 17)
     =====================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -6050,11 +6050,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | arbitrary             | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Preattestation (tag 20)
     =======================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -6068,11 +6068,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation (tag 21)
     ====================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -6086,11 +6086,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation_with_dal (tag 23)
     =============================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -6106,11 +6106,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | dal_attestation    | Determined from data | $Z.t                               |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     Reveal (tag 107)
     ================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6128,11 +6128,11 @@ Full description
     +---------------+----------------------+------------------------+
     | public_key    | Determined from data | $public_key            |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transaction (tag 108)
     =====================
-    
+
     +----------------------------------+----------------------+-------------------------------------+
     | Name                             | Size                 | Contents                            |
     +==================================+======================+=====================================+
@@ -6156,11 +6156,11 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | parameters                       | Determined from data | $X_108                              |
     +----------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Origination (tag 109)
     =====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -6184,11 +6184,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | script                         | Determined from data | $beta.scripted.contracts            |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Delegation (tag 110)
     ====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -6208,11 +6208,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Register_global_constant (tag 111)
     ==================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -6232,11 +6232,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | value                 | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Set_deposits_limit (tag 112)
     ============================
-    
+
     +-----------------------------+----------------------+-------------------------------------+
     | Name                        | Size                 | Contents                            |
     +=============================+======================+=====================================+
@@ -6256,11 +6256,11 @@ Full description
     +-----------------------------+----------------------+-------------------------------------+
     | limit                       | Determined from data | $N.t                                |
     +-----------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Increase_paid_storage (tag 113)
     ===============================
-    
+
     +---------------+----------------------+------------------------------+
     | Name          | Size                 | Contents                     |
     +===============+======================+==============================+
@@ -6280,11 +6280,11 @@ Full description
     +---------------+----------------------+------------------------------+
     | destination   | 22 bytes             | $beta.contract_id.originated |
     +---------------+----------------------+------------------------------+
-    
-    
+
+
     Update_consensus_key (tag 114)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6302,11 +6302,11 @@ Full description
     +---------------+----------------------+------------------------+
     | pk            | Determined from data | $public_key            |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transfer_ticket (tag 158)
     =========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -6340,11 +6340,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | entrypoint            | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_originate (tag 200)
     ================================
-    
+
     +---------------------------------+----------------------+------------------------------------------------------------+
     | Name                            | Size                 | Contents                                                   |
     +=================================+======================+============================================================+
@@ -6374,11 +6374,11 @@ Full description
     +---------------------------------+----------------------+------------------------------------------------------------+
     | whitelist                       | Determined from data | $X_107                                                     |
     +---------------------------------+----------------------+------------------------------------------------------------+
-    
-    
+
+
     Smart_rollup_add_messages (tag 201)
     ===================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -6398,11 +6398,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | message               | Variable             | sequence of $X_81                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_cement (tag 202)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6420,11 +6420,11 @@ Full description
     +---------------+----------------------+------------------------+
     | rollup        | 20 bytes             | bytes                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_publish (tag 203)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6444,11 +6444,11 @@ Full description
     +---------------+----------------------+------------------------+
     | commitment    | 76 bytes             | $X_104                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_refute (tag 204)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6470,11 +6470,11 @@ Full description
     +---------------+----------------------+------------------------+
     | refutation    | Determined from data | $X_103                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_timeout (tag 205)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6494,11 +6494,11 @@ Full description
     +---------------+----------------------+------------------------+
     | stakers       | 42 bytes             | $X_97                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_execute_outbox_message (tag 206)
     =============================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -6522,11 +6522,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | output_proof          | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_recover_bond (tag 207)
     ===================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6546,11 +6546,11 @@ Full description
     +---------------+----------------------+------------------------+
     | staker        | 21 bytes             | $public_key_hash       |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Dal_publish_commitment (tag 230)
     ================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6568,11 +6568,11 @@ Full description
     +---------------+----------------------+------------------------+
     | slot_header   | 145 bytes            | $X_96                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Zk_rollup_origination (tag 250)
     ===============================
-    
+
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                |
     +=======================+======================+=========================================================================+
@@ -6602,11 +6602,11 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | nb_ops                | 4 bytes              | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
-    
-    
+
+
     Zk_rollup_publish (tag 251)
     ===========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -6628,11 +6628,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | op                    | Variable             | sequence of $X_87                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Zk_rollup_update (tag 252)
     ==========================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -6652,11 +6652,11 @@ Full description
     +---------------+----------------------+------------------------+
     | update        | Determined from data | $X_79                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     X_122
     *****
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -6664,14 +6664,14 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
     ****************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -6685,11 +6685,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | paid_storage_size_diff                                           | Determined from data | $Z.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -6699,21 +6699,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -6731,14 +6731,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | paid_storage_size_diff                                           | Determined from data | $Z.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     beta.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
     **************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +-------------------+----------------------+------------------------+
     | Name              | Size                 | Contents               |
     +===================+======================+========================+
@@ -6746,11 +6746,11 @@ Full description
     +-------------------+----------------------+------------------------+
     | consumed_milligas | Determined from data | $N.t                   |
     +-------------------+----------------------+------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -6760,21 +6760,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------+----------------------+-------------------------------------+
     | Name                         | Size                 | Contents                            |
     +==============================+======================+=====================================+
@@ -6786,14 +6786,14 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
     | consumed_milligas            | Determined from data | $N.t                                |
     +------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     beta.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
     *******************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -6805,11 +6805,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                  | Variable             | sequence of $X_8                   |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -6819,21 +6819,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -6849,14 +6849,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                  | Variable             | sequence of $X_8                    |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     beta.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
     ********************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | Name                                                             | Size                 | Contents                                 |
     +==================================================================+======================+==========================================+
@@ -6880,11 +6880,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | lazy_storage_diff                                                | Determined from data | $beta.lazy_storage_diff                  |
     +------------------------------------------------------------------+----------------------+------------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -6894,21 +6894,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | Name                                                             | Size                 | Contents                                 |
     +==================================================================+======================+==========================================+
@@ -6936,14 +6936,14 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | lazy_storage_diff                                                | Determined from data | $beta.lazy_storage_diff                  |
     +------------------------------------------------------------------+----------------------+------------------------------------------+
-    
-    
+
+
     X_222 (Determined from data, 8-bit tag)
     ***************************************
-    
+
     To_contract (tag 0)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | Name                                                             | Size                 | Contents                                 |
     +==================================================================+======================+==========================================+
@@ -6977,11 +6977,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------------+
     | lazy_storage_diff                                                | Determined from data | $beta.lazy_storage_diff                  |
     +------------------------------------------------------------------+----------------------+------------------------------------------+
-    
-    
+
+
     To_smart_rollup (tag 2)
     =======================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -6993,14 +6993,14 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_receipt        | Variable             | sequence of $X_43                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     beta.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
     ********************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +-----------------+----------------------+------------------------+
     | Name            | Size                 | Contents               |
     +=================+======================+========================+
@@ -7008,11 +7008,11 @@ Full description
     +-----------------+----------------------+------------------------+
     | Unnamed field 0 | Determined from data | $X_222                 |
     +-----------------+----------------------+------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7022,21 +7022,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------+----------------------+-------------------------------------+
     | Name                         | Size                 | Contents                            |
     +==============================+======================+=====================================+
@@ -7048,14 +7048,14 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
     | Unnamed field 0              | Determined from data | $X_222                              |
     +------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     beta.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
     ************************************************************************************
-    
+
     transaction (tag 1)
     ===================
-    
+
     +----------------------------------+----------------------+-------------------------------------------------------------+
     | Name                             | Size                 | Contents                                                    |
     +==================================+======================+=============================================================+
@@ -7075,11 +7075,11 @@ Full description
     +----------------------------------+----------------------+-------------------------------------------------------------+
     | result                           | Determined from data | $beta.operation.alpha.internal_operation_result.transaction |
     +----------------------------------+----------------------+-------------------------------------------------------------+
-    
-    
+
+
     origination (tag 2)
     ===================
-    
+
     +--------------------------------+----------------------+-------------------------------------------------------------+
     | Name                           | Size                 | Contents                                                    |
     +================================+======================+=============================================================+
@@ -7099,11 +7099,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------------------------------+
     | result                         | Determined from data | $beta.operation.alpha.internal_operation_result.origination |
     +--------------------------------+----------------------+-------------------------------------------------------------+
-    
-    
+
+
     delegation (tag 3)
     ==================
-    
+
     +--------------------------------+----------------------+------------------------------------------------------------+
     | Name                           | Size                 | Contents                                                   |
     +================================+======================+============================================================+
@@ -7119,11 +7119,11 @@ Full description
     +--------------------------------+----------------------+------------------------------------------------------------+
     | result                         | Determined from data | $beta.operation.alpha.internal_operation_result.delegation |
     +--------------------------------+----------------------+------------------------------------------------------------+
-    
-    
+
+
     event (tag 4)
     =============
-    
+
     +-------------------------------+----------------------+-------------------------------------------------------+
     | Name                          | Size                 | Contents                                              |
     +===============================+======================+=======================================================+
@@ -7145,11 +7145,11 @@ Full description
     +-------------------------------+----------------------+-------------------------------------------------------+
     | result                        | Determined from data | $beta.operation.alpha.internal_operation_result.event |
     +-------------------------------+----------------------+-------------------------------------------------------+
-    
-    
+
+
     X_118
     *****
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7163,14 +7163,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
     *****************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -7184,11 +7184,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | size                                                             | Determined from data | $Z.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7198,21 +7198,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -7230,11 +7230,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | size                                                             | Determined from data | $Z.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_264
     *****
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7248,14 +7248,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
     *********************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -7271,11 +7271,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | size                                                             | Determined from data | $Z.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7285,21 +7285,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -7319,11 +7319,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | size                                                             | Determined from data | $Z.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_407
     *****
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7337,14 +7337,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     X_553 (54 bytes, 8-bit tag)
     ***************************
-    
+
     v0 (tag 0)
     ==========
-    
+
     +------------+----------+----------------------------------+
     | Name       | Size     | Contents                         |
     +============+==========+==================================+
@@ -7356,14 +7356,14 @@ Full description
     +------------+----------+----------------------------------+
     | commitment | 48 bytes | bytes                            |
     +------------+----------+----------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
     **********************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +-------------------+----------------------+------------------------+
     | Name              | Size                 | Contents               |
     +===================+======================+========================+
@@ -7373,11 +7373,11 @@ Full description
     +-------------------+----------------------+------------------------+
     | consumed_milligas | Determined from data | $N.t                   |
     +-------------------+----------------------+------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7387,21 +7387,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------+----------------------+-------------------------------------+
     | Name                         | Size                 | Contents                            |
     +==============================+======================+=====================================+
@@ -7415,11 +7415,11 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
     | consumed_milligas            | Determined from data | $N.t                                |
     +------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_548
     *****
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7433,14 +7433,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
     *************************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -7452,11 +7452,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | consumed_milligas                                                | Determined from data | $N.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7466,21 +7466,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -7496,11 +7496,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | consumed_milligas                                                | Determined from data | $N.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_684
     *****
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                         |
     +==================================================================+======================+==================================================================+
@@ -7514,24 +7514,24 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result  |
     +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+
-    
-    
+
+
     X_838 (Determined from data, 8-bit tag)
     ***************************************
-    
+
     Public (tag 0)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Private (tag 1)
     ===============
-    
+
     +-----------+----------------------+------------------------+
     | Name      | Size                 | Contents               |
     +===========+======================+========================+
@@ -7539,14 +7539,14 @@ Full description
     +-----------+----------------------+------------------------+
     | whitelist | Determined from data | $X_107                 |
     +-----------+----------------------+------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
     ***********************************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -7568,11 +7568,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | paid_storage_size_diff                                           | Determined from data | $Z.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7582,21 +7582,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -7622,11 +7622,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | paid_storage_size_diff                                           | Determined from data | $Z.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_824
     *****
-    
+
     +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                                   |
     +==================================================================+======================+============================================================================+
@@ -7640,37 +7640,37 @@ Full description
     +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result            |
     +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+
-    
-    
+
+
     X_984 (1 byte, 8-bit tag)
     *************************
-    
+
     Conflict_resolved (tag 0)
     =========================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Timeout (tag 1)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_985 (Determined from data, 8-bit tag)
     ***************************************
-    
+
     Loser (tag 0)
     =============
-    
+
     +--------+----------+------------------------+
     | Name   | Size     | Contents               |
     +========+==========+========================+
@@ -7680,34 +7680,34 @@ Full description
     +--------+----------+------------------------+
     | player | 21 bytes | $public_key_hash       |
     +--------+----------+------------------------+
-    
-    
+
+
     Draw (tag 1)
     ============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_986 (Determined from data, 8-bit tag)
     ***************************************
-    
+
     Ongoing (tag 0)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Ended (tag 1)
     =============
-    
+
     +--------+----------------------+------------------------+
     | Name   | Size                 | Contents               |
     +========+======================+========================+
@@ -7715,14 +7715,14 @@ Full description
     +--------+----------------------+------------------------+
     | result | Determined from data | $X_985                 |
     +--------+----------------------+------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
     ********************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -7736,11 +7736,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                  | Variable             | sequence of $X_8                   |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7750,21 +7750,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -7782,11 +7782,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                  | Variable             | sequence of $X_8                    |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_979
     *****
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7800,14 +7800,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
     ********************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -7823,11 +7823,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                  | Variable             | sequence of $X_8                   |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7837,21 +7837,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -7871,11 +7871,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                  | Variable             | sequence of $X_8                    |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_1278
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7889,14 +7889,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
     *******************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +-------------------+----------------------+----------------------------------+
     | Name              | Size                 | Contents                         |
     +===================+======================+==================================+
@@ -7908,11 +7908,11 @@ Full description
     +-------------------+----------------------+----------------------------------+
     | commitment_hash   | 32 bytes             | bytes                            |
     +-------------------+----------------------+----------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -7922,21 +7922,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------+----------------------+-------------------------------------+
     | Name                         | Size                 | Contents                            |
     +==============================+======================+=====================================+
@@ -7952,11 +7952,11 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
     | commitment_hash              | 32 bytes             | bytes                               |
     +------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_1418
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7970,11 +7970,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     X_1553
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -7988,14 +7988,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
     **********************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -8013,11 +8013,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | size                                                             | Determined from data | $Z.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -8027,21 +8027,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -8063,11 +8063,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | size                                                             | Determined from data | $Z.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_1689
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -8081,14 +8081,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
     ***************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -8106,11 +8106,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | paid_storage_size_diff                                           | Determined from data | $Z.t                               |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -8120,21 +8120,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -8156,11 +8156,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | paid_storage_size_diff                                           | Determined from data | $Z.t                                |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_1829
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -8174,14 +8174,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
     ************************************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | Name                                                             | Size                 | Contents                           |
     +==================================================================+======================+====================================+
@@ -8197,11 +8197,11 @@ Full description
     +------------------------------------------------------------------+----------------------+------------------------------------+
     | global_address                                                   | 32 bytes             | bytes                              |
     +------------------------------------------------------------------+----------------------+------------------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -8211,21 +8211,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | Name                                                             | Size                 | Contents                            |
     +==================================================================+======================+=====================================+
@@ -8245,11 +8245,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-------------------------------------+
     | global_address                                                   | 32 bytes             | bytes                               |
     +------------------------------------------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_2387
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -8263,11 +8263,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     X_2527
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -8281,11 +8281,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     X_2667
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -8299,14 +8299,14 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
     ***********************************************************************************
-    
+
     Applied (tag 0)
     ===============
-    
+
     +-----------------+----------------------+------------------------+
     | Name            | Size                 | Contents               |
     +=================+======================+========================+
@@ -8314,11 +8314,11 @@ Full description
     +-----------------+----------------------+------------------------+
     | Unnamed field 0 | Determined from data | $X_77                  |
     +-----------------+----------------------+------------------------+
-    
-    
+
+
     Failed (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -8328,21 +8328,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | errors                | Variable | sequence of $X_81                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Skipped (tag 2)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Backtracked (tag 3)
     ===================
-    
+
     +------------------------------+----------------------+-------------------------------------+
     | Name                         | Size                 | Contents                            |
     +==============================+======================+=====================================+
@@ -8354,11 +8354,11 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
     | Unnamed field 0              | Determined from data | $X_77                               |
     +------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_2848
     ******
-    
+
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | Name                                                             | Size                 | Contents                                                        |
     +==================================================================+======================+=================================================================+
@@ -8372,11 +8372,11 @@ Full description
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
     | internal_operation_results                                       | Variable             | sequence of $beta.apply_internal_results.alpha.operation_result |
     +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+
-    
-    
+
+
     X_3186
     ******
-    
+
     +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                             | Size     | Contents                                                                |
     +==================================================================+==========+=========================================================================+
@@ -8390,11 +8390,11 @@ Full description
     +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | consensus_key                                                    | 21 bytes | $public_key_hash                                                        |
     +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
-    
-    
+
+
     X_3198
     ******
-    
+
     +------------------------------------------------------------------+----------+-------------------------------------+
     | Name                                                             | Size     | Contents                            |
     +==================================================================+==========+=====================================+
@@ -8404,11 +8404,11 @@ Full description
     +------------------------------------------------------------------+----------+-------------------------------------+
     | allocated_destination_contract                                   | 1 byte   | boolean (0 for false, 255 for true) |
     +------------------------------------------------------------------+----------+-------------------------------------+
-    
-    
+
+
     beta.operation_metadata.alpha.balance_updates
     *********************************************
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -8416,11 +8416,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $X_8                   |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_3206
     ******
-    
+
     +------------------------------------------------------------------+----------+-------------------------------------+
     | Name                                                             | Size     | Contents                            |
     +==================================================================+==========+=====================================+
@@ -8432,14 +8432,14 @@ Full description
     +------------------------------------------------------------------+----------+-------------------------------------+
     | balance_updates                                                  | Variable | sequence of $X_8                    |
     +------------------------------------------------------------------+----------+-------------------------------------+
-    
-    
+
+
     beta.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
     ************************************************************************************
-    
+
     Seed_nonce_revelation (tag 1)
     =============================
-    
+
     +----------+----------------------+------------------------------------------------+
     | Name     | Size                 | Contents                                       |
     +==========+======================+================================================+
@@ -8451,11 +8451,11 @@ Full description
     +----------+----------------------+------------------------------------------------+
     | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates |
     +----------+----------------------+------------------------------------------------+
-    
-    
+
+
     Double_attestation_evidence (tag 2)
     ===================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -8471,11 +8471,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_3206                            |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Double_baking_evidence (tag 3)
     ==============================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -8491,11 +8491,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_3206                            |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Activate_account (tag 4)
     ========================
-    
+
     +----------+----------------------+------------------------------------------------+
     | Name     | Size                 | Contents                                       |
     +==========+======================+================================================+
@@ -8507,11 +8507,11 @@ Full description
     +----------+----------------------+------------------------------------------------+
     | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates |
     +----------+----------------------+------------------------------------------------+
-    
-    
+
+
     Proposals (tag 5)
     =================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -8525,11 +8525,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | proposals             | Variable | sequence of at most 20 bytes       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Ballot (tag 6)
     ==============
-    
+
     +----------+----------+----------------------------------+
     | Name     | Size     | Contents                         |
     +==========+==========+==================================+
@@ -8543,11 +8543,11 @@ Full description
     +----------+----------+----------------------------------+
     | ballot   | 1 byte   | signed 8-bit integer             |
     +----------+----------+----------------------------------+
-    
-    
+
+
     Double_preattestation_evidence (tag 7)
     ======================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -8563,11 +8563,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_3206                            |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Vdf_revelation (tag 8)
     ======================
-    
+
     +----------+----------------------+------------------------------------------------+
     | Name     | Size                 | Contents                                       |
     +==========+======================+================================================+
@@ -8577,11 +8577,11 @@ Full description
     +----------+----------------------+------------------------------------------------+
     | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates |
     +----------+----------------------+------------------------------------------------+
-    
-    
+
+
     Drain_delegate (tag 9)
     ======================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -8595,11 +8595,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_3198                |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Preattestation (tag 20)
     =======================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -8615,11 +8615,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | metadata           | Determined from data | $X_3186                            |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     Attestation (tag 21)
     ====================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -8635,11 +8635,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | metadata           | Determined from data | $X_3186                            |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     Attestation_with_dal (tag 23)
     =============================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -8657,11 +8657,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | metadata           | Determined from data | $X_3186                            |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     Reveal (tag 107)
     ================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -8681,11 +8681,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_1553                |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transaction (tag 108)
     =====================
-    
+
     +----------------------------------+----------------------+-------------------------------------+
     | Name                             | Size                 | Contents                            |
     +==================================+======================+=====================================+
@@ -8711,11 +8711,11 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | metadata                         | Determined from data | $X_2848                             |
     +----------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Origination (tag 109)
     =====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -8741,11 +8741,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | metadata                       | Determined from data | $X_2667                             |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Delegation (tag 110)
     ====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -8767,11 +8767,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | metadata                       | Determined from data | $X_2527                             |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Register_global_constant (tag 111)
     ==================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -8793,11 +8793,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_2387                            |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Set_deposits_limit (tag 112)
     ============================
-    
+
     +-----------------------------+----------------------+-------------------------------------+
     | Name                        | Size                 | Contents                            |
     +=============================+======================+=====================================+
@@ -8819,11 +8819,11 @@ Full description
     +-----------------------------+----------------------+-------------------------------------+
     | metadata                    | Determined from data | $X_1553                             |
     +-----------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Increase_paid_storage (tag 113)
     ===============================
-    
+
     +---------------+----------------------+------------------------------+
     | Name          | Size                 | Contents                     |
     +===============+======================+==============================+
@@ -8845,11 +8845,11 @@ Full description
     +---------------+----------------------+------------------------------+
     | metadata      | Determined from data | $X_684                       |
     +---------------+----------------------+------------------------------+
-    
-    
+
+
     Update_consensus_key (tag 114)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -8869,11 +8869,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_1553                |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transfer_ticket (tag 158)
     =========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -8909,11 +8909,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_1829                            |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_originate (tag 200)
     ================================
-    
+
     +---------------------------------+----------------------+------------------------------------------------------------+
     | Name                            | Size                 | Contents                                                   |
     +=================================+======================+============================================================+
@@ -8945,11 +8945,11 @@ Full description
     +---------------------------------+----------------------+------------------------------------------------------------+
     | metadata                        | Determined from data | $X_1689                                                    |
     +---------------------------------+----------------------+------------------------------------------------------------+
-    
-    
+
+
     Smart_rollup_add_messages (tag 201)
     ===================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -8971,11 +8971,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_1553                            |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_cement (tag 202)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -8995,11 +8995,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_1418                |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_publish (tag 203)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9021,11 +9021,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_1278                |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_refute (tag 204)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9049,11 +9049,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_979                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_timeout (tag 205)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9075,11 +9075,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_979                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_execute_outbox_message (tag 206)
     =============================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -9105,11 +9105,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_824                             |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_recover_bond (tag 207)
     ===================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9131,11 +9131,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_684                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Dal_publish_commitment (tag 230)
     ================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9155,11 +9155,11 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_548                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Zk_rollup_origination (tag 250)
     ===============================
-    
+
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                |
     +=======================+======================+=========================================================================+
@@ -9191,11 +9191,11 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | metadata              | Determined from data | $X_407                                                                  |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
-    
-    
+
+
     Zk_rollup_publish (tag 251)
     ===========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -9219,11 +9219,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | metadata              | Determined from data | $X_264                             |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Zk_rollup_update (tag 252)
     ==========================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9245,14 +9245,14 @@ Full description
     +---------------+----------------------+------------------------+
     | metadata      | Determined from data | $X_118                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     X_3224 (Variable, 8-bit tag)
     ****************************
-    
+
     Operation_with_metadata (tag 0)
     ===============================
-    
+
     +-----------------------+----------+-----------------------------------------------------------------+
     | Name                  | Size     | Contents                                                        |
     +=======================+==========+=================================================================+
@@ -9264,11 +9264,11 @@ Full description
     +-----------------------+----------+-----------------------------------------------------------------+
     | signature             | Variable | bytes                                                           |
     +-----------------------+----------+-----------------------------------------------------------------+
-    
-    
+
+
     Operation_without_metadata (tag 1)
     ==================================
-    
+
     +-----------------------+----------+--------------------------------------------+
     | Name                  | Size     | Contents                                   |
     +=======================+==========+============================================+
@@ -9280,14 +9280,14 @@ Full description
     +-----------------------+----------+--------------------------------------------+
     | signature             | Variable | bytes                                      |
     +-----------------------+----------+--------------------------------------------+
-    
-    
+
+
     bls_signature_prefix (33 bytes, 8-bit tag)
     ******************************************
-    
+
     Bls_prefix (tag 3)
     ==================
-    
+
     +-----------------+----------+------------------------+
     | Name            | Size     | Contents               |
     +=================+==========+========================+
@@ -9295,14 +9295,14 @@ Full description
     +-----------------+----------+------------------------+
     | Unnamed field 0 | 32 bytes | bytes                  |
     +-----------------+----------+------------------------+
-    
-    
+
+
     beta.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     ***********************************************************************************
-    
+
     Seed_nonce_revelation (tag 1)
     =============================
-    
+
     +-------+----------+----------------------------------+
     | Name  | Size     | Contents                         |
     +=======+==========+==================================+
@@ -9312,11 +9312,11 @@ Full description
     +-------+----------+----------------------------------+
     | nonce | 32 bytes | bytes                            |
     +-------+----------+----------------------------------+
-    
-    
+
+
     Double_attestation_evidence (tag 2)
     ===================================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -9330,11 +9330,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | op2                   | Variable | $beta.inlined.attestation          |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Double_baking_evidence (tag 3)
     ==============================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -9348,11 +9348,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | bh2                   | Variable | $raw_block_header                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Activate_account (tag 4)
     ========================
-    
+
     +--------+----------+------------------------+
     | Name   | Size     | Contents               |
     +========+==========+========================+
@@ -9362,11 +9362,11 @@ Full description
     +--------+----------+------------------------+
     | secret | 20 bytes | bytes                  |
     +--------+----------+------------------------+
-    
-    
+
+
     Proposals (tag 5)
     =================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -9380,11 +9380,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | proposals             | Variable | sequence of at most 20 bytes       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Ballot (tag 6)
     ==============
-    
+
     +----------+----------+----------------------------------+
     | Name     | Size     | Contents                         |
     +==========+==========+==================================+
@@ -9398,11 +9398,11 @@ Full description
     +----------+----------+----------------------------------+
     | ballot   | 1 byte   | signed 8-bit integer             |
     +----------+----------+----------------------------------+
-    
-    
+
+
     Double_preattestation_evidence (tag 7)
     ======================================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -9416,11 +9416,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | op2                   | Variable | $beta.inlined.preattestation       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Vdf_revelation (tag 8)
     ======================
-    
+
     +----------+-----------+------------------------+
     | Name     | Size      | Contents               |
     +==========+===========+========================+
@@ -9428,11 +9428,11 @@ Full description
     +----------+-----------+------------------------+
     | solution | 200 bytes | $X_109                 |
     +----------+-----------+------------------------+
-    
-    
+
+
     Drain_delegate (tag 9)
     ======================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -9444,11 +9444,11 @@ Full description
     +---------------+----------+------------------------+
     | destination   | 21 bytes | $public_key_hash       |
     +---------------+----------+------------------------+
-    
-    
+
+
     Failing_noop (tag 17)
     =====================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -9458,11 +9458,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | arbitrary             | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Preattestation (tag 20)
     =======================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -9476,11 +9476,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation (tag 21)
     ====================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -9494,11 +9494,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation_with_dal (tag 23)
     =============================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -9514,11 +9514,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | dal_attestation    | Determined from data | $Z.t                               |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     Reveal (tag 107)
     ================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9536,11 +9536,11 @@ Full description
     +---------------+----------------------+------------------------+
     | public_key    | Determined from data | $public_key            |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transaction (tag 108)
     =====================
-    
+
     +----------------------------------+----------------------+-------------------------------------+
     | Name                             | Size                 | Contents                            |
     +==================================+======================+=====================================+
@@ -9564,11 +9564,11 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | parameters                       | Determined from data | $X_108                              |
     +----------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Origination (tag 109)
     =====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -9592,11 +9592,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | script                         | Determined from data | $beta.scripted.contracts            |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Delegation (tag 110)
     ====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -9616,11 +9616,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Register_global_constant (tag 111)
     ==================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -9640,11 +9640,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | value                 | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Set_deposits_limit (tag 112)
     ============================
-    
+
     +-----------------------------+----------------------+-------------------------------------+
     | Name                        | Size                 | Contents                            |
     +=============================+======================+=====================================+
@@ -9664,11 +9664,11 @@ Full description
     +-----------------------------+----------------------+-------------------------------------+
     | limit                       | Determined from data | $N.t                                |
     +-----------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Increase_paid_storage (tag 113)
     ===============================
-    
+
     +---------------+----------------------+------------------------------+
     | Name          | Size                 | Contents                     |
     +===============+======================+==============================+
@@ -9688,11 +9688,11 @@ Full description
     +---------------+----------------------+------------------------------+
     | destination   | 22 bytes             | $beta.contract_id.originated |
     +---------------+----------------------+------------------------------+
-    
-    
+
+
     Update_consensus_key (tag 114)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9710,11 +9710,11 @@ Full description
     +---------------+----------------------+------------------------+
     | pk            | Determined from data | $public_key            |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transfer_ticket (tag 158)
     =========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -9748,11 +9748,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | entrypoint            | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_originate (tag 200)
     ================================
-    
+
     +---------------------------------+----------------------+------------------------------------------------------------+
     | Name                            | Size                 | Contents                                                   |
     +=================================+======================+============================================================+
@@ -9782,11 +9782,11 @@ Full description
     +---------------------------------+----------------------+------------------------------------------------------------+
     | whitelist                       | Determined from data | $X_107                                                     |
     +---------------------------------+----------------------+------------------------------------------------------------+
-    
-    
+
+
     Smart_rollup_add_messages (tag 201)
     ===================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -9806,11 +9806,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | message               | Variable             | sequence of $X_81                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_cement (tag 202)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9828,11 +9828,11 @@ Full description
     +---------------+----------------------+------------------------+
     | rollup        | 20 bytes             | bytes                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_publish (tag 203)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9852,11 +9852,11 @@ Full description
     +---------------+----------------------+------------------------+
     | commitment    | 76 bytes             | $X_104                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_refute (tag 204)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9878,11 +9878,11 @@ Full description
     +---------------+----------------------+------------------------+
     | refutation    | Determined from data | $X_103                 |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_timeout (tag 205)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9902,11 +9902,11 @@ Full description
     +---------------+----------------------+------------------------+
     | stakers       | 42 bytes             | $X_97                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_execute_outbox_message (tag 206)
     =============================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -9930,11 +9930,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | output_proof          | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_recover_bond (tag 207)
     ===================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9954,11 +9954,11 @@ Full description
     +---------------+----------------------+------------------------+
     | staker        | 21 bytes             | $public_key_hash       |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Dal_publish_commitment (tag 230)
     ================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -9976,11 +9976,11 @@ Full description
     +---------------+----------------------+------------------------+
     | slot_header   | 145 bytes            | $X_96                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Zk_rollup_origination (tag 250)
     ===============================
-    
+
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                |
     +=======================+======================+=========================================================================+
@@ -10010,11 +10010,11 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | nb_ops                | 4 bytes              | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
-    
-    
+
+
     Zk_rollup_publish (tag 251)
     ===========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -10036,11 +10036,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | op                    | Variable             | sequence of $X_87                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Zk_rollup_update (tag 252)
     ==========================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -10060,11 +10060,11 @@ Full description
     +---------------+----------------------+------------------------+
     | update        | Determined from data | $X_79                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Signature_prefix (tag 255)
     ==========================
-    
+
     +------------------+----------+------------------------+
     | Name             | Size     | Contents               |
     +==================+==========+========================+
@@ -10072,14 +10072,14 @@ Full description
     +------------------+----------+------------------------+
     | signature_prefix | 33 bytes | $bls_signature_prefix  |
     +------------------+----------+------------------------+
-    
-    
+
+
     X_3287 (Variable, 8-bit tag)
     ****************************
-    
+
     Operation with too large metadata (tag 0)
     =========================================
-    
+
     +-------------------------------+----------+----------------------------------------------------------------+
     | Name                          | Size     | Contents                                                       |
     +===============================+==========+================================================================+
@@ -10089,11 +10089,11 @@ Full description
     +-------------------------------+----------+----------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                          |
     +-------------------------------+----------+----------------------------------------------------------------+
-    
-    
+
+
     Operation without metadata (tag 1)
     ==================================
-    
+
     +-------------------------------+----------+----------------------------------------------------------------+
     | Name                          | Size     | Contents                                                       |
     +===============================+==========+================================================================+
@@ -10103,11 +10103,11 @@ Full description
     +-------------------------------+----------+----------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                          |
     +-------------------------------+----------+----------------------------------------------------------------+
-    
-    
+
+
     Operation with metadata (tag 2)
     ===============================
-    
+
     +-----------------+----------+------------------------+
     | Name            | Size     | Contents               |
     +=================+==========+========================+
@@ -10115,11 +10115,11 @@ Full description
     +-----------------+----------+------------------------+
     | Unnamed field 0 | Variable | $X_3224                |
     +-----------------+----------+------------------------+
-    
-    
+
+
     operation
     *********
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -10135,11 +10135,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | $X_3287                            |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_78
     ****
-    
+
     +--------------------------+----------+------------------------------------+
     | Name                     | Size     | Contents                           |
     +==========================+==========+====================================+
@@ -10149,17 +10149,17 @@ Full description
     +--------------------------+----------+------------------------------------+
     | Unnamed field 0          | Variable | sequence of $operation             |
     +--------------------------+----------+------------------------------------+
-    
+
     
- + .. _GET_..--block_id--context--adaptive_issuance_launch_cycle : **GET ..//context/adaptive_issuance_launch_cycle** .. raw:: html - +
@@ -10178,24 +10178,24 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $X_0 | +-----------------+----------------------+----------+ - - + + X_0 (Determined from data, 8-bit tag) ************************************* - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -10203,10 +10203,10 @@ Full description +-----------------+---------+----------------------------------+ | Unnamed field 0 | 4 bytes | signed 32-bit big-endian integer | +-----------------+---------+----------------------------------+ - +
- + .. _GET_..--block_id--context--cache--contracts--all : @@ -10214,7 +10214,7 @@ Full description **GET ..//context/cache/contracts/all** .. raw:: html - +
@@ -10243,11 +10243,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------+----------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=================+==========+=========================================================================+ @@ -10255,10 +10255,10 @@ Full description +-----------------+----------+-------------------------------------------------------------------------+ | Unnamed field 1 | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------+----------+-------------------------------------------------------------------------+ - +
- + .. _POST_..--block_id--context--cache--contracts--rank : @@ -10266,7 +10266,7 @@ Full description **POST ..//context/cache/contracts/rank** .. raw:: html - +
@@ -10295,14 +10295,14 @@ Full description +=================+==========+==========+ | Unnamed field 0 | 22 bytes | $X_0 | +-----------------+----------+----------+ - - + + X_0 (22 bytes, 8-bit tag) ************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -10312,7 +10312,7 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - +
@@ -10326,24 +10326,24 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $X_0 | +-----------------+----------------------+----------+ - - + + X_0 (Determined from data, 8-bit tag) ************************************* - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +-----------------+---------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=================+=========+=========================================================================+ @@ -10351,10 +10351,10 @@ Full description +-----------------+---------+-------------------------------------------------------------------------+ | Unnamed field 0 | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------+---------+-------------------------------------------------------------------------+ - +
- + .. _GET_..--block_id--context--cache--contracts--size : @@ -10362,7 +10362,7 @@ Full description **GET ..//context/cache/contracts/size** .. raw:: html - +
@@ -10381,11 +10381,11 @@ Full description +=================+=========+=========================================================================+ | Unnamed field 0 | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------+---------+-------------------------------------------------------------------------+ - - + +
- + .. _GET_..--block_id--context--cache--contracts--size_limit : @@ -10393,7 +10393,7 @@ Full description **GET ..//context/cache/contracts/size_limit** .. raw:: html - +
@@ -10412,11 +10412,11 @@ Full description +=================+=========+=========================================================================+ | Unnamed field 0 | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------+---------+-------------------------------------------------------------------------+ - - + +
- + .. _GET_..--block_id--context--constants : @@ -10424,7 +10424,7 @@ Full description **GET ..//context/constants** .. raw:: html - +
@@ -10758,35 +10758,35 @@ Full description +--------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+ | direct_ticket_spending_enable | 1 byte | boolean (0 for false, 255 for true) | +--------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_0 *** - + +------------------------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +====================================+======================+=========================================================================+ @@ -10802,11 +10802,11 @@ Full description +------------------------------------+----------------------+-------------------------------------------------------------------------+ | vdf_revelation_tip_weight | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +------------------------------------+----------------------+-------------------------------------------------------------------------+ - - + + X_1 *** - + +-------------+---------+------------------------------------+ | Name | Size | Contents | +=============+=========+====================================+ @@ -10814,14 +10814,14 @@ Full description +-------------+---------+------------------------------------+ | denominator | 2 bytes | unsigned 16-bit big-endian integer | +-------------+---------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -10829,11 +10829,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -10841,11 +10841,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -10853,11 +10853,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -10865,11 +10865,11 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + X_2 *** - + +-----------------------+---------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+=========+=========================================================================+ @@ -10891,11 +10891,11 @@ Full description +-----------------------+---------+-------------------------------------------------------------------------+ | number_of_shards | 2 bytes | unsigned 16-bit big-endian integer | +-----------------------+---------+-------------------------------------------------------------------------+ - - + + X_3 *** - + +---------------------------------+---------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=================================+=========+=========================================================================+ @@ -10909,11 +10909,11 @@ Full description +---------------------------------+---------+-------------------------------------------------------------------------+ | dal_attested_slots_validity_lag | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +---------------------------------+---------+-------------------------------------------------------------------------+ - - + + X_5 *** - + +-------------+----------------------+----------+ | Name | Size | Contents | +=============+======================+==========+ @@ -10921,11 +10921,11 @@ Full description +-------------+----------------------+----------+ | denominator | Determined from data | $Z.t | +-------------+----------------------+----------+ - - + + X_4 *** - + +----------------------------+----------------------+----------------------------------+ | Name | Size | Contents | +============================+======================+==================================+ @@ -10949,17 +10949,17 @@ Full description +----------------------------+----------------------+----------------------------------+ | radius_dz | Determined from data | $X_5 | +----------------------------+----------------------+----------------------------------+ - +
- + .. _GET_..--block_id--context--constants--errors : **GET ..//context/constants/errors** .. raw:: html - +
@@ -10980,11 +10980,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + +
- + .. _GET_..--block_id--context--constants--parametric : @@ -10992,7 +10992,7 @@ Full description **GET ..//context/constants/parametric** .. raw:: html - +
@@ -11284,35 +11284,35 @@ Full description +--------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+ | direct_ticket_spending_enable | 1 byte | boolean (0 for false, 255 for true) | +--------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_0 *** - + +------------------------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +====================================+======================+=========================================================================+ @@ -11328,11 +11328,11 @@ Full description +------------------------------------+----------------------+-------------------------------------------------------------------------+ | vdf_revelation_tip_weight | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +------------------------------------+----------------------+-------------------------------------------------------------------------+ - - + + X_1 *** - + +-------------+---------+------------------------------------+ | Name | Size | Contents | +=============+=========+====================================+ @@ -11340,14 +11340,14 @@ Full description +-------------+---------+------------------------------------+ | denominator | 2 bytes | unsigned 16-bit big-endian integer | +-------------+---------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -11355,11 +11355,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -11367,11 +11367,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -11379,11 +11379,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -11391,11 +11391,11 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + X_2 *** - + +-----------------------+---------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+=========+=========================================================================+ @@ -11417,11 +11417,11 @@ Full description +-----------------------+---------+-------------------------------------------------------------------------+ | number_of_shards | 2 bytes | unsigned 16-bit big-endian integer | +-----------------------+---------+-------------------------------------------------------------------------+ - - + + X_3 *** - + +---------------------------------+---------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=================================+=========+=========================================================================+ @@ -11435,11 +11435,11 @@ Full description +---------------------------------+---------+-------------------------------------------------------------------------+ | dal_attested_slots_validity_lag | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +---------------------------------+---------+-------------------------------------------------------------------------+ - - + + X_5 *** - + +-------------+----------------------+----------+ | Name | Size | Contents | +=============+======================+==========+ @@ -11447,11 +11447,11 @@ Full description +-------------+----------------------+----------+ | denominator | Determined from data | $Z.t | +-------------+----------------------+----------+ - - + + X_4 *** - + +----------------------------+----------------------+----------------------------------+ | Name | Size | Contents | +============================+======================+==================================+ @@ -11475,10 +11475,10 @@ Full description +----------------------------+----------------------+----------------------------------+ | radius_dz | Determined from data | $X_5 | +----------------------------+----------------------+----------------------------------+ - +
- + .. _GET_..--block_id--context--denunciations : @@ -11486,7 +11486,7 @@ Full description **GET ..//context/denunciations** .. raw:: html - +
@@ -11525,14 +11525,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -11540,11 +11540,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -11552,11 +11552,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -11564,11 +11564,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -11576,11 +11576,11 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + X_2 (Enumeration: unsigned 8-bit integer): ****************************************** - + +-------------+----------------+ | Case number | Encoded string | +=============+================+ @@ -11590,11 +11590,11 @@ Full description +-------------+----------------+ | 2 | block | +-------------+----------------+ - - + + X_1 *** - + +-------+---------+----------------------------------------------------------+ | Name | Size | Contents | +=======+=========+==========================================================+ @@ -11604,11 +11604,11 @@ Full description +-------+---------+----------------------------------------------------------+ | kind | 1 byte | unsigned 8-bit integer encoding an enumeration (see X_2) | +-------+---------+----------------------------------------------------------+ - - + + X_0 *** - + +------------------+----------+------------------+ | Name | Size | Contents | +==================+==========+==================+ @@ -11620,10 +11620,10 @@ Full description +------------------+----------+------------------+ | misbehaviour | 9 bytes | $X_1 | +------------------+----------+------------------+ - +
- + .. _GET_..--block_id--context--issuance--current_yearly_rate : @@ -11631,13 +11631,13 @@ Full description **GET ..//context/issuance/current_yearly_rate** .. raw:: html - +

- Returns the current expected maximum yearly issuance rate (in %)

+ Returns the current expected maximum yearly issuance rate (in %). The value only includes participation rewards (and does not include liquidity baking)

@@ -11655,11 +11655,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     
- + .. _GET_..--block_id--context--issuance--current_yearly_rate_details : @@ -11667,13 +11667,13 @@ Full description **GET ..//context/issuance/current_yearly_rate_details** .. raw:: html - +

- Returns the static and dynamic parts of the current expected maximum yearly issuance rate.

+ Returns the static and dynamic parts of the current expected maximum yearly issuance rate (in %). The value only includes participation rewards (and does not include liquidity baking)

@@ -11697,23 +11697,23 @@ Full description
     +---------+----------------------+----------+
     | dynamic | Determined from data | $X_0     |
     +---------+----------------------+----------+
-    
-    
+
+
     N.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | N.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
-    
+
+
     X_0
     ***
-    
+
     +-------------+----------------------+----------+
     | Name        | Size                 | Contents |
     +=============+======================+==========+
@@ -11721,10 +11721,10 @@ Full description
     +-------------+----------------------+----------+
     | denominator | Determined from data | $N.t     |
     +-------------+----------------------+----------+
-    
+
     
- + .. _GET_..--block_id--context--issuance--current_yearly_rate_exact : @@ -11732,13 +11732,13 @@ Full description **GET ..//context/issuance/current_yearly_rate_exact** .. raw:: html - +

- Returns the current expected maximum yearly issuance rate (exact quotient)

+ Returns the current expected maximum yearly issuance rate (exact quotient) (in %). The value only includes participation rewards (and does not include liquidity baking)

@@ -11758,22 +11758,22 @@ Full description
     +-------------+----------------------+----------+
     | denominator | Determined from data | $N.t     |
     +-------------+----------------------+----------+
-    
-    
+
+
     N.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | N.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
+
     
- + .. _GET_..--block_id--context--issuance--expected_issuance : @@ -11781,13 +11781,13 @@ Full description **GET ..//context/issuance/expected_issuance** .. raw:: html - +

- Returns the expected issued tez for the provided block and the next 'consensus_rights_delay' cycles

+ Returns the expected issued tez for the provided block and the next 'consensus_rights_delay' cycles (in mutez)

@@ -11812,23 +11812,23 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $X_0                   |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     N.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | N.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
-    
+
+
     X_0
     ***
-    
+
     +------------------------------+----------------------+----------------------------------+
     | Name                         | Size                 | Contents                         |
     +==============================+======================+==================================+
@@ -11844,10 +11844,10 @@ Full description
     +------------------------------+----------------------+----------------------------------+
     | vdf_revelation_tip           | Determined from data | $N.t                             |
     +------------------------------+----------------------+----------------------------------+
-    
+
     
- + .. _GET_..--block_id--context--issuance--issuance_per_minute : @@ -11855,13 +11855,13 @@ Full description **GET ..//context/issuance/issuance_per_minute** .. raw:: html - +

- Returns the current expected maximum issuance per minute (in mutez)

+ Returns the current expected maximum issuance per minute (in mutez). The value only includes participation rewards (and does not include liquidity baking)

@@ -11878,22 +11878,22 @@ Full description
     +=================+======================+==========+
     | Unnamed field 0 | Determined from data | $N.t     |
     +-----------------+----------------------+----------+
-    
-    
+
+
     N.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | N.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
+
     
- + .. _GET_..--block_id--context--liquidity_baking--cpmm_address : @@ -11901,7 +11901,7 @@ Full description **GET ..//context/liquidity_baking/cpmm_address** .. raw:: html - +
@@ -11928,14 +11928,14 @@ Full description +=================+==========+==========+ | Unnamed field 0 | 22 bytes | $X_0 | +-----------------+----------+----------+ - - + + X_0 (22 bytes, 8-bit tag) ************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -11945,10 +11945,10 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - +
- + .. _GET_..--block_id--context--merkle_tree : @@ -11956,7 +11956,7 @@ Full description **GET ..//context/merkle_tree(/)*?[holey=]** .. raw:: html - +
@@ -11995,11 +11995,11 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $X_8 | +-----------------+----------------------+----------+ - - + + X_2 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -12007,11 +12007,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_3 *** - + +-----------------+----------------------+--------------+ | Name | Size | Contents | +=================+======================+==============+ @@ -12019,14 +12019,14 @@ Full description +-----------------+----------------------+--------------+ | Unnamed field 1 | Determined from data | $raw_context | +-----------------+----------------------+--------------+ - - + + raw_context (Determined from data, 8-bit tag) ********************************************* - + Key (tag 0) =========== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -12036,11 +12036,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Dir (tag 1) =========== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -12050,24 +12050,24 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Cut (tag 2) =========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_7 (Determined from data, 8-bit tag) ************************************* - + Hash (tag 0) ============ - + +-----------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=================+======================+=====================================+ @@ -12077,11 +12077,11 @@ Full description +-----------------+----------------------+-------------------------------------+ | Unnamed field 1 | Determined from data | $X_2 | +-----------------+----------------------+-------------------------------------+ - - + + Data (tag 1) ============ - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -12089,11 +12089,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $raw_context | +-----------------+----------------------+------------------------+ - - + + Continue (tag 2) ================ - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -12101,11 +12101,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $merkle_tree | +-----------------+----------------------+------------------------+ - - + + X_1 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -12113,11 +12113,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_7 | +-----------------+----------------------+----------+ - - + + merkle_tree *********** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -12125,24 +12125,24 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_1 | +-----------------------+----------+------------------------------------+ - - + + X_8 (Determined from data, 8-bit tag) ************************************* - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -12150,10 +12150,10 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $merkle_tree | +-----------------+----------------------+------------------------+ - +
- + .. _GET_..--block_id--context--merkle_tree_v2 : @@ -12161,7 +12161,7 @@ Full description **GET ..//context/merkle_tree_v2(/)*?[holey=]** .. raw:: html - +
@@ -12269,11 +12269,11 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $X_53821 | +-----------------+----------------------+----------+ - - + + X_0 *** - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -12281,11 +12281,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + X_6 *** - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -12293,11 +12293,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + X_5 *** - + +-----------------+----------------------+----------------+ | Name | Size | Contents | +=================+======================+================+ @@ -12305,11 +12305,11 @@ Full description +-----------------+----------------------+----------------+ | Unnamed field 1 | Determined from data | $tree_encoding | +-----------------+----------------------+----------------+ - - + + X_132 ***** - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -12317,11 +12317,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 1 | Determined from data | $inode_tree | +-----------------+----------------------+------------------------+ - - + + X_131 ***** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -12329,14 +12329,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_132 | +-----------------------+----------+------------------------------------+ - - + + inode_tree (Determined from data, 8-bit tag) ******************************************** - + Inode_tree (tag 0) ================== - + +-----------------+--------+------------------------+ | Name | Size | Contents | +=================+========+========================+ @@ -12344,11 +12344,11 @@ Full description +-----------------+--------+------------------------+ | Unnamed field 0 | 1 byte | unsigned 8-bit integer | +-----------------+--------+------------------------+ - - + + Inode_tree (tag 1) ================== - + +-----------------+---------+------------------------------------+ | Name | Size | Contents | +=================+=========+====================================+ @@ -12356,11 +12356,11 @@ Full description +-----------------+---------+------------------------------------+ | Unnamed field 0 | 2 bytes | unsigned 16-bit big-endian integer | +-----------------+---------+------------------------------------+ - - + + Inode_tree (tag 2) ================== - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -12368,11 +12368,11 @@ Full description +-----------------+---------+----------------------------------+ | Unnamed field 0 | 4 bytes | signed 32-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + Inode_tree (tag 3) ================== - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -12380,11 +12380,11 @@ Full description +-----------------+---------+----------------------------------+ | Unnamed field 0 | 8 bytes | signed 64-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + Inode_tree (tag 4) ================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12394,11 +12394,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 5) ================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12408,11 +12408,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 6) ================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12422,11 +12422,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 7) ================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12436,11 +12436,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 8) ================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12450,11 +12450,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 9) ================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12464,11 +12464,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 10) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12478,11 +12478,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 11) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12492,11 +12492,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 12) =================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12506,11 +12506,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 13) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12520,11 +12520,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 14) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12534,11 +12534,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 15) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12548,11 +12548,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 16) =================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12562,11 +12562,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 17) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12576,11 +12576,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 18) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12590,11 +12590,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 19) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12604,11 +12604,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 20) =================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12618,11 +12618,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 21) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12632,11 +12632,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 22) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12646,11 +12646,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 23) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12660,11 +12660,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 24) =================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12674,11 +12674,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 25) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12688,11 +12688,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 26) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12702,11 +12702,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 27) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12716,11 +12716,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 28) =================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12730,11 +12730,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 29) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12744,11 +12744,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 30) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12758,11 +12758,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 31) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12772,11 +12772,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 32) =================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12786,11 +12786,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 33) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12800,11 +12800,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 34) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12814,11 +12814,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 35) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12828,11 +12828,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 36) =================== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -12842,11 +12842,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode_tree (tag 37) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12856,11 +12856,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 38) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12870,11 +12870,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 39) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12884,11 +12884,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 40) =================== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -12898,11 +12898,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode_tree (tag 41) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12912,11 +12912,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 42) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12926,11 +12926,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 43) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12940,11 +12940,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 44) =================== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -12954,11 +12954,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode_tree (tag 45) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -12968,11 +12968,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 46) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12982,11 +12982,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 47) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -12996,11 +12996,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 48) =================== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -13010,11 +13010,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode_tree (tag 49) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13024,11 +13024,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 50) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13038,11 +13038,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 51) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13052,11 +13052,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 52) =================== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -13066,11 +13066,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode_tree (tag 53) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13080,11 +13080,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 54) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13094,11 +13094,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 55) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13108,11 +13108,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 56) =================== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -13122,11 +13122,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode_tree (tag 57) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13136,11 +13136,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 58) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13150,11 +13150,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 59) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13164,11 +13164,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 60) =================== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -13178,11 +13178,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+------------------------+ - - + + Inode_tree (tag 61) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13192,11 +13192,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 62) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13206,11 +13206,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 63) =================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -13220,11 +13220,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+----------------------------------+ - - + + Inode_tree (tag 64) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13234,11 +13234,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 65) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13248,11 +13248,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 66) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13262,11 +13262,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + Inode_tree (tag 67) =================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -13276,21 +13276,21 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + other_inode_trees (tag 128) =========================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + other_inode_trees (tag 129) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13298,11 +13298,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 1 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 130) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13310,11 +13310,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 2 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 131) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13322,11 +13322,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 3 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 132) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13334,11 +13334,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 4 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 133) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13346,11 +13346,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 5 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 134) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13358,11 +13358,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 6 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 135) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13370,11 +13370,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 7 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 136) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13382,11 +13382,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 8 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 137) =========================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -13394,11 +13394,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 9 $X_5 | +-----------------+----------+----------------------------+ - - + + other_inode_trees (tag 138) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13406,11 +13406,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 10 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 139) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13418,11 +13418,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 11 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 140) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13430,11 +13430,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 12 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 141) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13442,11 +13442,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 13 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 142) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13454,11 +13454,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 14 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 143) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13466,11 +13466,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 15 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 144) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13478,11 +13478,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 16 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 145) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13490,11 +13490,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 17 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 146) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13502,11 +13502,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 18 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 147) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13514,11 +13514,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 19 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 148) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13526,11 +13526,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 20 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 149) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13538,11 +13538,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 21 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 150) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13550,11 +13550,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 22 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 151) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13562,11 +13562,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 23 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 152) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13574,11 +13574,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 24 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 153) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13586,11 +13586,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 25 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 154) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13598,11 +13598,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 26 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 155) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13610,11 +13610,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 27 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 156) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13622,11 +13622,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 28 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 157) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13634,11 +13634,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 29 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 158) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13646,11 +13646,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 30 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 159) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13658,11 +13658,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 31 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 160) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13670,11 +13670,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 32 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 161) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13682,11 +13682,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 33 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 162) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13694,11 +13694,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 34 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 163) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13706,11 +13706,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 35 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 164) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13718,11 +13718,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 36 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 165) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13730,11 +13730,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 37 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 166) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13742,11 +13742,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 38 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 167) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13754,11 +13754,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 39 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 168) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13766,11 +13766,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 40 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 169) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13778,11 +13778,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 41 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 170) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13790,11 +13790,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 42 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 171) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13802,11 +13802,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 43 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 172) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13814,11 +13814,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 44 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 173) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13826,11 +13826,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 45 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 174) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13838,11 +13838,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 46 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 175) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13850,11 +13850,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 47 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 176) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13862,11 +13862,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 48 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 177) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13874,11 +13874,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 49 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 178) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13886,11 +13886,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 50 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 179) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13898,11 +13898,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 51 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 180) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13910,11 +13910,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 52 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 181) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13922,11 +13922,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 53 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 182) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13934,11 +13934,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 54 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 183) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13946,11 +13946,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 55 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 184) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13958,11 +13958,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 56 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 185) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13970,11 +13970,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 57 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 186) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13982,11 +13982,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 58 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 187) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -13994,11 +13994,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 59 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 188) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -14006,11 +14006,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 60 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 189) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -14018,11 +14018,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 61 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 190) =========================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -14030,11 +14030,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 62 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_inode_trees (tag 191) =========================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -14044,11 +14044,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_5 | +-----------------------+----------+------------------------------------+ - - + + other_inode_trees (tag 192) =========================== - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -14056,11 +14056,11 @@ Full description +--------------+----------+------------------------+ | Context_hash | 32 bytes | bytes | +--------------+----------+------------------------+ - - + + other_inode_trees (tag 208) =========================== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -14072,11 +14072,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+------------------------+ - - + + other_inode_trees (tag 209) =========================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14088,11 +14088,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + other_inode_trees (tag 210) =========================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14104,11 +14104,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+----------------------------------+ - - + + other_inode_trees (tag 211) =========================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14120,24 +14120,24 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+----------------------------------+ - - + + other_inode_trees (tag 224) =========================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + tree_encoding (Determined from data, 8-bit tag) *********************************************** - + Inode (tag 0) ============= - + +-----------------+--------+------------------------+ | Name | Size | Contents | +=================+========+========================+ @@ -14145,11 +14145,11 @@ Full description +-----------------+--------+------------------------+ | Unnamed field 0 | 1 byte | unsigned 8-bit integer | +-----------------+--------+------------------------+ - - + + Inode (tag 1) ============= - + +-----------------+---------+------------------------------------+ | Name | Size | Contents | +=================+=========+====================================+ @@ -14157,11 +14157,11 @@ Full description +-----------------+---------+------------------------------------+ | Unnamed field 0 | 2 bytes | unsigned 16-bit big-endian integer | +-----------------+---------+------------------------------------+ - - + + Inode (tag 2) ============= - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -14169,11 +14169,11 @@ Full description +-----------------+---------+----------------------------------+ | Unnamed field 0 | 4 bytes | signed 32-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + Inode (tag 3) ============= - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -14181,11 +14181,11 @@ Full description +-----------------+---------+----------------------------------+ | Unnamed field 0 | 8 bytes | signed 64-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + Inode (tag 4) ============= - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14195,11 +14195,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 5) ============= - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14209,11 +14209,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 6) ============= - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14223,11 +14223,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 7) ============= - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14237,11 +14237,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 1 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 8) ============= - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14251,11 +14251,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 9) ============= - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14265,11 +14265,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 10) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14279,11 +14279,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 11) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14293,11 +14293,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 2 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 12) ============== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14307,11 +14307,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 13) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14321,11 +14321,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 14) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14335,11 +14335,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 15) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14349,11 +14349,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 3 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 16) ============== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14363,11 +14363,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 17) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14377,11 +14377,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 18) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14391,11 +14391,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 19) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14405,11 +14405,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 4 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 20) ============== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14419,11 +14419,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 21) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14433,11 +14433,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 22) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14447,11 +14447,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 23) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14461,11 +14461,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 5 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 24) ============== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14475,11 +14475,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 25) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14489,11 +14489,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 26) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14503,11 +14503,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 27) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14517,11 +14517,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 6 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 28) ============== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14531,11 +14531,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 29) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14545,11 +14545,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 30) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14559,11 +14559,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 31) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14573,11 +14573,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 7 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 32) ============== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14587,11 +14587,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 33) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14601,11 +14601,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 34) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14615,11 +14615,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 35) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14629,11 +14629,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 8 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 36) ============== - + +-----------------+----------------------+------------------------------+ | Name | Size | Contents | +=================+======================+==============================+ @@ -14643,11 +14643,11 @@ Full description +-----------------+----------------------+------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+------------------------------+ - - + + Inode (tag 37) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14657,11 +14657,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 38) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14671,11 +14671,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 39) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14685,11 +14685,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 9 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 40) ============== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -14699,11 +14699,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode (tag 41) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14713,11 +14713,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 42) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14727,11 +14727,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 43) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14741,11 +14741,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 10 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 44) ============== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -14755,11 +14755,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode (tag 45) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14769,11 +14769,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 46) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14783,11 +14783,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 47) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14797,11 +14797,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 11 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 48) ============== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -14811,11 +14811,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode (tag 49) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14825,11 +14825,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 50) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14839,11 +14839,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 51) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14853,11 +14853,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 12 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 52) ============== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -14867,11 +14867,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode (tag 53) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14881,11 +14881,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 54) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14895,11 +14895,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 55) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14909,11 +14909,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 13 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 56) ============== - + +-----------------+----------------------+-------------------------------+ | Name | Size | Contents | +=================+======================+===============================+ @@ -14923,11 +14923,11 @@ Full description +-----------------+----------------------+-------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+-------------------------------+ - - + + Inode (tag 57) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14937,11 +14937,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 58) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14951,11 +14951,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 59) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -14965,11 +14965,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 14 $X_132 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 60) ============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -14979,11 +14979,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+------------------------+ - - + + Inode (tag 61) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -14993,11 +14993,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 62) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -15007,11 +15007,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 63) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -15021,11 +15021,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 1 | Determined from data | $X_131 | +-----------------+----------------------+----------------------------------+ - - + + Inode (tag 64) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -15035,11 +15035,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 65) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -15049,11 +15049,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 66) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -15063,11 +15063,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + Inode (tag 67) ============== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -15077,21 +15077,21 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 1 | Determined from data | sequence of exactly 32 $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + other_trees (tag 128) ===================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + other_trees (tag 129) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15099,11 +15099,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 1 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 130) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15111,11 +15111,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 2 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 131) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15123,11 +15123,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 3 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 132) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15135,11 +15135,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 4 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 133) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15147,11 +15147,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 5 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 134) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15159,11 +15159,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 6 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 135) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15171,11 +15171,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 7 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 136) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15183,11 +15183,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 8 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 137) ===================== - + +-----------------+----------+----------------------------+ | Name | Size | Contents | +=================+==========+============================+ @@ -15195,11 +15195,11 @@ Full description +-----------------+----------+----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 9 $X_5 | +-----------------+----------+----------------------------+ - - + + other_trees (tag 138) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15207,11 +15207,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 10 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 139) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15219,11 +15219,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 11 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 140) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15231,11 +15231,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 12 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 141) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15243,11 +15243,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 13 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 142) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15255,11 +15255,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 14 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 143) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15267,11 +15267,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 15 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 144) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15279,11 +15279,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 16 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 145) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15291,11 +15291,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 17 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 146) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15303,11 +15303,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 18 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 147) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15315,11 +15315,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 19 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 148) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15327,11 +15327,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 20 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 149) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15339,11 +15339,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 21 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 150) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15351,11 +15351,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 22 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 151) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15363,11 +15363,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 23 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 152) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15375,11 +15375,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 24 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 153) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15387,11 +15387,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 25 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 154) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15399,11 +15399,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 26 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 155) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15411,11 +15411,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 27 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 156) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15423,11 +15423,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 28 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 157) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15435,11 +15435,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 29 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 158) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15447,11 +15447,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 30 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 159) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15459,11 +15459,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 31 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 160) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15471,11 +15471,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 32 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 161) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15483,11 +15483,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 33 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 162) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15495,11 +15495,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 34 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 163) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15507,11 +15507,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 35 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 164) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15519,11 +15519,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 36 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 165) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15531,11 +15531,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 37 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 166) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15543,11 +15543,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 38 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 167) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15555,11 +15555,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 39 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 168) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15567,11 +15567,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 40 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 169) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15579,11 +15579,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 41 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 170) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15591,11 +15591,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 42 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 171) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15603,11 +15603,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 43 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 172) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15615,11 +15615,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 44 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 173) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15627,11 +15627,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 45 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 174) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15639,11 +15639,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 46 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 175) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15651,11 +15651,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 47 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 176) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15663,11 +15663,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 48 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 177) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15675,11 +15675,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 49 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 178) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15687,11 +15687,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 50 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 179) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15699,11 +15699,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 51 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 180) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15711,11 +15711,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 52 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 181) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15723,11 +15723,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 53 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 182) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15735,11 +15735,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 54 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 183) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15747,11 +15747,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 55 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 184) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15759,11 +15759,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 56 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 185) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15771,11 +15771,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 57 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 186) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15783,11 +15783,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 58 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 187) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15795,11 +15795,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 59 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 188) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15807,11 +15807,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 60 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 189) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15819,11 +15819,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 61 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 190) ===================== - + +-----------------+----------+-----------------------------+ | Name | Size | Contents | +=================+==========+=============================+ @@ -15831,11 +15831,11 @@ Full description +-----------------+----------+-----------------------------+ | Unnamed field 0 | Variable | sequence of exactly 62 $X_5 | +-----------------+----------+-----------------------------+ - - + + other_trees (tag 191) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -15845,11 +15845,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_5 | +-----------------------+----------+------------------------------------+ - - + + other_trees (tag 192) ===================== - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -15859,11 +15859,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + other_trees (tag 193) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -15873,11 +15873,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + other_trees (tag 195) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -15887,11 +15887,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + other_trees (tag 200) ===================== - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -15899,11 +15899,11 @@ Full description +--------------+----------+------------------------+ | Context_hash | 32 bytes | bytes | +--------------+----------+------------------------+ - - + + other_trees (tag 208) ===================== - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -15911,11 +15911,11 @@ Full description +--------------+----------+------------------------+ | Context_hash | 32 bytes | bytes | +--------------+----------+------------------------+ - - + + other_trees (tag 216) ===================== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -15927,11 +15927,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+------------------------+ - - + + other_trees (tag 217) ===================== - + +-----------------+----------------------+------------------------------------+ | Name | Size | Contents | +=================+======================+====================================+ @@ -15943,11 +15943,11 @@ Full description +-----------------+----------------------+------------------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+------------------------------------+ - - + + other_trees (tag 218) ===================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -15959,11 +15959,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+----------------------------------+ - - + + other_trees (tag 219) ===================== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -15975,24 +15975,24 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 2 | Determined from data | $inode_tree | +-----------------+----------------------+----------------------------------+ - - + + other_trees (tag 224) ===================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_53820 (Determined from data, 8-bit tag) ***************************************** - + case_0 (tag 0) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -16006,11 +16006,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 3 | Determined from data | $tree_encoding | +-----------------+----------------------+----------------------------------+ - - + + case_1 (tag 1) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -16024,11 +16024,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 3 | Determined from data | $tree_encoding | +-----------------+----------------------+----------------------------------+ - - + + case_2 (tag 2) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -16042,11 +16042,11 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 3 | Determined from data | $tree_encoding | +-----------------+----------------------+----------------------------------+ - - + + case_3 (tag 3) ============== - + +-----------------+----------------------+----------------------------------+ | Name | Size | Contents | +=================+======================+==================================+ @@ -16060,24 +16060,24 @@ Full description +-----------------+----------------------+----------------------------------+ | Unnamed field 3 | Determined from data | $tree_encoding | +-----------------+----------------------+----------------------------------+ - - + + X_53821 (Determined from data, 8-bit tag) ***************************************** - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -16085,10 +16085,10 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_53820 | +-----------------+----------------------+------------------------+ - +
- + .. _GET_..--block_id--context--nonces--block_level : @@ -16096,7 +16096,7 @@ Full description **GET ..//context/nonces/** .. raw:: html - +
@@ -16128,14 +16128,14 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $X_0 | +-----------------+----------------------+----------+ - - + + X_0 (Determined from data, 8-bit tag) ************************************* - + Revealed (tag 0) ================ - + +-------+----------+------------------------+ | Name | Size | Contents | +=======+==========+========================+ @@ -16143,11 +16143,11 @@ Full description +-------+----------+------------------------+ | nonce | 32 bytes | bytes | +-------+----------+------------------------+ - - + + Missing (tag 1) =============== - + +------+----------+------------------------+ | Name | Size | Contents | +======+==========+========================+ @@ -16155,20 +16155,20 @@ Full description +------+----------+------------------------+ | hash | 32 bytes | bytes | +------+----------+------------------------+ - - + + Forgotten (tag 2) ================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - +
- + .. _GET_..--block_id--context--raw--bytes : @@ -16176,7 +16176,7 @@ Full description **GET ..//context/raw/bytes(/)*?[depth=]** .. raw:: html - +
@@ -16202,11 +16202,11 @@ Full description +=================+======================+==============+ | Unnamed field 0 | Determined from data | $raw_context | +-----------------+----------------------+--------------+ - - + + X_1 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -16214,11 +16214,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------+----------------------+--------------+ | Name | Size | Contents | +=================+======================+==============+ @@ -16226,14 +16226,14 @@ Full description +-----------------+----------------------+--------------+ | Unnamed field 1 | Determined from data | $raw_context | +-----------------+----------------------+--------------+ - - + + raw_context (Determined from data, 8-bit tag) ********************************************* - + Key (tag 0) =========== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -16243,11 +16243,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Dir (tag 1) =========== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -16257,20 +16257,20 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + Cut (tag 2) =========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - +
- + .. _GET_..--block_id--context--sapling--sapling_state_id--get_diff : @@ -16278,7 +16278,7 @@ Full description **GET ..//context/sapling//get_diff?[offset_commitment=]&[offset_nullifier=]** .. raw:: html - +
@@ -16320,11 +16320,11 @@ Full description +-----------------------------+----------+------------------------------------+ | nullifiers | Variable | sequence of bytes | +-----------------------------+----------+------------------------------------+ - - + + sapling.transaction.ciphertext ****************************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -16342,11 +16342,11 @@ Full description +-----------------------+----------+------------------------------------+ | nonce_out | 24 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------+----------------------+---------------------------------+ | Name | Size | Contents | +=================+======================+=================================+ @@ -16354,10 +16354,10 @@ Full description +-----------------+----------------------+---------------------------------+ | Unnamed field 1 | Determined from data | $sapling.transaction.ciphertext | +-----------------+----------------------+---------------------------------+ - +
- + .. _POST_..--block_id--context--seed : @@ -16365,7 +16365,7 @@ Full description **POST ..//context/seed** .. raw:: html - +
@@ -16395,11 +16395,11 @@ Full description +=================+==========+==========+ | Unnamed field 0 | 32 bytes | bytes | +-----------------+----------+----------+ - - + +
- + .. _GET_..--block_id--context--seed_computation : @@ -16407,7 +16407,7 @@ Full description **GET ..//context/seed_computation** .. raw:: html - +
@@ -16432,24 +16432,24 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $X_0 | +-----------------+----------------------+----------+ - - + + X_0 (Determined from data, 8-bit tag) ************************************* - + Nonce revelation stage (tag 0) ============================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + VDF revelation stage (tag 1) ============================ - + +-------------------+----------+------------------------+ | Name | Size | Contents | +===================+==========+========================+ @@ -16459,20 +16459,20 @@ Full description +-------------------+----------+------------------------+ | seed_challenge | 32 bytes | bytes | +-------------------+----------+------------------------+ - - + + Computation finished (tag 2) ============================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - +
- + .. _GET_..--block_id--context--total_frozen_stake : @@ -16480,7 +16480,7 @@ Full description **GET ..//context/total_frozen_stake** .. raw:: html - +
@@ -16503,22 +16503,22 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $N.t | +-----------------+----------------------+----------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - +
- + .. _GET_..--block_id--context--total_supply : @@ -16526,7 +16526,7 @@ Full description **GET ..//context/total_supply** .. raw:: html - +
@@ -16549,22 +16549,22 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $N.t | +-----------------+----------------------+----------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - +
- + .. _GET_..--block_id--hash : @@ -16572,7 +16572,7 @@ Full description **GET ..//hash** .. raw:: html - +
@@ -16597,11 +16597,11 @@ Full description +============+==========+==========+ | block_hash | 32 bytes | bytes | +------------+----------+----------+ - - + +
- + .. _GET_..--block_id--header : @@ -16609,7 +16609,7 @@ Full description **GET ..//header** .. raw:: html - +
@@ -16622,7 +16622,7 @@ Full description { /* Shell header Block header's shell-related content. It contains information such as the block level, its predecessor and timestamp. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $block_hash, "level": integer ∈ [-2^31-1, 2^31], @@ -16721,11 +16721,11 @@ Full description +---------------------------------------+----------+-------------------------------------+ | signature | Variable | bytes | +---------------------------------------+----------+-------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -16733,110 +16733,110 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.per_block_votes (1 byte, 8-bit tag) **************************************** - + case_0 (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_1 (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_2 (tag 2) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_4 (tag 4) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_5 (tag 5) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_6 (tag 6) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_8 (tag 8) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_9 (tag 9) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_10 (tag 10) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - +
- + .. _GET_..--block_id--header--protocol_data : **GET ..//header/protocol_data** .. raw:: html - +
@@ -16846,7 +16846,7 @@ Full description
-    { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+    { "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
       "payload_hash": $value_hash,
       "payload_round": integer ∈ [-2^31-1, 2^31],
       "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
@@ -16890,110 +16890,110 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    
-    
+
+
     beta.per_block_votes (1 byte, 8-bit tag)
     ****************************************
-    
+
     case_0 (tag 0)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_1 (tag 1)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_2 (tag 2)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_4 (tag 4)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_5 (tag 5)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_6 (tag 6)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_8 (tag 8)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_9 (tag 9)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_10 (tag 10)
     ================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
+
     
- + .. _GET_..--block_id--header--protocol_data--raw : **GET ..//header/protocol_data/raw** .. raw:: html - +
@@ -17014,11 +17014,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + +
- + .. _GET_..--block_id--header--raw : @@ -17026,7 +17026,7 @@ Full description **GET ..//header/raw** .. raw:: html - +
@@ -17047,11 +17047,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + +
- + .. _GET_..--block_id--header--shell : @@ -17059,7 +17059,7 @@ Full description **GET ..//header/shell** .. raw:: html - +
@@ -17129,11 +17129,11 @@ Full description +----------------------------+----------+------------------------------------+ | context | 32 bytes | bytes | +----------------------------+----------+------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -17141,10 +17141,10 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - +
- + .. _GET_..--block_id--helpers--complete--prefix : @@ -17152,7 +17152,7 @@ Full description **GET ..//helpers/complete/** .. raw:: html - +
@@ -17178,11 +17178,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -17190,10 +17190,10 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - +
- + .. _POST_..--block_id--helpers--forge_block_header : @@ -17201,7 +17201,7 @@ Full description **POST ..//helpers/forge_block_header** .. raw:: html - +
@@ -17275,11 +17275,11 @@ Full description +----------------------------+----------+------------------------------------+ | protocol_data | Variable | bytes | +----------------------------+----------+------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -17287,7 +17287,7 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - +
@@ -17303,11 +17303,11 @@ Full description +-----------------------+----------+------------------------------------+ | block | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + +
- + .. _POST_..--block_id--helpers--preapply--block : @@ -17315,7 +17315,7 @@ Full description **POST ..//helpers/preapply/block?[sort]&[timestamp=]** .. raw:: html - +
@@ -17328,7 +17328,7 @@ Full description
     { "protocol_data":
-        { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+        { "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
           "payload_hash": $value_hash,
           "payload_round": integer ∈ [-2^31-1, 2^31],
           "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
@@ -17980,7 +17980,7 @@ Full description
            "annots"?: [ $unistring ... ] }
     $next_operation:
       /* An operation's shell header. */
-      { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY",
+      { "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT",
         "branch": $block_hash,
         "contents": [ $beta.operation.alpha.contents ... ],
         "signature"?: $Signature.V1 }
@@ -18024,104 +18024,104 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | operations            | Variable             | sequence of $X_1                   |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     beta.per_block_votes (1 byte, 8-bit tag)
     ****************************************
-    
+
     case_0 (tag 0)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_1 (tag 1)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_2 (tag 2)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_4 (tag 4)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_5 (tag 5)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_6 (tag 6)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_8 (tag 8)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_9 (tag 9)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     case_10 (tag 10)
     ================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_0
     ***
-    
+
     +---------------------------------------+----------+-------------------------------------+
     | Name                                  | Size     | Contents                            |
     +=======================================+==========+=====================================+
@@ -18141,14 +18141,14 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    
-    
+
+
     bls_signature_prefix (33 bytes, 8-bit tag)
     ******************************************
-    
+
     Bls_prefix (tag 3)
     ==================
-    
+
     +-----------------+----------+------------------------+
     | Name            | Size     | Contents               |
     +=================+==========+========================+
@@ -18156,14 +18156,14 @@ Full description
     +-----------------+----------+------------------------+
     | Unnamed field 0 | 32 bytes | bytes                  |
     +-----------------+----------+------------------------+
-    
-    
+
+
     public_key_hash (21 bytes, 8-bit tag)
     *************************************
-    
+
     Ed25519 (tag 0)
     ===============
-    
+
     +-------------------------+----------+------------------------+
     | Name                    | Size     | Contents               |
     +=========================+==========+========================+
@@ -18171,11 +18171,11 @@ Full description
     +-------------------------+----------+------------------------+
     | Ed25519.Public_key_hash | 20 bytes | bytes                  |
     +-------------------------+----------+------------------------+
-    
-    
+
+
     Secp256k1 (tag 1)
     =================
-    
+
     +---------------------------+----------+------------------------+
     | Name                      | Size     | Contents               |
     +===========================+==========+========================+
@@ -18183,11 +18183,11 @@ Full description
     +---------------------------+----------+------------------------+
     | Secp256k1.Public_key_hash | 20 bytes | bytes                  |
     +---------------------------+----------+------------------------+
-    
-    
+
+
     P256 (tag 2)
     ============
-    
+
     +----------------------+----------+------------------------+
     | Name                 | Size     | Contents               |
     +======================+==========+========================+
@@ -18195,11 +18195,11 @@ Full description
     +----------------------+----------+------------------------+
     | P256.Public_key_hash | 20 bytes | bytes                  |
     +----------------------+----------+------------------------+
-    
-    
+
+
     Bls (tag 3)
     ===========
-    
+
     +---------------------------+----------+------------------------+
     | Name                      | Size     | Contents               |
     +===========================+==========+========================+
@@ -18207,23 +18207,23 @@ Full description
     +---------------------------+----------+------------------------+
     | Bls12_381.Public_key_hash | 20 bytes | bytes                  |
     +---------------------------+----------+------------------------+
-    
-    
+
+
     N.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | N.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
-    
+
+
     X_4
     ***
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -18231,11 +18231,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_5
     ***
-    
+
     +-----------------------+----------+-------------------------------------+
     | Name                  | Size     | Contents                            |
     +=======================+==========+=====================================+
@@ -18247,11 +18247,11 @@ Full description
     +-----------------------+----------+-------------------------------------+
     | exit_validity         | 1 byte   | boolean (0 for false, 255 for true) |
     +-----------------------+----------+-------------------------------------+
-    
-    
+
+
     X_3
     ***
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -18259,11 +18259,11 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | Determined from data | $X_5     |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_8
     ***
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -18273,11 +18273,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | fee                   | 32 bytes | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_6
     ***
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -18285,11 +18285,11 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | Determined from data | $X_8     |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_9
     ***
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -18297,11 +18297,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of bytes                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     X_2
     ***
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -18319,23 +18319,23 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | proof                 | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Z.t
     ***
-    
+
     A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order.
-    
+
     +------+----------------------+----------+
     | Name | Size                 | Contents |
     +======+======================+==========+
     | Z.t  | Determined from data | bytes    |
     +------+----------------------+----------+
-    
-    
+
+
     X_12
     ****
-    
+
     +--------+----------------------+----------+
     | Name   | Size                 | Contents |
     +========+======================+==========+
@@ -18343,11 +18343,11 @@ Full description
     +--------+----------------------+----------+
     | amount | Determined from data | $Z.t     |
     +--------+----------------------+----------+
-    
-    
+
+
     X_11
     ****
-    
+
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                |
     +=======================+======================+=========================================================================+
@@ -18363,11 +18363,11 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | payload               | Variable             | sequence of bytes                                                       |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
-    
-    
+
+
     beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     *******************************************************************
-    
+
     +-------------+--------------------------------+
     | Case number | Encoded string                 |
     +=============+================================+
@@ -18687,14 +18687,14 @@ Full description
     +-------------+--------------------------------+
     | 157         | Ticket                         |
     +-------------+--------------------------------+
-    
-    
+
+
     micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag)
     ************************************************************************
-    
+
     Int (tag 0)
     ===========
-    
+
     +------+----------------------+------------------------+
     | Name | Size                 | Contents               |
     +======+======================+========================+
@@ -18702,11 +18702,11 @@ Full description
     +------+----------------------+------------------------+
     | int  | Determined from data | $Z.t                   |
     +------+----------------------+------------------------+
-    
-    
+
+
     String (tag 1)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -18716,11 +18716,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | string                | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Sequence (tag 2)
     ================
-    
+
     +-----------------------+----------+-----------------------------------------------------+
     | Name                  | Size     | Contents                                            |
     +=======================+==========+=====================================================+
@@ -18730,11 +18730,11 @@ Full description
     +-----------------------+----------+-----------------------------------------------------+
     | Unnamed field 0       | Variable | sequence of $micheline.beta.michelson_v1.expression |
     +-----------------------+----------+-----------------------------------------------------+
-    
-    
+
+
     Prim__no_args__no_annots (tag 3)
     ================================
-    
+
     +------+--------+-----------------------------------------------------------------------------------+
     | Name | Size   | Contents                                                                          |
     +======+========+===================================================================================+
@@ -18742,11 +18742,11 @@ Full description
     +------+--------+-----------------------------------------------------------------------------------+
     | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) |
     +------+--------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__no_args__some_annots (tag 4)
     ==================================
-    
+
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | Name                  | Size     | Contents                                                                          |
     +=======================+==========+===================================================================================+
@@ -18758,11 +18758,11 @@ Full description
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | annots                | Variable | bytes                                                                             |
     +-----------------------+----------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__1_arg__no_annots (tag 5)
     ==============================
-    
+
     +------+----------------------+-----------------------------------------------------------------------------------+
     | Name | Size                 | Contents                                                                          |
     +======+======================+===================================================================================+
@@ -18772,11 +18772,11 @@ Full description
     +------+----------------------+-----------------------------------------------------------------------------------+
     | arg  | Determined from data | $micheline.beta.michelson_v1.expression                                           |
     +------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__1_arg__some_annots (tag 6)
     ================================
-    
+
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                          |
     +=======================+======================+===================================================================================+
@@ -18790,11 +18790,11 @@ Full description
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | annots                | Variable             | bytes                                                                             |
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__2_args__no_annots (tag 7)
     ===============================
-    
+
     +------+----------------------+-----------------------------------------------------------------------------------+
     | Name | Size                 | Contents                                                                          |
     +======+======================+===================================================================================+
@@ -18806,11 +18806,11 @@ Full description
     +------+----------------------+-----------------------------------------------------------------------------------+
     | arg2 | Determined from data | $micheline.beta.michelson_v1.expression                                           |
     +------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__2_args__some_annots (tag 8)
     =================================
-    
+
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                          |
     +=======================+======================+===================================================================================+
@@ -18826,11 +18826,11 @@ Full description
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
     | annots                | Variable             | bytes                                                                             |
     +-----------------------+----------------------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Prim__generic (tag 9)
     =====================
-    
+
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | Name                  | Size     | Contents                                                                          |
     +=======================+==========+===================================================================================+
@@ -18846,11 +18846,11 @@ Full description
     +-----------------------+----------+-----------------------------------------------------------------------------------+
     | annots                | Variable | bytes                                                                             |
     +-----------------------+----------+-----------------------------------------------------------------------------------+
-    
-    
+
+
     Bytes (tag 10)
     ==============
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -18860,14 +18860,14 @@ Full description
     +-----------------------+----------+------------------------------------+
     | bytes                 | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     beta.contract_id (22 bytes, 8-bit tag)
     **************************************
-    
+
     Implicit (tag 0)
     ================
-    
+
     +---------------------------+----------+------------------------+
     | Name                      | Size     | Contents               |
     +===========================+==========+========================+
@@ -18875,11 +18875,11 @@ Full description
     +---------------------------+----------+------------------------+
     | Signature.Public_key_hash | 21 bytes | $public_key_hash       |
     +---------------------------+----------+------------------------+
-    
-    
+
+
     Originated (tag 1)
     ==================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -18889,24 +18889,24 @@ Full description
     +---------------+----------+------------------------+
     | padding       | 1 byte   | padding                |
     +---------------+----------+------------------------+
-    
-    
+
+
     X_15 (Determined from data, 8-bit tag)
     **************************************
-    
+
     None (tag 0)
     ============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Some (tag 1)
     ============
-    
+
     +----------+----------------------+-----------------------------------------+
     | Name     | Size                 | Contents                                |
     +==========+======================+=========================================+
@@ -18918,11 +18918,11 @@ Full description
     +----------+----------------------+-----------------------------------------+
     | ticketer | 22 bytes             | $beta.contract_id                       |
     +----------+----------------------+-----------------------------------------+
-    
-    
+
+
     X_10
     ****
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -18930,44 +18930,44 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | Determined from data | $X_15    |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_18 (1 byte, 8-bit tag)
     ************************
-    
+
     Public (tag 0)
     ==============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Private (tag 1)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     Fee (tag 2)
     ===========
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_16
     ****
-    
+
     +-----------------+----------------------+----------+
     | Name            | Size                 | Contents |
     +=================+======================+==========+
@@ -18975,11 +18975,11 @@ Full description
     +-----------------+----------------------+----------+
     | Unnamed field 1 | 1 byte               | $X_18    |
     +-----------------+----------------------+----------+
-    
-    
+
+
     X_19
     ****
-    
+
     +------------------+----------+------------------------+
     | Name             | Size     | Contents               |
     +==================+==========+========================+
@@ -18989,11 +18989,11 @@ Full description
     +------------------+----------+------------------------+
     | commitment_proof | 96 bytes | bytes                  |
     +------------------+----------+------------------------+
-    
-    
+
+
     X_20
     ****
-    
+
     +-------+----------+------------------+
     | Name  | Size     | Contents         |
     +=======+==========+==================+
@@ -19001,11 +19001,11 @@ Full description
     +-------+----------+------------------+
     | bob   | 21 bytes | $public_key_hash |
     +-------+----------+------------------+
-    
-    
+
+
     X_21
     ****
-    
+
     +-----------------+---------+----------------------------------+
     | Name            | Size    | Contents                         |
     +=================+=========+==================================+
@@ -19015,14 +19015,14 @@ Full description
     +-----------------+---------+----------------------------------+
     | page_index      | 2 bytes | signed 16-bit big-endian integer |
     +-----------------+---------+----------------------------------+
-    
-    
+
+
     X_22 (Determined from data, 8-bit tag)
     **************************************
-    
+
     raw data proof (tag 0)
     ======================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19032,21 +19032,21 @@ Full description
     +-----------------------+----------+------------------------------------+
     | raw_data              | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     metadata proof (tag 1)
     ======================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     dal page proof (tag 2)
     ======================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19058,24 +19058,24 @@ Full description
     +-----------------------+----------+------------------------------------+
     | dal_proof             | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     dal parameters proof (tag 3)
     ============================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_23 (Determined from data, 8-bit tag)
     **************************************
-    
+
     inbox proof (tag 0)
     ===================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -19089,11 +19089,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | serialized_proof      | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     reveal proof (tag 1)
     ====================
-    
+
     +--------------+----------------------+------------------------+
     | Name         | Size                 | Contents               |
     +==============+======================+========================+
@@ -19101,21 +19101,21 @@ Full description
     +--------------+----------------------+------------------------+
     | reveal_proof | Determined from data | $X_22                  |
     +--------------+----------------------+------------------------+
-    
-    
+
+
     first input (tag 2)
     ===================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     X_24
     ****
-    
+
     +-----------------------------+----------------------+-------------------------------------+
     | Name                        | Size                 | Contents                            |
     +=============================+======================+=====================================+
@@ -19125,14 +19125,14 @@ Full description
     +-----------------------------+----------------------+-------------------------------------+
     | tick                        | Determined from data | $N.t                                |
     +-----------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_25 (Determined from data, 8-bit tag)
     **************************************
-    
+
     Dissection (tag 0)
     ==================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19142,11 +19142,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $X_24                  |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Proof (tag 1)
     =============
-    
+
     +-----------------------------------+----------------------+-------------------------------------+
     | Name                              | Size                 | Contents                            |
     +===================================+======================+=====================================+
@@ -19160,14 +19160,14 @@ Full description
     +-----------------------------------+----------------------+-------------------------------------+
     | input_proof                       | Determined from data | $X_23                               |
     +-----------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     X_26 (Determined from data, 8-bit tag)
     **************************************
-    
+
     Start (tag 0)
     =============
-    
+
     +--------------------------+----------+------------------------+
     | Name                     | Size     | Contents               |
     +==========================+==========+========================+
@@ -19177,11 +19177,11 @@ Full description
     +--------------------------+----------+------------------------+
     | opponent_commitment_hash | 32 bytes | bytes                  |
     +--------------------------+----------+------------------------+
-    
-    
+
+
     Move (tag 1)
     ============
-    
+
     +--------+----------------------+------------------------+
     | Name   | Size                 | Contents               |
     +========+======================+========================+
@@ -19191,11 +19191,11 @@ Full description
     +--------+----------------------+------------------------+
     | step   | Determined from data | $X_25                  |
     +--------+----------------------+------------------------+
-    
-    
+
+
     X_27
     ****
-    
+
     +------------------+----------+----------------------------------+
     | Name             | Size     | Contents                         |
     +==================+==========+==================================+
@@ -19207,11 +19207,11 @@ Full description
     +------------------+----------+----------------------------------+
     | number_of_ticks  | 8 bytes  | signed 64-bit big-endian integer |
     +------------------+----------+----------------------------------+
-    
-    
+
+
     X_29 (Enumeration: unsigned 8-bit integer):
     *******************************************
-    
+
     +-------------+----------------+
     | Case number | Encoded string |
     +=============+================+
@@ -19221,11 +19221,11 @@ Full description
     +-------------+----------------+
     | 2           | riscv          |
     +-------------+----------------+
-    
-    
+
+
     X_30
     ****
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19233,14 +19233,14 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | sequence of $public_key_hash       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     public_key (Determined from data, 8-bit tag)
     ********************************************
-    
+
     Ed25519 (tag 0)
     ===============
-    
+
     +--------------------+----------+------------------------+
     | Name               | Size     | Contents               |
     +====================+==========+========================+
@@ -19248,11 +19248,11 @@ Full description
     +--------------------+----------+------------------------+
     | Ed25519.Public_key | 32 bytes | bytes                  |
     +--------------------+----------+------------------------+
-    
-    
+
+
     Secp256k1 (tag 1)
     =================
-    
+
     +----------------------+----------+------------------------+
     | Name                 | Size     | Contents               |
     +======================+==========+========================+
@@ -19260,11 +19260,11 @@ Full description
     +----------------------+----------+------------------------+
     | Secp256k1.Public_key | 33 bytes | bytes                  |
     +----------------------+----------+------------------------+
-    
-    
+
+
     P256 (tag 2)
     ============
-    
+
     +-----------------+----------+------------------------+
     | Name            | Size     | Contents               |
     +=================+==========+========================+
@@ -19272,11 +19272,11 @@ Full description
     +-----------------+----------+------------------------+
     | P256.Public_key | 33 bytes | bytes                  |
     +-----------------+----------+------------------------+
-    
-    
+
+
     Bls (tag 3)
     ===========
-    
+
     +----------------------+----------+------------------------+
     | Name                 | Size     | Contents               |
     +======================+==========+========================+
@@ -19284,14 +19284,14 @@ Full description
     +----------------------+----------+------------------------+
     | Bls12_381.Public_key | 48 bytes | bytes                  |
     +----------------------+----------+------------------------+
-    
-    
+
+
     beta.contract_id.originated (22 bytes, 8-bit tag)
     *************************************************
-    
+
     Originated (tag 1)
     ==================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -19301,11 +19301,11 @@ Full description
     +---------------+----------+------------------------+
     | padding       | 1 byte   | padding                |
     +---------------+----------+------------------------+
-    
-    
+
+
     beta.scripted.contracts
     ***********************
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19317,114 +19317,114 @@ Full description
     +-----------------------+----------+------------------------------------+
     | storage               | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     beta.entrypoint (Determined from data, 8-bit tag)
     *************************************************
-    
+
     default (tag 0)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     root (tag 1)
     ============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     do (tag 2)
     ==========
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     set_delegate (tag 3)
     ====================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     remove_delegate (tag 4)
     =======================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     deposit (tag 5)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     stake (tag 6)
     =============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     unstake (tag 7)
     ===============
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     finalize_unstake (tag 8)
     ========================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     set_delegate_parameters (tag 9)
     ===============================
-    
+
     +------+--------+------------------------+
     | Name | Size   | Contents               |
     +======+========+========================+
     | Tag  | 1 byte | unsigned 8-bit integer |
     +------+--------+------------------------+
-    
-    
+
+
     named (tag 255)
     ===============
-    
+
     +-----------------------+----------+------------------------+
     | Name                  | Size     | Contents               |
     +=======================+==========+========================+
@@ -19434,11 +19434,11 @@ Full description
     +-----------------------+----------+------------------------+
     | Unnamed field 0       | Variable | bytes                  |
     +-----------------------+----------+------------------------+
-    
-    
+
+
     X_31
     ****
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -19448,11 +19448,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | value                 | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     X_32
     ****
-    
+
     +-----------------+-----------+----------+
     | Name            | Size      | Contents |
     +=================+===========+==========+
@@ -19460,14 +19460,14 @@ Full description
     +-----------------+-----------+----------+
     | Unnamed field 1 | 100 bytes | bytes    |
     +-----------------+-----------+----------+
-    
-    
+
+
     beta.inlined.preattestation.contents (43 bytes, 8-bit tag)
     **********************************************************
-    
+
     Preattestation (tag 20)
     =======================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -19481,11 +19481,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     beta.inlined.preattestation
     ***************************
-    
+
     +------------+----------+---------------------------------------+
     | Name       | Size     | Contents                              |
     +============+==========+=======================================+
@@ -19495,11 +19495,11 @@ Full description
     +------------+----------+---------------------------------------+
     | signature  | Variable | bytes                                 |
     +------------+----------+---------------------------------------+
-    
-    
+
+
     fitness.elem
     ************
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19507,11 +19507,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | Unnamed field 0       | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     beta.block_header.alpha.full_header
     ***********************************
-    
+
     +---------------------------------------+----------+-------------------------------------+
     | Name                                  | Size     | Contents                            |
     +=======================================+==========+=====================================+
@@ -19547,14 +19547,14 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    
-    
+
+
     beta.inlined.attestation_mempool.contents (Determined from data, 8-bit tag)
     ***************************************************************************
-    
+
     Attestation (tag 21)
     ====================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -19568,11 +19568,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation_with_dal (tag 23)
     =============================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -19588,11 +19588,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | dal_attestation    | Determined from data | $Z.t                               |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     beta.inlined.attestation
     ************************
-    
+
     +------------+----------------------+--------------------------------------------+
     | Name       | Size                 | Contents                                   |
     +============+======================+============================================+
@@ -19602,14 +19602,14 @@ Full description
     +------------+----------------------+--------------------------------------------+
     | signature  | Variable             | bytes                                      |
     +------------+----------------------+--------------------------------------------+
-    
-    
+
+
     beta.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     ***********************************************************************************
-    
+
     Seed_nonce_revelation (tag 1)
     =============================
-    
+
     +-------+----------+----------------------------------+
     | Name  | Size     | Contents                         |
     +=======+==========+==================================+
@@ -19619,11 +19619,11 @@ Full description
     +-------+----------+----------------------------------+
     | nonce | 32 bytes | bytes                            |
     +-------+----------+----------------------------------+
-    
-    
+
+
     Double_attestation_evidence (tag 2)
     ===================================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19637,11 +19637,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | op2                   | Variable | $beta.inlined.attestation          |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Double_baking_evidence (tag 3)
     ==============================
-    
+
     +-----------------------+----------+--------------------------------------+
     | Name                  | Size     | Contents                             |
     +=======================+==========+======================================+
@@ -19655,11 +19655,11 @@ Full description
     +-----------------------+----------+--------------------------------------+
     | bh2                   | Variable | $beta.block_header.alpha.full_header |
     +-----------------------+----------+--------------------------------------+
-    
-    
+
+
     Activate_account (tag 4)
     ========================
-    
+
     +--------+----------+------------------------+
     | Name   | Size     | Contents               |
     +========+==========+========================+
@@ -19669,11 +19669,11 @@ Full description
     +--------+----------+------------------------+
     | secret | 20 bytes | bytes                  |
     +--------+----------+------------------------+
-    
-    
+
+
     Proposals (tag 5)
     =================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19687,11 +19687,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | proposals             | Variable | sequence of at most 20 bytes       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Ballot (tag 6)
     ==============
-    
+
     +----------+----------+----------------------------------+
     | Name     | Size     | Contents                         |
     +==========+==========+==================================+
@@ -19705,11 +19705,11 @@ Full description
     +----------+----------+----------------------------------+
     | ballot   | 1 byte   | signed 8-bit integer             |
     +----------+----------+----------------------------------+
-    
-    
+
+
     Double_preattestation_evidence (tag 7)
     ======================================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19723,11 +19723,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | op2                   | Variable | $beta.inlined.preattestation       |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Vdf_revelation (tag 8)
     ======================
-    
+
     +----------+-----------+------------------------+
     | Name     | Size      | Contents               |
     +==========+===========+========================+
@@ -19735,11 +19735,11 @@ Full description
     +----------+-----------+------------------------+
     | solution | 200 bytes | $X_32                  |
     +----------+-----------+------------------------+
-    
-    
+
+
     Drain_delegate (tag 9)
     ======================
-    
+
     +---------------+----------+------------------------+
     | Name          | Size     | Contents               |
     +===============+==========+========================+
@@ -19751,11 +19751,11 @@ Full description
     +---------------+----------+------------------------+
     | destination   | 21 bytes | $public_key_hash       |
     +---------------+----------+------------------------+
-    
-    
+
+
     Failing_noop (tag 17)
     =====================
-    
+
     +-----------------------+----------+------------------------------------+
     | Name                  | Size     | Contents                           |
     +=======================+==========+====================================+
@@ -19765,11 +19765,11 @@ Full description
     +-----------------------+----------+------------------------------------+
     | arbitrary             | Variable | bytes                              |
     +-----------------------+----------+------------------------------------+
-    
-    
+
+
     Preattestation (tag 20)
     =======================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -19783,11 +19783,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation (tag 21)
     ====================
-    
+
     +--------------------+----------+------------------------------------+
     | Name               | Size     | Contents                           |
     +====================+==========+====================================+
@@ -19801,11 +19801,11 @@ Full description
     +--------------------+----------+------------------------------------+
     | block_payload_hash | 32 bytes | bytes                              |
     +--------------------+----------+------------------------------------+
-    
-    
+
+
     Attestation_with_dal (tag 23)
     =============================
-    
+
     +--------------------+----------------------+------------------------------------+
     | Name               | Size                 | Contents                           |
     +====================+======================+====================================+
@@ -19821,11 +19821,11 @@ Full description
     +--------------------+----------------------+------------------------------------+
     | dal_attestation    | Determined from data | $Z.t                               |
     +--------------------+----------------------+------------------------------------+
-    
-    
+
+
     Reveal (tag 107)
     ================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -19843,11 +19843,11 @@ Full description
     +---------------+----------------------+------------------------+
     | public_key    | Determined from data | $public_key            |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transaction (tag 108)
     =====================
-    
+
     +----------------------------------+----------------------+-------------------------------------+
     | Name                             | Size                 | Contents                            |
     +==================================+======================+=====================================+
@@ -19871,11 +19871,11 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | parameters                       | Determined from data | $X_31                               |
     +----------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Origination (tag 109)
     =====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -19899,11 +19899,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | script                         | Determined from data | $beta.scripted.contracts            |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Delegation (tag 110)
     ====================
-    
+
     +--------------------------------+----------------------+-------------------------------------+
     | Name                           | Size                 | Contents                            |
     +================================+======================+=====================================+
@@ -19923,11 +19923,11 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Register_global_constant (tag 111)
     ==================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -19947,11 +19947,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | value                 | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Set_deposits_limit (tag 112)
     ============================
-    
+
     +-----------------------------+----------------------+-------------------------------------+
     | Name                        | Size                 | Contents                            |
     +=============================+======================+=====================================+
@@ -19971,11 +19971,11 @@ Full description
     +-----------------------------+----------------------+-------------------------------------+
     | limit                       | Determined from data | $N.t                                |
     +-----------------------------+----------------------+-------------------------------------+
-    
-    
+
+
     Increase_paid_storage (tag 113)
     ===============================
-    
+
     +---------------+----------------------+------------------------------+
     | Name          | Size                 | Contents                     |
     +===============+======================+==============================+
@@ -19995,11 +19995,11 @@ Full description
     +---------------+----------------------+------------------------------+
     | destination   | 22 bytes             | $beta.contract_id.originated |
     +---------------+----------------------+------------------------------+
-    
-    
+
+
     Update_consensus_key (tag 114)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20017,11 +20017,11 @@ Full description
     +---------------+----------------------+------------------------+
     | pk            | Determined from data | $public_key            |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Transfer_ticket (tag 158)
     =========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -20055,11 +20055,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | entrypoint            | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_originate (tag 200)
     ================================
-    
+
     +---------------------------------+----------------------+-----------------------------------------------------------+
     | Name                            | Size                 | Contents                                                  |
     +=================================+======================+===========================================================+
@@ -20089,11 +20089,11 @@ Full description
     +---------------------------------+----------------------+-----------------------------------------------------------+
     | whitelist                       | Determined from data | $X_30                                                     |
     +---------------------------------+----------------------+-----------------------------------------------------------+
-    
-    
+
+
     Smart_rollup_add_messages (tag 201)
     ===================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -20113,11 +20113,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | message               | Variable             | sequence of $X_4                   |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_cement (tag 202)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20135,11 +20135,11 @@ Full description
     +---------------+----------------------+------------------------+
     | rollup        | 20 bytes             | bytes                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_publish (tag 203)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20159,11 +20159,11 @@ Full description
     +---------------+----------------------+------------------------+
     | commitment    | 76 bytes             | $X_27                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_refute (tag 204)
     =============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20185,11 +20185,11 @@ Full description
     +---------------+----------------------+------------------------+
     | refutation    | Determined from data | $X_26                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_timeout (tag 205)
     ==============================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20209,11 +20209,11 @@ Full description
     +---------------+----------------------+------------------------+
     | stakers       | 42 bytes             | $X_20                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Smart_rollup_execute_outbox_message (tag 206)
     =============================================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -20237,11 +20237,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | output_proof          | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Smart_rollup_recover_bond (tag 207)
     ===================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20261,11 +20261,11 @@ Full description
     +---------------+----------------------+------------------------+
     | staker        | 21 bytes             | $public_key_hash       |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Dal_publish_commitment (tag 230)
     ================================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20283,11 +20283,11 @@ Full description
     +---------------+----------------------+------------------------+
     | slot_header   | 145 bytes            | $X_19                  |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Zk_rollup_origination (tag 250)
     ===============================
-    
+
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | Name                  | Size                 | Contents                                                                |
     +=======================+======================+=========================================================================+
@@ -20317,11 +20317,11 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | nb_ops                | 4 bytes              | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
-    
-    
+
+
     Zk_rollup_publish (tag 251)
     ===========================
-    
+
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
@@ -20343,11 +20343,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | op                    | Variable             | sequence of $X_10                  |
     +-----------------------+----------------------+------------------------------------+
-    
-    
+
+
     Zk_rollup_update (tag 252)
     ==========================
-    
+
     +---------------+----------------------+------------------------+
     | Name          | Size                 | Contents               |
     +===============+======================+========================+
@@ -20367,11 +20367,11 @@ Full description
     +---------------+----------------------+------------------------+
     | update        | Determined from data | $X_2                   |
     +---------------+----------------------+------------------------+
-    
-    
+
+
     Signature_prefix (tag 255)
     ==========================
-    
+
     +------------------+----------+------------------------+
     | Name             | Size     | Contents               |
     +==================+==========+========================+
@@ -20379,11 +20379,11 @@ Full description
     +------------------+----------+------------------------+
     | signature_prefix | 33 bytes | $bls_signature_prefix  |
     +------------------+----------+------------------------+
-    
-    
+
+
     next_operation
     **************
-    
+
     +-------------------------------+----------+----------------------------------------------------------------+
     | Name                          | Size     | Contents                                                       |
     +===============================+==========+================================================================+
@@ -20397,11 +20397,11 @@ Full description
     +-------------------------------+----------+----------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                          |
     +-------------------------------+----------+----------------------------------------------------------------+
-    
-    
+
+
     X_1
     ***
-    
+
     +--------------------------+----------+------------------------------------+
     | Name                     | Size     | Contents                           |
     +==========================+==========+====================================+
@@ -20411,7 +20411,7 @@ Full description
     +--------------------------+----------+------------------------------------+
     | Unnamed field 0          | Variable | sequence of $next_operation        |
     +--------------------------+----------+------------------------------------+
-    
+
     
@@ -20512,11 +20512,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | operations | Variable | sequence of $X_0 | +-----------------------+----------------------+------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -20524,11 +20524,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + block_header.shell ****************** - + +----------------------------+----------+------------------------------------+ | Name | Size | Contents | +============================+==========+====================================+ @@ -20550,11 +20550,11 @@ Full description +----------------------------+----------+------------------------------------+ | context | 32 bytes | bytes | +----------------------------+----------+------------------------------------+ - - + + X_1 *** - + +--------------------------+----------+------------------------------------+ | Name | Size | Contents | +==========================+==========+====================================+ @@ -20566,11 +20566,11 @@ Full description +--------------------------+----------+------------------------------------+ | data | Variable | bytes | +--------------------------+----------+------------------------------------+ - - + + X_2 *** - + +--------------------------+----------+------------------------------------+ | Name | Size | Contents | +==========================+==========+====================================+ @@ -20586,11 +20586,11 @@ Full description +--------------------------+----------+------------------------------------+ | error | Variable | bytes | +--------------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -20614,10 +20614,10 @@ Full description +-----------------------+----------+------------------------------------+ | branch_delayed | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - +
- + .. _POST_..--block_id--helpers--preapply--operations : @@ -20625,7 +20625,7 @@ Full description **POST ..//helpers/preapply/operations?[version=]** .. raw:: html - +
@@ -21281,7 +21281,7 @@ Full description "annots"?: [ $unistring ... ] } $next_operation: /* An operation's shell header. */ - { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + { "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "branch": $block_hash, "contents": [ $beta.operation.alpha.contents ... ], "signature"?: $Signature.V1 } @@ -21323,14 +21323,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $next_operation | +-----------------------+----------+------------------------------------+ - - + + bls_signature_prefix (33 bytes, 8-bit tag) ****************************************** - + Bls_prefix (tag 3) ================== - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -21338,14 +21338,14 @@ Full description +-----------------+----------+------------------------+ | Unnamed field 0 | 32 bytes | bytes | +-----------------+----------+------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -21353,11 +21353,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -21365,11 +21365,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -21377,11 +21377,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -21389,23 +21389,23 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_2 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -21413,11 +21413,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_3 *** - + +-----------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================+ @@ -21429,11 +21429,11 @@ Full description +-----------------------+----------+-------------------------------------+ | exit_validity | 1 byte | boolean (0 for false, 255 for true) | +-----------------------+----------+-------------------------------------+ - - + + X_1 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -21441,11 +21441,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_3 | +-----------------+----------------------+----------+ - - + + X_6 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -21455,11 +21455,11 @@ Full description +-----------------------+----------+------------------------------------+ | fee | 32 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_4 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -21467,11 +21467,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_6 | +-----------------+----------------------+----------+ - - + + X_7 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -21479,11 +21479,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -21501,23 +21501,23 @@ Full description +-----------------------+----------------------+------------------------------------+ | proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_10 **** - + +--------+----------------------+----------+ | Name | Size | Contents | +========+======================+==========+ @@ -21525,11 +21525,11 @@ Full description +--------+----------------------+----------+ | amount | Determined from data | $Z.t | +--------+----------------------+----------+ - - + + X_9 *** - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -21545,11 +21545,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | payload | Variable | sequence of bytes | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer): ******************************************************************* - + +-------------+--------------------------------+ | Case number | Encoded string | +=============+================================+ @@ -21869,14 +21869,14 @@ Full description +-------------+--------------------------------+ | 157 | Ticket | +-------------+--------------------------------+ - - + + micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag) ************************************************************************ - + Int (tag 0) =========== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -21884,11 +21884,11 @@ Full description +------+----------------------+------------------------+ | int | Determined from data | $Z.t | +------+----------------------+------------------------+ - - + + String (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -21898,11 +21898,11 @@ Full description +-----------------------+----------+------------------------------------+ | string | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Sequence (tag 2) ================ - + +-----------------------+----------+-----------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================================+ @@ -21912,11 +21912,11 @@ Full description +-----------------------+----------+-----------------------------------------------------+ | Unnamed field 0 | Variable | sequence of $micheline.beta.michelson_v1.expression | +-----------------------+----------+-----------------------------------------------------+ - - + + Prim__no_args__no_annots (tag 3) ================================ - + +------+--------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+========+===================================================================================+ @@ -21924,11 +21924,11 @@ Full description +------+--------+-----------------------------------------------------------------------------------+ | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) | +------+--------+-----------------------------------------------------------------------------------+ - - + + Prim__no_args__some_annots (tag 4) ================================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -21940,11 +21940,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__no_annots (tag 5) ============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -21954,11 +21954,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__some_annots (tag 6) ================================ - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -21972,11 +21972,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__no_annots (tag 7) =============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -21988,11 +21988,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg2 | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__some_annots (tag 8) ================================= - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -22008,11 +22008,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__generic (tag 9) ===================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -22028,11 +22028,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Bytes (tag 10) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22042,14 +22042,14 @@ Full description +-----------------------+----------+------------------------------------+ | bytes | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.contract_id (22 bytes, 8-bit tag) ************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -22057,11 +22057,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -22071,24 +22071,24 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + X_13 (Determined from data, 8-bit tag) ************************************** - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +----------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==========+======================+=========================================+ @@ -22100,11 +22100,11 @@ Full description +----------+----------------------+-----------------------------------------+ | ticketer | 22 bytes | $beta.contract_id | +----------+----------------------+-----------------------------------------+ - - + + X_8 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -22112,44 +22112,44 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_13 | +-----------------+----------------------+----------+ - - + + X_16 (1 byte, 8-bit tag) ************************ - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Fee (tag 2) =========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_14 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -22157,11 +22157,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | 1 byte | $X_16 | +-----------------+----------------------+----------+ - - + + X_17 **** - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -22171,11 +22171,11 @@ Full description +------------------+----------+------------------------+ | commitment_proof | 96 bytes | bytes | +------------------+----------+------------------------+ - - + + X_18 **** - + +-------+----------+------------------+ | Name | Size | Contents | +=======+==========+==================+ @@ -22183,11 +22183,11 @@ Full description +-------+----------+------------------+ | bob | 21 bytes | $public_key_hash | +-------+----------+------------------+ - - + + X_19 **** - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -22197,14 +22197,14 @@ Full description +-----------------+---------+----------------------------------+ | page_index | 2 bytes | signed 16-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + X_20 (Determined from data, 8-bit tag) ************************************** - + raw data proof (tag 0) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22214,21 +22214,21 @@ Full description +-----------------------+----------+------------------------------------+ | raw_data | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + metadata proof (tag 1) ====================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + dal page proof (tag 2) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22240,24 +22240,24 @@ Full description +-----------------------+----------+------------------------------------+ | dal_proof | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + dal parameters proof (tag 3) ============================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_21 (Determined from data, 8-bit tag) ************************************** - + inbox proof (tag 0) =================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -22271,11 +22271,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | serialized_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + reveal proof (tag 1) ==================== - + +--------------+----------------------+------------------------+ | Name | Size | Contents | +==============+======================+========================+ @@ -22283,21 +22283,21 @@ Full description +--------------+----------------------+------------------------+ | reveal_proof | Determined from data | $X_20 | +--------------+----------------------+------------------------+ - - + + first input (tag 2) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_22 **** - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -22307,14 +22307,14 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | tick | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + X_23 (Determined from data, 8-bit tag) ************************************** - + Dissection (tag 0) ================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22324,11 +22324,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_22 | +-----------------------+----------+------------------------------------+ - - + + Proof (tag 1) ============= - + +-----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +===================================+======================+=====================================+ @@ -22342,14 +22342,14 @@ Full description +-----------------------------------+----------------------+-------------------------------------+ | input_proof | Determined from data | $X_21 | +-----------------------------------+----------------------+-------------------------------------+ - - + + X_24 (Determined from data, 8-bit tag) ************************************** - + Start (tag 0) ============= - + +--------------------------+----------+------------------------+ | Name | Size | Contents | +==========================+==========+========================+ @@ -22359,11 +22359,11 @@ Full description +--------------------------+----------+------------------------+ | opponent_commitment_hash | 32 bytes | bytes | +--------------------------+----------+------------------------+ - - + + Move (tag 1) ============ - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -22373,11 +22373,11 @@ Full description +--------+----------------------+------------------------+ | step | Determined from data | $X_23 | +--------+----------------------+------------------------+ - - + + X_25 **** - + +------------------+----------+----------------------------------+ | Name | Size | Contents | +==================+==========+==================================+ @@ -22389,11 +22389,11 @@ Full description +------------------+----------+----------------------------------+ | number_of_ticks | 8 bytes | signed 64-bit big-endian integer | +------------------+----------+----------------------------------+ - - + + X_27 (Enumeration: unsigned 8-bit integer): ******************************************* - + +-------------+----------------+ | Case number | Encoded string | +=============+================+ @@ -22403,11 +22403,11 @@ Full description +-------------+----------------+ | 2 | riscv | +-------------+----------------+ - - + + X_28 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22415,14 +22415,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $public_key_hash | +-----------------------+----------+------------------------------------+ - - + + public_key (Determined from data, 8-bit tag) ******************************************** - + Ed25519 (tag 0) =============== - + +--------------------+----------+------------------------+ | Name | Size | Contents | +====================+==========+========================+ @@ -22430,11 +22430,11 @@ Full description +--------------------+----------+------------------------+ | Ed25519.Public_key | 32 bytes | bytes | +--------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -22442,11 +22442,11 @@ Full description +----------------------+----------+------------------------+ | Secp256k1.Public_key | 33 bytes | bytes | +----------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -22454,11 +22454,11 @@ Full description +-----------------+----------+------------------------+ | P256.Public_key | 33 bytes | bytes | +-----------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -22466,14 +22466,14 @@ Full description +----------------------+----------+------------------------+ | Bls12_381.Public_key | 48 bytes | bytes | +----------------------+----------+------------------------+ - - + + beta.contract_id.originated (22 bytes, 8-bit tag) ************************************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -22483,11 +22483,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + beta.scripted.contracts *********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22499,114 +22499,114 @@ Full description +-----------------------+----------+------------------------------------+ | storage | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.entrypoint (Determined from data, 8-bit tag) ************************************************* - + default (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + root (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + do (tag 2) ========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate (tag 3) ==================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + remove_delegate (tag 4) ======================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + deposit (tag 5) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + stake (tag 6) ============= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + unstake (tag 7) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + finalize_unstake (tag 8) ======================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate_parameters (tag 9) =============================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + named (tag 255) =============== - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -22616,11 +22616,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + X_29 **** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -22630,11 +22630,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + X_30 **** - + +-----------------+-----------+----------+ | Name | Size | Contents | +=================+===========+==========+ @@ -22642,14 +22642,14 @@ Full description +-----------------+-----------+----------+ | Unnamed field 1 | 100 bytes | bytes | +-----------------+-----------+----------+ - - + + beta.inlined.preattestation.contents (43 bytes, 8-bit tag) ********************************************************** - + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -22663,11 +22663,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + beta.inlined.preattestation *************************** - + +------------+----------+---------------------------------------+ | Name | Size | Contents | +============+==========+=======================================+ @@ -22677,11 +22677,11 @@ Full description +------------+----------+---------------------------------------+ | signature | Variable | bytes | +------------+----------+---------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22689,104 +22689,104 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.per_block_votes (1 byte, 8-bit tag) **************************************** - + case_0 (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_1 (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_2 (tag 2) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_4 (tag 4) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_5 (tag 5) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_6 (tag 6) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_8 (tag 8) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_9 (tag 9) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_10 (tag 10) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + beta.block_header.alpha.full_header *********************************** - + +---------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================================+==========+=====================================+ @@ -22822,14 +22822,14 @@ Full description +---------------------------------------+----------+-------------------------------------+ | signature | Variable | bytes | +---------------------------------------+----------+-------------------------------------+ - - + + beta.inlined.attestation_mempool.contents (Determined from data, 8-bit tag) *************************************************************************** - + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -22843,11 +22843,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -22863,11 +22863,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + beta.inlined.attestation ************************ - + +------------+----------------------+--------------------------------------------+ | Name | Size | Contents | +============+======================+============================================+ @@ -22877,14 +22877,14 @@ Full description +------------+----------------------+--------------------------------------------+ | signature | Variable | bytes | +------------+----------------------+--------------------------------------------+ - - + + beta.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag) *********************************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -22894,11 +22894,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22912,11 +22912,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -22930,11 +22930,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -22944,11 +22944,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22962,11 +22962,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -22980,11 +22980,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -22998,11 +22998,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -23010,11 +23010,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_30 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -23026,11 +23026,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -23040,11 +23040,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -23058,11 +23058,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -23076,11 +23076,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -23096,11 +23096,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23118,11 +23118,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -23146,11 +23146,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_29 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -23174,11 +23174,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -23198,11 +23198,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -23222,11 +23222,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -23246,11 +23246,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -23270,11 +23270,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23292,11 +23292,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -23330,11 +23330,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -23364,11 +23364,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_28 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -23388,11 +23388,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_2 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23410,11 +23410,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23434,11 +23434,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23460,11 +23460,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_24 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23484,11 +23484,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -23512,11 +23512,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23536,11 +23536,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23558,11 +23558,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_17 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -23592,11 +23592,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -23618,11 +23618,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_8 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -23642,11 +23642,11 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_0 | +---------------+----------------------+------------------------+ - - + + Signature_prefix (tag 255) ========================== - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -23654,11 +23654,11 @@ Full description +------------------+----------+------------------------+ | signature_prefix | 33 bytes | $bls_signature_prefix | +------------------+----------+------------------------+ - - + + next_operation ************** - + +-------------------------------+----------+----------------------------------------------------------------+ | Name | Size | Contents | +===============================+==========+================================================================+ @@ -23672,7 +23672,7 @@ Full description +-------------------------------+----------+----------------------------------------------------------------+ | signature_suffix | 64 bytes | bytes | +-------------------------------+----------+----------------------------------------------------------------+ - +
@@ -26309,14 +26309,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -26324,11 +26324,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -26336,11 +26336,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -26348,11 +26348,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -26360,23 +26360,23 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_3 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -26384,11 +26384,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_4 *** - + +-----------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================+ @@ -26400,11 +26400,11 @@ Full description +-----------------------+----------+-------------------------------------+ | exit_validity | 1 byte | boolean (0 for false, 255 for true) | +-----------------------+----------+-------------------------------------+ - - + + X_2 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -26412,11 +26412,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_4 | +-----------------+----------------------+----------+ - - + + X_7 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -26426,11 +26426,11 @@ Full description +-----------------------+----------+------------------------------------+ | fee | 32 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_5 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -26438,11 +26438,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_7 | +-----------------+----------------------+----------+ - - + + X_8 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -26450,11 +26450,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + + X_1 *** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -26472,23 +26472,23 @@ Full description +-----------------------+----------------------+------------------------------------+ | proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_11 **** - + +--------+----------------------+----------+ | Name | Size | Contents | +========+======================+==========+ @@ -26496,11 +26496,11 @@ Full description +--------+----------------------+----------+ | amount | Determined from data | $Z.t | +--------+----------------------+----------+ - - + + X_10 **** - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -26516,11 +26516,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | payload | Variable | sequence of bytes | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer): ******************************************************************* - + +-------------+--------------------------------+ | Case number | Encoded string | +=============+================================+ @@ -26840,14 +26840,14 @@ Full description +-------------+--------------------------------+ | 157 | Ticket | +-------------+--------------------------------+ - - + + micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag) ************************************************************************ - + Int (tag 0) =========== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -26855,11 +26855,11 @@ Full description +------+----------------------+------------------------+ | int | Determined from data | $Z.t | +------+----------------------+------------------------+ - - + + String (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -26869,11 +26869,11 @@ Full description +-----------------------+----------+------------------------------------+ | string | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Sequence (tag 2) ================ - + +-----------------------+----------+-----------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================================+ @@ -26883,11 +26883,11 @@ Full description +-----------------------+----------+-----------------------------------------------------+ | Unnamed field 0 | Variable | sequence of $micheline.beta.michelson_v1.expression | +-----------------------+----------+-----------------------------------------------------+ - - + + Prim__no_args__no_annots (tag 3) ================================ - + +------+--------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+========+===================================================================================+ @@ -26895,11 +26895,11 @@ Full description +------+--------+-----------------------------------------------------------------------------------+ | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) | +------+--------+-----------------------------------------------------------------------------------+ - - + + Prim__no_args__some_annots (tag 4) ================================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -26911,11 +26911,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__no_annots (tag 5) ============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -26925,11 +26925,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__some_annots (tag 6) ================================ - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -26943,11 +26943,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__no_annots (tag 7) =============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -26959,11 +26959,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg2 | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__some_annots (tag 8) ================================= - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -26979,11 +26979,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__generic (tag 9) ===================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -26999,11 +26999,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Bytes (tag 10) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27013,14 +27013,14 @@ Full description +-----------------------+----------+------------------------------------+ | bytes | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.contract_id (22 bytes, 8-bit tag) ************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -27028,11 +27028,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -27042,24 +27042,24 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + X_14 (Determined from data, 8-bit tag) ************************************** - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +----------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==========+======================+=========================================+ @@ -27071,11 +27071,11 @@ Full description +----------+----------------------+-----------------------------------------+ | ticketer | 22 bytes | $beta.contract_id | +----------+----------------------+-----------------------------------------+ - - + + X_9 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -27083,44 +27083,44 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_14 | +-----------------+----------------------+----------+ - - + + X_17 (1 byte, 8-bit tag) ************************ - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Fee (tag 2) =========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_15 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -27128,11 +27128,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | 1 byte | $X_17 | +-----------------+----------------------+----------+ - - + + X_18 **** - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -27142,11 +27142,11 @@ Full description +------------------+----------+------------------------+ | commitment_proof | 96 bytes | bytes | +------------------+----------+------------------------+ - - + + X_19 **** - + +-------+----------+------------------+ | Name | Size | Contents | +=======+==========+==================+ @@ -27154,11 +27154,11 @@ Full description +-------+----------+------------------+ | bob | 21 bytes | $public_key_hash | +-------+----------+------------------+ - - + + X_20 **** - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -27168,14 +27168,14 @@ Full description +-----------------+---------+----------------------------------+ | page_index | 2 bytes | signed 16-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + X_21 (Determined from data, 8-bit tag) ************************************** - + raw data proof (tag 0) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27185,21 +27185,21 @@ Full description +-----------------------+----------+------------------------------------+ | raw_data | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + metadata proof (tag 1) ====================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + dal page proof (tag 2) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27211,24 +27211,24 @@ Full description +-----------------------+----------+------------------------------------+ | dal_proof | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + dal parameters proof (tag 3) ============================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_22 (Determined from data, 8-bit tag) ************************************** - + inbox proof (tag 0) =================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -27242,11 +27242,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | serialized_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + reveal proof (tag 1) ==================== - + +--------------+----------------------+------------------------+ | Name | Size | Contents | +==============+======================+========================+ @@ -27254,21 +27254,21 @@ Full description +--------------+----------------------+------------------------+ | reveal_proof | Determined from data | $X_21 | +--------------+----------------------+------------------------+ - - + + first input (tag 2) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_23 **** - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -27278,14 +27278,14 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | tick | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + X_24 (Determined from data, 8-bit tag) ************************************** - + Dissection (tag 0) ================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27295,11 +27295,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_23 | +-----------------------+----------+------------------------------------+ - - + + Proof (tag 1) ============= - + +-----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +===================================+======================+=====================================+ @@ -27313,14 +27313,14 @@ Full description +-----------------------------------+----------------------+-------------------------------------+ | input_proof | Determined from data | $X_22 | +-----------------------------------+----------------------+-------------------------------------+ - - + + X_25 (Determined from data, 8-bit tag) ************************************** - + Start (tag 0) ============= - + +--------------------------+----------+------------------------+ | Name | Size | Contents | +==========================+==========+========================+ @@ -27330,11 +27330,11 @@ Full description +--------------------------+----------+------------------------+ | opponent_commitment_hash | 32 bytes | bytes | +--------------------------+----------+------------------------+ - - + + Move (tag 1) ============ - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -27344,11 +27344,11 @@ Full description +--------+----------------------+------------------------+ | step | Determined from data | $X_24 | +--------+----------------------+------------------------+ - - + + X_26 **** - + +------------------+----------+----------------------------------+ | Name | Size | Contents | +==================+==========+==================================+ @@ -27360,11 +27360,11 @@ Full description +------------------+----------+----------------------------------+ | number_of_ticks | 8 bytes | signed 64-bit big-endian integer | +------------------+----------+----------------------------------+ - - + + X_28 (Enumeration: unsigned 8-bit integer): ******************************************* - + +-------------+----------------+ | Case number | Encoded string | +=============+================+ @@ -27374,11 +27374,11 @@ Full description +-------------+----------------+ | 2 | riscv | +-------------+----------------+ - - + + X_29 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27386,14 +27386,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $public_key_hash | +-----------------------+----------+------------------------------------+ - - + + public_key (Determined from data, 8-bit tag) ******************************************** - + Ed25519 (tag 0) =============== - + +--------------------+----------+------------------------+ | Name | Size | Contents | +====================+==========+========================+ @@ -27401,11 +27401,11 @@ Full description +--------------------+----------+------------------------+ | Ed25519.Public_key | 32 bytes | bytes | +--------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -27413,11 +27413,11 @@ Full description +----------------------+----------+------------------------+ | Secp256k1.Public_key | 33 bytes | bytes | +----------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -27425,11 +27425,11 @@ Full description +-----------------+----------+------------------------+ | P256.Public_key | 33 bytes | bytes | +-----------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -27437,14 +27437,14 @@ Full description +----------------------+----------+------------------------+ | Bls12_381.Public_key | 48 bytes | bytes | +----------------------+----------+------------------------+ - - + + beta.contract_id.originated (22 bytes, 8-bit tag) ************************************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -27454,11 +27454,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + beta.scripted.contracts *********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27470,114 +27470,114 @@ Full description +-----------------------+----------+------------------------------------+ | storage | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.entrypoint (Determined from data, 8-bit tag) ************************************************* - + default (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + root (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + do (tag 2) ========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate (tag 3) ==================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + remove_delegate (tag 4) ======================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + deposit (tag 5) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + stake (tag 6) ============= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + unstake (tag 7) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + finalize_unstake (tag 8) ======================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate_parameters (tag 9) =============================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + named (tag 255) =============== - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -27587,11 +27587,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + X_30 **** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -27601,11 +27601,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + X_31 **** - + +-----------------+-----------+----------+ | Name | Size | Contents | +=================+===========+==========+ @@ -27613,14 +27613,14 @@ Full description +-----------------+-----------+----------+ | Unnamed field 1 | 100 bytes | bytes | +-----------------+-----------+----------+ - - + + beta.inlined.preattestation.contents (43 bytes, 8-bit tag) ********************************************************** - + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -27634,11 +27634,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + beta.inlined.preattestation *************************** - + +------------+----------+---------------------------------------+ | Name | Size | Contents | +============+==========+=======================================+ @@ -27648,11 +27648,11 @@ Full description +------------+----------+---------------------------------------+ | signature | Variable | bytes | +------------+----------+---------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27660,104 +27660,104 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.per_block_votes (1 byte, 8-bit tag) **************************************** - + case_0 (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_1 (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_2 (tag 2) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_4 (tag 4) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_5 (tag 5) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_6 (tag 6) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_8 (tag 8) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_9 (tag 9) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_10 (tag 10) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + beta.block_header.alpha.full_header *********************************** - + +---------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================================+==========+=====================================+ @@ -27793,14 +27793,14 @@ Full description +---------------------------------------+----------+-------------------------------------+ | signature | Variable | bytes | +---------------------------------------+----------+-------------------------------------+ - - + + beta.inlined.attestation_mempool.contents (Determined from data, 8-bit tag) *************************************************************************** - + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -27814,11 +27814,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -27834,11 +27834,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + beta.inlined.attestation ************************ - + +------------+----------------------+--------------------------------------------+ | Name | Size | Contents | +============+======================+============================================+ @@ -27848,14 +27848,14 @@ Full description +------------+----------------------+--------------------------------------------+ | signature | Variable | bytes | +------------+----------------------+--------------------------------------------+ - - + + beta.operation.alpha.contents (Determined from data, 8-bit tag) *************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -27865,11 +27865,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27883,11 +27883,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -27901,11 +27901,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -27915,11 +27915,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27933,11 +27933,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -27951,11 +27951,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -27969,11 +27969,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -27981,11 +27981,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_31 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -27997,11 +27997,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -28011,11 +28011,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -28029,11 +28029,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -28047,11 +28047,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -28067,11 +28067,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28089,11 +28089,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -28117,11 +28117,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_30 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -28145,11 +28145,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -28169,11 +28169,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -28193,11 +28193,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -28217,11 +28217,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -28241,11 +28241,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28263,11 +28263,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -28301,11 +28301,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -28335,11 +28335,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_29 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -28359,11 +28359,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_3 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28381,11 +28381,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28405,11 +28405,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_26 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28431,11 +28431,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28455,11 +28455,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_19 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -28483,11 +28483,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28507,11 +28507,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28529,11 +28529,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -28563,11 +28563,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -28589,11 +28589,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_9 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -28613,14 +28613,14 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_1 | +---------------+----------------------+------------------------+ - - + + beta.staker (Determined from data, 8-bit tag) ********************************************* - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -28630,11 +28630,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -28642,14 +28642,14 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + beta.bond_id (21 bytes, 8-bit tag) ********************************** - + Smart_rollup_bond_id (tag 1) ============================ - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -28657,14 +28657,14 @@ Full description +--------------+----------+------------------------+ | smart_rollup | 20 bytes | bytes | +--------------+----------+------------------------+ - - + + beta.frozen_staker (Determined from data, 8-bit tag) **************************************************** - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -28674,11 +28674,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -28686,11 +28686,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Baker (tag 2) ============= - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -28698,11 +28698,11 @@ Full description +-----------------+----------+------------------------+ | baker_own_stake | 21 bytes | $public_key_hash | +-----------------+----------+------------------------+ - - + + Baker_edge (tag 3) ================== - + +------------+----------+------------------------+ | Name | Size | Contents | +============+==========+========================+ @@ -28710,14 +28710,14 @@ Full description +------------+----------+------------------------+ | baker_edge | 21 bytes | $public_key_hash | +------------+----------+------------------------+ - - + + X_42 (Determined from data, 8-bit tag) ************************************** - + Contract (tag 0) ================ - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -28727,11 +28727,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Block_fees (tag 2) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28739,11 +28739,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Deposits (tag 4) ================ - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -28753,11 +28753,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Nonce_revelation_rewards (tag 5) ================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28765,11 +28765,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Attesting_rewards (tag 7) ========================= - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28777,11 +28777,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_rewards (tag 8) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28789,11 +28789,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_bonuses (tag 9) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28801,11 +28801,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Storage_fees (tag 11) ===================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28813,11 +28813,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Double_signing_punishments (tag 12) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28825,11 +28825,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Lost_attesting_rewards (tag 13) =============================== - + +---------------+----------+-------------------------------------+ | Name | Size | Contents | +===============+==========+=====================================+ @@ -28843,11 +28843,11 @@ Full description +---------------+----------+-------------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +---------------+----------+-------------------------------------+ - - + + Liquidity_baking_subsidies (tag 14) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28855,11 +28855,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Burned (tag 15) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28867,11 +28867,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Commitments (tag 16) ==================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -28881,11 +28881,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Bootstrap (tag 17) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28893,11 +28893,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Invoice (tag 18) ================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28905,11 +28905,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Initial_commitments (tag 19) ============================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28917,11 +28917,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Minted (tag 20) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28929,11 +28929,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Frozen_bonds (tag 21) ===================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -28945,11 +28945,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Smart_rollup_refutation_punishments (tag 24) ============================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28957,11 +28957,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Smart_rollup_refutation_rewards (tag 25) ======================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -28969,11 +28969,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Unstaked_deposits (tag 26) ========================== - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -28985,11 +28985,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Staking_delegator_numerator (tag 27) ==================================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -28999,11 +28999,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Staking_delegate_denominator (tag 28) ===================================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -29013,54 +29013,54 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + X_43 (Determined from data, 8-bit tag) ************************************** - + Block_application (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Protocol_migration (tag 1) ========================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Subsidy (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Simulation (tag 3) ================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Delayed_operation (tag 4) ========================= - + +------------------------+----------+------------------------+ | Name | Size | Contents | +========================+==========+========================+ @@ -29068,11 +29068,11 @@ Full description +------------------------+----------+------------------------+ | delayed_operation_hash | 32 bytes | bytes | +------------------------+----------+------------------------+ - - + + X_41 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -29080,11 +29080,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_43 | +-----------------+----------------------+----------+ - - + + X_44 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29092,14 +29092,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag) **************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -29113,11 +29113,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29127,21 +29127,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -29159,14 +29159,14 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + beta.transaction_destination (22 bytes, 8-bit tag) ************************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -29174,11 +29174,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -29188,11 +29188,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + Smart_rollup (tag 3) ==================== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -29202,11 +29202,11 @@ Full description +----------------------+----------+------------------------+ | padding | 1 byte | padding | +----------------------+----------+------------------------+ - - + + Zk_rollup (tag 4) ================= - + +----------------+----------+------------------------+ | Name | Size | Contents | +================+==========+========================+ @@ -29216,14 +29216,14 @@ Full description +----------------+----------+------------------------+ | padding | 1 byte | padding | +----------------+----------+------------------------+ - - + + beta.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag) ************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -29231,11 +29231,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29245,21 +29245,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -29271,14 +29271,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -29290,11 +29290,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29304,21 +29304,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -29334,11 +29334,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + sapling.transaction.ciphertext ****************************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29356,11 +29356,11 @@ Full description +-----------------------+----------+------------------------------------+ | nonce_out | 24 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_66 **** - + +-----------------+----------------------+---------------------------------+ | Name | Size | Contents | +=================+======================+=================================+ @@ -29368,11 +29368,11 @@ Full description +-----------------+----------------------+---------------------------------+ | Unnamed field 1 | Determined from data | $sapling.transaction.ciphertext | +-----------------+----------------------+---------------------------------+ - - + + X_65 **** - + +-----------------------------+----------+------------------------------------+ | Name | Size | Contents | +=============================+==========+====================================+ @@ -29384,14 +29384,14 @@ Full description +-----------------------------+----------+------------------------------------+ | nullifiers | Variable | sequence of bytes | +-----------------------------+----------+------------------------------------+ - - + + X_71 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -29399,21 +29399,21 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_65 | +---------+----------------------+------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -29423,11 +29423,11 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_65 | +---------+----------------------+------------------------+ - - + + alloc (tag 3) ============= - + +-----------+----------------------+------------------------------------+ | Name | Size | Contents | +===========+======================+====================================+ @@ -29437,11 +29437,11 @@ Full description +-----------+----------------------+------------------------------------+ | memo_size | 2 bytes | unsigned 16-bit big-endian integer | +-----------+----------------------+------------------------------------+ - - + + X_72 **** - + +-----------------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=============================+======================+=========================================+ @@ -29453,14 +29453,14 @@ Full description +-----------------------------+----------------------+-----------------------------------------+ | value | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------------+----------------------+-----------------------------------------+ - - + + X_83 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29470,21 +29470,21 @@ Full description +-----------------------+----------+------------------------------------+ | updates | Variable | sequence of $X_72 | +-----------------------+----------+------------------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -29496,11 +29496,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_72 | +-----------------------+----------------------+------------------------------------+ - - + + alloc (tag 3) ============= - + +-----------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================+ @@ -29514,14 +29514,14 @@ Full description +-----------------------+----------------------+-----------------------------------------+ | value_type | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------+----------------------+-----------------------------------------+ - - + + X_84 (Determined from data, 8-bit tag) ************************************** - + big_map (tag 0) =============== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -29531,11 +29531,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_83 | +------+----------------------+------------------------+ - - + + sapling_state (tag 1) ===================== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -29545,11 +29545,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_71 | +------+----------------------+------------------------+ - - + + beta.lazy_storage_diff ********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29557,14 +29557,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_84 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -29588,11 +29588,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29602,21 +29602,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -29644,11 +29644,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + X_111 ***** - + +--------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==============+======================+=========================================+ @@ -29658,11 +29658,11 @@ Full description +--------------+----------------------+-----------------------------------------+ | content | Determined from data | $micheline.beta.michelson_v1.expression | +--------------+----------------------+-----------------------------------------+ - - + + X_114 ***** - + +---------+----------------------+-------------------------------+ | Name | Size | Contents | +=========+======================+===============================+ @@ -29670,11 +29670,11 @@ Full description +---------+----------------------+-------------------------------+ | amount | Determined from data | $Z.t | +---------+----------------------+-------------------------------+ - - + + X_110 ***** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -29684,14 +29684,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_114 | +-----------------------+----------------------+------------------------------------+ - - + + X_144 (Determined from data, 8-bit tag) *************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -29725,11 +29725,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -29741,14 +29741,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_receipt | Variable | sequence of $X_110 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -29756,11 +29756,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_144 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29770,21 +29770,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -29796,14 +29796,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_144 | +------------------------------+----------------------+-------------------------------------+ - - + + beta.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag) ************************************************************************************ - + transaction (tag 1) =================== - + +----------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +==================================+======================+=============================================================+ @@ -29823,11 +29823,11 @@ Full description +----------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.transaction | +----------------------------------+----------------------+-------------------------------------------------------------+ - - + + origination (tag 2) =================== - + +--------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+=============================================================+ @@ -29847,11 +29847,11 @@ Full description +--------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.origination | +--------------------------------+----------------------+-------------------------------------------------------------+ - - + + delegation (tag 3) ================== - + +--------------------------------+----------------------+------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+============================================================+ @@ -29867,11 +29867,11 @@ Full description +--------------------------------+----------------------+------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.delegation | +--------------------------------+----------------------+------------------------------------------------------------+ - - + + event (tag 4) ============= - + +-------------------------------+----------------------+-------------------------------------------------------+ | Name | Size | Contents | +===============================+======================+=======================================================+ @@ -29893,11 +29893,11 @@ Full description +-------------------------------+----------------------+-------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.event | +-------------------------------+----------------------+-------------------------------------------------------+ - - + + X_40 **** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -29911,14 +29911,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag) ***************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -29932,11 +29932,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -29946,21 +29946,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -29978,11 +29978,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_186 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -29996,14 +29996,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag) ********************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -30019,11 +30019,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30033,21 +30033,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30067,11 +30067,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_329 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30085,14 +30085,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_475 (54 bytes, 8-bit tag) *************************** - + v0 (tag 0) ========== - + +------------+----------+----------------------------------+ | Name | Size | Contents | +============+==========+==================================+ @@ -30104,14 +30104,14 @@ Full description +------------+----------+----------------------------------+ | commitment | 48 bytes | bytes | +------------+----------+----------------------------------+ - - + + beta.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -30121,11 +30121,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30135,21 +30135,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -30163,11 +30163,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + X_470 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30181,14 +30181,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag) ************************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -30200,11 +30200,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30214,21 +30214,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30244,11 +30244,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_606 ***** - + +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==================================================================+ @@ -30262,24 +30262,24 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ - - + + X_760 (Determined from data, 8-bit tag) *************************************** - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +-----------+----------------------+------------------------+ | Name | Size | Contents | +===========+======================+========================+ @@ -30287,14 +30287,14 @@ Full description +-----------+----------------------+------------------------+ | whitelist | Determined from data | $X_29 | +-----------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag) *********************************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30316,11 +30316,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30330,21 +30330,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30370,11 +30370,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_746 ***** - + +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+============================================================================+ @@ -30388,37 +30388,37 @@ Full description +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ - - + + X_906 (1 byte, 8-bit tag) ************************* - + Conflict_resolved (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Timeout (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_907 (Determined from data, 8-bit tag) *************************************** - + Loser (tag 0) ============= - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -30428,34 +30428,34 @@ Full description +--------+----------+------------------------+ | player | 21 bytes | $public_key_hash | +--------+----------+------------------------+ - - + + Draw (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_908 (Determined from data, 8-bit tag) *************************************** - + Ongoing (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Ended (tag 1) ============= - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -30463,14 +30463,14 @@ Full description +--------+----------------------+------------------------+ | result | Determined from data | $X_907 | +--------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -30484,11 +30484,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30498,21 +30498,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30530,11 +30530,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_901 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30548,14 +30548,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -30571,11 +30571,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30585,21 +30585,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30619,11 +30619,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1200 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30637,14 +30637,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +-------------------+----------------------+----------------------------------+ | Name | Size | Contents | +===================+======================+==================================+ @@ -30656,11 +30656,11 @@ Full description +-------------------+----------------------+----------------------------------+ | commitment_hash | 32 bytes | bytes | +-------------------+----------------------+----------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30670,21 +30670,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -30700,11 +30700,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | commitment_hash | 32 bytes | bytes | +------------------------------+----------------------+-------------------------------------+ - - + + X_1340 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30718,11 +30718,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_1475 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30736,14 +30736,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -30761,11 +30761,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30775,21 +30775,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30811,11 +30811,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1611 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30829,14 +30829,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag) *************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -30854,11 +30854,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30868,21 +30868,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30904,11 +30904,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1751 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -30922,14 +30922,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag) ************************************************************************************************ - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -30945,11 +30945,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -30959,21 +30959,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -30993,11 +30993,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_2309 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -31011,11 +31011,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2449 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -31029,11 +31029,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2589 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -31047,14 +31047,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2809 (Determined from data, 8-bit tag) **************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -31088,11 +31088,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -31104,14 +31104,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_updates | Variable | sequence of $X_110 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag) *********************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -31119,11 +31119,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_2809 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -31133,21 +31133,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -31159,11 +31159,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_2809 | +------------------------------+----------------------+-------------------------------------+ - - + + X_2770 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -31177,11 +31177,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_3108 ****** - + +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=========================================================================+ @@ -31195,11 +31195,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | consensus_key | 21 bytes | $public_key_hash | +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ - - + + X_3120 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -31209,11 +31209,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | allocated_destination_contract | 1 byte | boolean (0 for false, 255 for true) | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation_metadata.alpha.balance_updates ********************************************* - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -31221,11 +31221,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_41 | +-----------------------+----------+------------------------------------+ - - + + X_3128 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -31237,14 +31237,14 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag) ************************************************************************************ - + Seed_nonce_revelation (tag 1) ============================= - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -31256,11 +31256,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -31276,11 +31276,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3128 | +-----------------------+----------------------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------------------+--------------------------------------+ | Name | Size | Contents | +=======================+======================+======================================+ @@ -31296,11 +31296,11 @@ Full description +-----------------------+----------------------+--------------------------------------+ | metadata | Determined from data | $X_3128 | +-----------------------+----------------------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -31312,11 +31312,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -31330,11 +31330,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -31348,11 +31348,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -31368,11 +31368,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3128 | +-----------------------+----------------------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -31382,11 +31382,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31400,11 +31400,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_3120 | +---------------+----------------------+------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -31420,11 +31420,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3108 | +--------------------+----------------------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -31440,11 +31440,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3108 | +--------------------+----------------------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -31462,11 +31462,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3108 | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31486,11 +31486,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1475 | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -31516,11 +31516,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2770 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -31546,11 +31546,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2589 | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -31572,11 +31572,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2449 | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -31598,11 +31598,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_2309 | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -31624,11 +31624,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_1475 | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -31650,11 +31650,11 @@ Full description +---------------+----------------------+------------------------------+ | metadata | Determined from data | $X_606 | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31674,11 +31674,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1475 | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -31714,11 +31714,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1751 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -31750,11 +31750,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | metadata | Determined from data | $X_1611 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -31776,11 +31776,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1475 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31800,11 +31800,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1340 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31826,11 +31826,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1200 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31854,11 +31854,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_901 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31880,11 +31880,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_901 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -31910,11 +31910,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_746 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31936,11 +31936,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_606 | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -31960,11 +31960,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_470 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -31996,11 +31996,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | metadata | Determined from data | $X_329 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -32024,11 +32024,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_186 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -32050,14 +32050,14 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_40 | +---------------+----------------------+------------------------+ - - + + X_3146 (Variable, 8-bit tag) **************************** - + Operation_with_metadata (tag 0) =============================== - + +-----------------------+----------+-----------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=================================================================+ @@ -32069,11 +32069,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------+ - - + + Operation_without_metadata (tag 1) ================================== - + +-----------------------+----------+--------------------------------------------+ | Name | Size | Contents | +=======================+==========+============================================+ @@ -32085,11 +32085,11 @@ Full description +-----------------------+----------+--------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+--------------------------------------------+ - - + + X_0 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -32097,10 +32097,10 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | $X_3146 | +-----------------------+----------+------------------------------------+ - +
- + .. _GET_..--block_id--live_blocks : @@ -32108,7 +32108,7 @@ Full description **GET ..//live_blocks** .. raw:: html - +
@@ -32137,11 +32137,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + +
- + .. _GET_..--block_id--metadata : @@ -32149,7 +32149,7 @@ Full description **GET ..//metadata?[version=]** .. raw:: html - +
@@ -33169,8 +33169,8 @@ Full description /* A block identifier (Base58Check-encoded) */ $unistring $block_header_metadata: - { "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", - "next_protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + { "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", + "next_protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "test_chain_status": $test_chain_status, "max_operations_ttl": integer ∈ [-2^30, 2^30], "max_operation_data_length": integer ∈ [-2^30, 2^30], @@ -33371,24 +33371,24 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+ | dal_attestation | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+ - - + + test_chain_status (Determined from data, 8-bit tag) *************************************************** - + Not_running (tag 0) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Forking (tag 1) =============== - + +------------+----------+----------------------------------+ | Name | Size | Contents | +============+==========+==================================+ @@ -33398,11 +33398,11 @@ Full description +------------+----------+----------------------------------+ | expiration | 8 bytes | signed 64-bit big-endian integer | +------------+----------+----------------------------------+ - - + + Running (tag 2) =============== - + +------------+----------+----------------------------------+ | Name | Size | Contents | +============+==========+==================================+ @@ -33416,11 +33416,11 @@ Full description +------------+----------+----------------------------------+ | expiration | 8 bytes | signed 64-bit big-endian integer | +------------+----------+----------------------------------+ - - + + X_1 *** - + +------------------------------+---------+-------------------------------------------------------------------------+ | Name | Size | Contents | +==============================+=========+=========================================================================+ @@ -33430,11 +33430,11 @@ Full description +------------------------------+---------+-------------------------------------------------------------------------+ | max_op | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +------------------------------+---------+-------------------------------------------------------------------------+ - - + + X_0 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -33442,14 +33442,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_1 | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -33457,11 +33457,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -33469,11 +33469,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -33481,11 +33481,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -33493,11 +33493,11 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + X_2 *** - + +---------------------+---------+-------------------------------------+ | Name | Size | Contents | +=====================+=========+=====================================+ @@ -33511,64 +33511,64 @@ Full description +---------------------+---------+-------------------------------------+ | expected_commitment | 1 byte | boolean (0 for false, 255 for true) | +---------------------+---------+-------------------------------------+ - - + + X_5 (1 byte, 8-bit tag) *********************** - + Proposal (tag 0) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + exploration (tag 1) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Cooldown (tag 2) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Promotion (tag 3) ================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Adoption (tag 4) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_4 *** - + +----------------+---------+----------------------------------+ | Name | Size | Contents | +================+=========+==================================+ @@ -33578,11 +33578,11 @@ Full description +----------------+---------+----------------------------------+ | start_position | 4 bytes | signed 32-bit big-endian integer | +----------------+---------+----------------------------------+ - - + + X_3 *** - + +---------------+---------+----------------------------------+ | Name | Size | Contents | +===============+=========+==================================+ @@ -33592,24 +33592,24 @@ Full description +---------------+---------+----------------------------------+ | remaining | 4 bytes | signed 32-bit big-endian integer | +---------------+---------+----------------------------------+ - - + + X_6 (Determined from data, 8-bit tag) ************************************* - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +-------------+----------+------------------------+ | Name | Size | Contents | +=============+==========+========================+ @@ -33617,14 +33617,14 @@ Full description +-------------+----------+------------------------+ | cycle_nonce | 32 bytes | bytes | +-------------+----------+------------------------+ - - + + beta.contract_id (22 bytes, 8-bit tag) ************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -33632,11 +33632,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -33646,14 +33646,14 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + beta.staker (Determined from data, 8-bit tag) ********************************************* - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -33663,11 +33663,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -33675,14 +33675,14 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + beta.bond_id (21 bytes, 8-bit tag) ********************************** - + Smart_rollup_bond_id (tag 1) ============================ - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -33690,14 +33690,14 @@ Full description +--------------+----------+------------------------+ | smart_rollup | 20 bytes | bytes | +--------------+----------+------------------------+ - - + + beta.frozen_staker (Determined from data, 8-bit tag) **************************************************** - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -33707,11 +33707,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -33719,11 +33719,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Baker (tag 2) ============= - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -33731,11 +33731,11 @@ Full description +-----------------+----------+------------------------+ | baker_own_stake | 21 bytes | $public_key_hash | +-----------------+----------+------------------------+ - - + + Baker_edge (tag 3) ================== - + +------------+----------+------------------------+ | Name | Size | Contents | +============+==========+========================+ @@ -33743,14 +33743,14 @@ Full description +------------+----------+------------------------+ | baker_edge | 21 bytes | $public_key_hash | +------------+----------+------------------------+ - - + + X_8 (Determined from data, 8-bit tag) ************************************* - + Contract (tag 0) ================ - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -33760,11 +33760,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Block_fees (tag 2) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33772,11 +33772,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Deposits (tag 4) ================ - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -33786,11 +33786,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Nonce_revelation_rewards (tag 5) ================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33798,11 +33798,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Attesting_rewards (tag 7) ========================= - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33810,11 +33810,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_rewards (tag 8) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33822,11 +33822,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_bonuses (tag 9) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33834,11 +33834,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Storage_fees (tag 11) ===================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33846,11 +33846,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Double_signing_punishments (tag 12) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33858,11 +33858,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Lost_attesting_rewards (tag 13) =============================== - + +---------------+----------+-------------------------------------+ | Name | Size | Contents | +===============+==========+=====================================+ @@ -33876,11 +33876,11 @@ Full description +---------------+----------+-------------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +---------------+----------+-------------------------------------+ - - + + Liquidity_baking_subsidies (tag 14) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33888,11 +33888,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Burned (tag 15) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33900,11 +33900,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Commitments (tag 16) ==================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -33914,11 +33914,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Bootstrap (tag 17) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33926,11 +33926,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Invoice (tag 18) ================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33938,11 +33938,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Initial_commitments (tag 19) ============================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33950,11 +33950,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Minted (tag 20) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33962,11 +33962,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Frozen_bonds (tag 21) ===================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -33978,11 +33978,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Smart_rollup_refutation_punishments (tag 24) ============================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -33990,11 +33990,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Smart_rollup_refutation_rewards (tag 25) ======================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -34002,11 +34002,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Unstaked_deposits (tag 26) ========================== - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -34018,11 +34018,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Staking_delegator_numerator (tag 27) ==================================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -34032,11 +34032,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Staking_delegate_denominator (tag 28) ===================================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -34046,54 +34046,54 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + X_9 (Determined from data, 8-bit tag) ************************************* - + Block_application (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Protocol_migration (tag 1) ========================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Subsidy (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Simulation (tag 3) ================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Delayed_operation (tag 4) ========================= - + +------------------------+----------+------------------------+ | Name | Size | Contents | +========================+==========+========================+ @@ -34101,11 +34101,11 @@ Full description +------------------------+----------+------------------------+ | delayed_operation_hash | 32 bytes | bytes | +------------------------+----------+------------------------+ - - + + X_7 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -34113,38 +34113,38 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_9 | +-----------------+----------------------+----------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + beta.contract_id.originated (22 bytes, 8-bit tag) ************************************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -34154,11 +34154,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + sapling.transaction.ciphertext ****************************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -34176,11 +34176,11 @@ Full description +-----------------------+----------+------------------------------------+ | nonce_out | 24 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_23 **** - + +-----------------+----------------------+---------------------------------+ | Name | Size | Contents | +=================+======================+=================================+ @@ -34188,11 +34188,11 @@ Full description +-----------------+----------------------+---------------------------------+ | Unnamed field 1 | Determined from data | $sapling.transaction.ciphertext | +-----------------+----------------------+---------------------------------+ - - + + X_22 **** - + +-----------------------------+----------+------------------------------------+ | Name | Size | Contents | +=============================+==========+====================================+ @@ -34204,14 +34204,14 @@ Full description +-----------------------------+----------+------------------------------------+ | nullifiers | Variable | sequence of bytes | +-----------------------------+----------+------------------------------------+ - - + + X_28 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -34219,21 +34219,21 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_22 | +---------+----------------------+------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -34243,11 +34243,11 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_22 | +---------+----------------------+------------------------+ - - + + alloc (tag 3) ============= - + +-----------+----------------------+------------------------------------+ | Name | Size | Contents | +===========+======================+====================================+ @@ -34257,11 +34257,11 @@ Full description +-----------+----------------------+------------------------------------+ | memo_size | 2 bytes | unsigned 16-bit big-endian integer | +-----------+----------------------+------------------------------------+ - - + + beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer): ******************************************************************* - + +-------------+--------------------------------+ | Case number | Encoded string | +=============+================================+ @@ -34581,14 +34581,14 @@ Full description +-------------+--------------------------------+ | 157 | Ticket | +-------------+--------------------------------+ - - + + micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag) ************************************************************************ - + Int (tag 0) =========== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -34596,11 +34596,11 @@ Full description +------+----------------------+------------------------+ | int | Determined from data | $Z.t | +------+----------------------+------------------------+ - - + + String (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -34610,11 +34610,11 @@ Full description +-----------------------+----------+------------------------------------+ | string | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Sequence (tag 2) ================ - + +-----------------------+----------+-----------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================================+ @@ -34624,11 +34624,11 @@ Full description +-----------------------+----------+-----------------------------------------------------+ | Unnamed field 0 | Variable | sequence of $micheline.beta.michelson_v1.expression | +-----------------------+----------+-----------------------------------------------------+ - - + + Prim__no_args__no_annots (tag 3) ================================ - + +------+--------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+========+===================================================================================+ @@ -34636,11 +34636,11 @@ Full description +------+--------+-----------------------------------------------------------------------------------+ | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) | +------+--------+-----------------------------------------------------------------------------------+ - - + + Prim__no_args__some_annots (tag 4) ================================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -34652,11 +34652,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__no_annots (tag 5) ============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -34666,11 +34666,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__some_annots (tag 6) ================================ - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -34684,11 +34684,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__no_annots (tag 7) =============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -34700,11 +34700,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg2 | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__some_annots (tag 8) ================================= - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -34720,11 +34720,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__generic (tag 9) ===================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -34740,11 +34740,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Bytes (tag 10) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -34754,11 +34754,11 @@ Full description +-----------------------+----------+------------------------------------+ | bytes | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_29 **** - + +-----------------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=============================+======================+=========================================+ @@ -34770,14 +34770,14 @@ Full description +-----------------------------+----------------------+-----------------------------------------+ | value | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------------+----------------------+-----------------------------------------+ - - + + X_40 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -34787,21 +34787,21 @@ Full description +-----------------------+----------+------------------------------------+ | updates | Variable | sequence of $X_29 | +-----------------------+----------+------------------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -34813,11 +34813,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_29 | +-----------------------+----------------------+------------------------------------+ - - + + alloc (tag 3) ============= - + +-----------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================+ @@ -34831,14 +34831,14 @@ Full description +-----------------------+----------------------+-----------------------------------------+ | value_type | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------+----------------------+-----------------------------------------+ - - + + X_41 (Determined from data, 8-bit tag) ************************************** - + big_map (tag 0) =============== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -34848,11 +34848,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_40 | +------+----------------------+------------------------+ - - + + sapling_state (tag 1) ===================== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -34862,11 +34862,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_28 | +------+----------------------+------------------------+ - - + + beta.lazy_storage_diff ********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -34874,11 +34874,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_41 | +-----------------------+----------+------------------------------------+ - - + + X_43 **** - + +--------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==============+======================+=========================================+ @@ -34888,14 +34888,14 @@ Full description +--------------+----------------------+-----------------------------------------+ | content | Determined from data | $micheline.beta.michelson_v1.expression | +--------------+----------------------+-----------------------------------------+ - - + + beta.transaction_destination (22 bytes, 8-bit tag) ************************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -34903,11 +34903,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -34917,11 +34917,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + Smart_rollup (tag 3) ==================== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -34931,11 +34931,11 @@ Full description +----------------------+----------+------------------------+ | padding | 1 byte | padding | +----------------------+----------+------------------------+ - - + + Zk_rollup (tag 4) ================= - + +----------------+----------+------------------------+ | Name | Size | Contents | +================+==========+========================+ @@ -34945,11 +34945,11 @@ Full description +----------------+----------+------------------------+ | padding | 1 byte | padding | +----------------+----------+------------------------+ - - + + X_46 **** - + +---------+----------------------+-------------------------------+ | Name | Size | Contents | +=========+======================+===============================+ @@ -34957,11 +34957,11 @@ Full description +---------+----------------------+-------------------------------+ | amount | Determined from data | $Z.t | +---------+----------------------+-------------------------------+ - - + + X_42 **** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -34971,14 +34971,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_46 | +-----------------------+----------------------+------------------------------------+ - - + + X_76 (Determined from data, 8-bit tag) ************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -35012,11 +35012,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -35028,14 +35028,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_updates | Variable | sequence of $X_42 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.successful_manager_operation_result (Determined from data, 8-bit tag) ****************************************************************************************** - + reveal (tag 0) ============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -35043,11 +35043,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + transaction (tag 1) =================== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -35055,11 +35055,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_76 | +-----------------+----------------------+------------------------+ - - + + origination (tag 2) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -35083,11 +35083,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + delegation (tag 3) ================== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -35099,11 +35099,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_7 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + set_deposits_limit (tag 5) ========================== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -35111,11 +35111,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + update_consensus_key (tag 6) ============================ - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -35123,11 +35123,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + increase_paid_storage (tag 9) ============================= - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -35139,11 +35139,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + smart_rollup_originate (tag 200) ================================ - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -35161,10 +35161,10 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - +
- + .. _GET_..--block_id--metadata_hash : @@ -35172,7 +35172,7 @@ Full description **GET ..//metadata_hash** .. raw:: html - +
@@ -35197,11 +35197,11 @@ Full description +=====================+==========+==========+ | Block_metadata_hash | 32 bytes | bytes | +---------------------+----------+----------+ - - + +
- + .. _GET_..--block_id--operation_hashes : @@ -35209,7 +35209,7 @@ Full description **GET ..//operation_hashes** .. raw:: html - +
@@ -35238,11 +35238,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -35250,17 +35250,17 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - +
- + .. _GET_..--block_id--operation_hashes--list_offset : **GET ..//operation_hashes/** .. raw:: html - +
@@ -35289,18 +35289,18 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + +
- + .. _GET_..--block_id--operation_hashes--list_offset--operation_offset : **GET ..//operation_hashes//** .. raw:: html - +
@@ -35325,11 +35325,11 @@ Full description +================+==========+==========+ | Operation_hash | 32 bytes | bytes | +----------------+----------+----------+ - - + +
- + .. _GET_..--block_id--operation_metadata_hashes : @@ -35337,7 +35337,7 @@ Full description **GET ..//operation_metadata_hashes** .. raw:: html - +
@@ -35366,11 +35366,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -35378,17 +35378,17 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - +
- + .. _GET_..--block_id--operation_metadata_hashes--list_offset : **GET ..//operation_metadata_hashes/** .. raw:: html - +
@@ -35417,18 +35417,18 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + +
- + .. _GET_..--block_id--operation_metadata_hashes--list_offset--operation_offset : **GET ..//operation_metadata_hashes//** .. raw:: html - +
@@ -35453,11 +35453,11 @@ Full description +=========================+==========+==========+ | Operation_metadata_hash | 32 bytes | bytes | +-------------------------+----------+----------+ - - + +
- + .. _GET_..--block_id--operations : @@ -35465,7 +35465,7 @@ Full description **GET ..//operations?[version=]&[force_metadata]&[metadata=]** .. raw:: html - +
@@ -38065,7 +38065,7 @@ Full description "annots"?: [ $unistring ... ] } $operation: { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -38073,14 +38073,14 @@ Full description "signature"?: $Signature.V1, "metadata": "too large" } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, "contents": [ $beta.operation.alpha.contents ... ], "signature"?: $Signature.V1 } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -38088,7 +38088,7 @@ Full description [ $beta.operation.alpha.operation_contents_and_result ... ], "signature"?: $Signature.V1 } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -38143,14 +38143,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -38158,11 +38158,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -38170,11 +38170,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -38182,11 +38182,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -38194,23 +38194,23 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_3 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -38218,11 +38218,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_4 *** - + +-----------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================+ @@ -38234,11 +38234,11 @@ Full description +-----------------------+----------+-------------------------------------+ | exit_validity | 1 byte | boolean (0 for false, 255 for true) | +-----------------------+----------+-------------------------------------+ - - + + X_2 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -38246,11 +38246,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_4 | +-----------------+----------------------+----------+ - - + + X_7 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -38260,11 +38260,11 @@ Full description +-----------------------+----------+------------------------------------+ | fee | 32 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_5 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -38272,11 +38272,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_7 | +-----------------+----------------------+----------+ - - + + X_8 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -38284,11 +38284,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + + X_1 *** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -38306,23 +38306,23 @@ Full description +-----------------------+----------------------+------------------------------------+ | proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_11 **** - + +--------+----------------------+----------+ | Name | Size | Contents | +========+======================+==========+ @@ -38330,11 +38330,11 @@ Full description +--------+----------------------+----------+ | amount | Determined from data | $Z.t | +--------+----------------------+----------+ - - + + X_10 **** - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -38350,11 +38350,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | payload | Variable | sequence of bytes | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer): ******************************************************************* - + +-------------+--------------------------------+ | Case number | Encoded string | +=============+================================+ @@ -38674,14 +38674,14 @@ Full description +-------------+--------------------------------+ | 157 | Ticket | +-------------+--------------------------------+ - - + + micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag) ************************************************************************ - + Int (tag 0) =========== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -38689,11 +38689,11 @@ Full description +------+----------------------+------------------------+ | int | Determined from data | $Z.t | +------+----------------------+------------------------+ - - + + String (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -38703,11 +38703,11 @@ Full description +-----------------------+----------+------------------------------------+ | string | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Sequence (tag 2) ================ - + +-----------------------+----------+-----------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================================+ @@ -38717,11 +38717,11 @@ Full description +-----------------------+----------+-----------------------------------------------------+ | Unnamed field 0 | Variable | sequence of $micheline.beta.michelson_v1.expression | +-----------------------+----------+-----------------------------------------------------+ - - + + Prim__no_args__no_annots (tag 3) ================================ - + +------+--------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+========+===================================================================================+ @@ -38729,11 +38729,11 @@ Full description +------+--------+-----------------------------------------------------------------------------------+ | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) | +------+--------+-----------------------------------------------------------------------------------+ - - + + Prim__no_args__some_annots (tag 4) ================================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -38745,11 +38745,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__no_annots (tag 5) ============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -38759,11 +38759,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__some_annots (tag 6) ================================ - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -38777,11 +38777,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__no_annots (tag 7) =============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -38793,11 +38793,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg2 | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__some_annots (tag 8) ================================= - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -38813,11 +38813,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__generic (tag 9) ===================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -38833,11 +38833,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Bytes (tag 10) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -38847,14 +38847,14 @@ Full description +-----------------------+----------+------------------------------------+ | bytes | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.contract_id (22 bytes, 8-bit tag) ************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -38862,11 +38862,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -38876,24 +38876,24 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + X_14 (Determined from data, 8-bit tag) ************************************** - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +----------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==========+======================+=========================================+ @@ -38905,11 +38905,11 @@ Full description +----------+----------------------+-----------------------------------------+ | ticketer | 22 bytes | $beta.contract_id | +----------+----------------------+-----------------------------------------+ - - + + X_9 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -38917,44 +38917,44 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_14 | +-----------------+----------------------+----------+ - - + + X_17 (1 byte, 8-bit tag) ************************ - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Fee (tag 2) =========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_15 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -38962,11 +38962,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | 1 byte | $X_17 | +-----------------+----------------------+----------+ - - + + X_18 **** - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -38976,11 +38976,11 @@ Full description +------------------+----------+------------------------+ | commitment_proof | 96 bytes | bytes | +------------------+----------+------------------------+ - - + + X_19 **** - + +-------+----------+------------------+ | Name | Size | Contents | +=======+==========+==================+ @@ -38988,11 +38988,11 @@ Full description +-------+----------+------------------+ | bob | 21 bytes | $public_key_hash | +-------+----------+------------------+ - - + + X_20 **** - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -39002,14 +39002,14 @@ Full description +-----------------+---------+----------------------------------+ | page_index | 2 bytes | signed 16-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + X_21 (Determined from data, 8-bit tag) ************************************** - + raw data proof (tag 0) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39019,21 +39019,21 @@ Full description +-----------------------+----------+------------------------------------+ | raw_data | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + metadata proof (tag 1) ====================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + dal page proof (tag 2) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39045,24 +39045,24 @@ Full description +-----------------------+----------+------------------------------------+ | dal_proof | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + dal parameters proof (tag 3) ============================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_22 (Determined from data, 8-bit tag) ************************************** - + inbox proof (tag 0) =================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -39076,11 +39076,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | serialized_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + reveal proof (tag 1) ==================== - + +--------------+----------------------+------------------------+ | Name | Size | Contents | +==============+======================+========================+ @@ -39088,21 +39088,21 @@ Full description +--------------+----------------------+------------------------+ | reveal_proof | Determined from data | $X_21 | +--------------+----------------------+------------------------+ - - + + first input (tag 2) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_23 **** - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -39112,14 +39112,14 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | tick | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + X_24 (Determined from data, 8-bit tag) ************************************** - + Dissection (tag 0) ================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39129,11 +39129,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_23 | +-----------------------+----------+------------------------------------+ - - + + Proof (tag 1) ============= - + +-----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +===================================+======================+=====================================+ @@ -39147,14 +39147,14 @@ Full description +-----------------------------------+----------------------+-------------------------------------+ | input_proof | Determined from data | $X_22 | +-----------------------------------+----------------------+-------------------------------------+ - - + + X_25 (Determined from data, 8-bit tag) ************************************** - + Start (tag 0) ============= - + +--------------------------+----------+------------------------+ | Name | Size | Contents | +==========================+==========+========================+ @@ -39164,11 +39164,11 @@ Full description +--------------------------+----------+------------------------+ | opponent_commitment_hash | 32 bytes | bytes | +--------------------------+----------+------------------------+ - - + + Move (tag 1) ============ - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -39178,11 +39178,11 @@ Full description +--------+----------------------+------------------------+ | step | Determined from data | $X_24 | +--------+----------------------+------------------------+ - - + + X_26 **** - + +------------------+----------+----------------------------------+ | Name | Size | Contents | +==================+==========+==================================+ @@ -39194,11 +39194,11 @@ Full description +------------------+----------+----------------------------------+ | number_of_ticks | 8 bytes | signed 64-bit big-endian integer | +------------------+----------+----------------------------------+ - - + + X_28 (Enumeration: unsigned 8-bit integer): ******************************************* - + +-------------+----------------+ | Case number | Encoded string | +=============+================+ @@ -39208,11 +39208,11 @@ Full description +-------------+----------------+ | 2 | riscv | +-------------+----------------+ - - + + X_29 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39220,14 +39220,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $public_key_hash | +-----------------------+----------+------------------------------------+ - - + + public_key (Determined from data, 8-bit tag) ******************************************** - + Ed25519 (tag 0) =============== - + +--------------------+----------+------------------------+ | Name | Size | Contents | +====================+==========+========================+ @@ -39235,11 +39235,11 @@ Full description +--------------------+----------+------------------------+ | Ed25519.Public_key | 32 bytes | bytes | +--------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -39247,11 +39247,11 @@ Full description +----------------------+----------+------------------------+ | Secp256k1.Public_key | 33 bytes | bytes | +----------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -39259,11 +39259,11 @@ Full description +-----------------+----------+------------------------+ | P256.Public_key | 33 bytes | bytes | +-----------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -39271,14 +39271,14 @@ Full description +----------------------+----------+------------------------+ | Bls12_381.Public_key | 48 bytes | bytes | +----------------------+----------+------------------------+ - - + + beta.contract_id.originated (22 bytes, 8-bit tag) ************************************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -39288,11 +39288,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + beta.scripted.contracts *********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39304,114 +39304,114 @@ Full description +-----------------------+----------+------------------------------------+ | storage | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.entrypoint (Determined from data, 8-bit tag) ************************************************* - + default (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + root (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + do (tag 2) ========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate (tag 3) ==================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + remove_delegate (tag 4) ======================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + deposit (tag 5) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + stake (tag 6) ============= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + unstake (tag 7) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + finalize_unstake (tag 8) ======================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate_parameters (tag 9) =============================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + named (tag 255) =============== - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -39421,11 +39421,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + X_30 **** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -39435,11 +39435,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + X_31 **** - + +-----------------+-----------+----------+ | Name | Size | Contents | +=================+===========+==========+ @@ -39447,14 +39447,14 @@ Full description +-----------------+-----------+----------+ | Unnamed field 1 | 100 bytes | bytes | +-----------------+-----------+----------+ - - + + beta.inlined.preattestation.contents (43 bytes, 8-bit tag) ********************************************************** - + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -39468,11 +39468,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + beta.inlined.preattestation *************************** - + +------------+----------+---------------------------------------+ | Name | Size | Contents | +============+==========+=======================================+ @@ -39482,11 +39482,11 @@ Full description +------------+----------+---------------------------------------+ | signature | Variable | bytes | +------------+----------+---------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39494,104 +39494,104 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.per_block_votes (1 byte, 8-bit tag) **************************************** - + case_0 (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_1 (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_2 (tag 2) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_4 (tag 4) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_5 (tag 5) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_6 (tag 6) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_8 (tag 8) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_9 (tag 9) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_10 (tag 10) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + beta.block_header.alpha.full_header *********************************** - + +---------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================================+==========+=====================================+ @@ -39627,14 +39627,14 @@ Full description +---------------------------------------+----------+-------------------------------------+ | signature | Variable | bytes | +---------------------------------------+----------+-------------------------------------+ - - + + beta.inlined.attestation_mempool.contents (Determined from data, 8-bit tag) *************************************************************************** - + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -39648,11 +39648,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -39668,11 +39668,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + beta.inlined.attestation ************************ - + +------------+----------------------+--------------------------------------------+ | Name | Size | Contents | +============+======================+============================================+ @@ -39682,14 +39682,14 @@ Full description +------------+----------------------+--------------------------------------------+ | signature | Variable | bytes | +------------+----------------------+--------------------------------------------+ - - + + beta.operation.alpha.contents (Determined from data, 8-bit tag) *************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -39699,11 +39699,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39717,11 +39717,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -39735,11 +39735,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -39749,11 +39749,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39767,11 +39767,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -39785,11 +39785,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39803,11 +39803,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -39815,11 +39815,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_31 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -39831,11 +39831,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -39845,11 +39845,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -39863,11 +39863,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -39881,11 +39881,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -39901,11 +39901,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -39923,11 +39923,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -39951,11 +39951,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_30 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -39979,11 +39979,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -40003,11 +40003,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -40027,11 +40027,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -40051,11 +40051,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -40075,11 +40075,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40097,11 +40097,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -40135,11 +40135,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -40169,11 +40169,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_29 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -40193,11 +40193,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_3 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40215,11 +40215,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40239,11 +40239,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_26 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40265,11 +40265,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40289,11 +40289,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_19 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -40317,11 +40317,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40341,11 +40341,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40363,11 +40363,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -40397,11 +40397,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -40423,11 +40423,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_9 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -40447,14 +40447,14 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_1 | +---------------+----------------------+------------------------+ - - + + beta.staker (Determined from data, 8-bit tag) ********************************************* - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -40464,11 +40464,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -40476,14 +40476,14 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + beta.bond_id (21 bytes, 8-bit tag) ********************************** - + Smart_rollup_bond_id (tag 1) ============================ - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -40491,14 +40491,14 @@ Full description +--------------+----------+------------------------+ | smart_rollup | 20 bytes | bytes | +--------------+----------+------------------------+ - - + + beta.frozen_staker (Determined from data, 8-bit tag) **************************************************** - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -40508,11 +40508,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -40520,11 +40520,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Baker (tag 2) ============= - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -40532,11 +40532,11 @@ Full description +-----------------+----------+------------------------+ | baker_own_stake | 21 bytes | $public_key_hash | +-----------------+----------+------------------------+ - - + + Baker_edge (tag 3) ================== - + +------------+----------+------------------------+ | Name | Size | Contents | +============+==========+========================+ @@ -40544,14 +40544,14 @@ Full description +------------+----------+------------------------+ | baker_edge | 21 bytes | $public_key_hash | +------------+----------+------------------------+ - - + + X_42 (Determined from data, 8-bit tag) ************************************** - + Contract (tag 0) ================ - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -40561,11 +40561,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Block_fees (tag 2) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40573,11 +40573,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Deposits (tag 4) ================ - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -40587,11 +40587,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Nonce_revelation_rewards (tag 5) ================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40599,11 +40599,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Attesting_rewards (tag 7) ========================= - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40611,11 +40611,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_rewards (tag 8) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40623,11 +40623,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_bonuses (tag 9) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40635,11 +40635,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Storage_fees (tag 11) ===================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40647,11 +40647,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Double_signing_punishments (tag 12) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40659,11 +40659,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Lost_attesting_rewards (tag 13) =============================== - + +---------------+----------+-------------------------------------+ | Name | Size | Contents | +===============+==========+=====================================+ @@ -40677,11 +40677,11 @@ Full description +---------------+----------+-------------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +---------------+----------+-------------------------------------+ - - + + Liquidity_baking_subsidies (tag 14) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40689,11 +40689,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Burned (tag 15) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40701,11 +40701,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Commitments (tag 16) ==================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -40715,11 +40715,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Bootstrap (tag 17) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40727,11 +40727,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Invoice (tag 18) ================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40739,11 +40739,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Initial_commitments (tag 19) ============================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40751,11 +40751,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Minted (tag 20) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40763,11 +40763,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Frozen_bonds (tag 21) ===================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -40779,11 +40779,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Smart_rollup_refutation_punishments (tag 24) ============================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40791,11 +40791,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Smart_rollup_refutation_rewards (tag 25) ======================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -40803,11 +40803,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Unstaked_deposits (tag 26) ========================== - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -40819,11 +40819,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Staking_delegator_numerator (tag 27) ==================================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -40833,11 +40833,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Staking_delegate_denominator (tag 28) ===================================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -40847,54 +40847,54 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + X_43 (Determined from data, 8-bit tag) ************************************** - + Block_application (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Protocol_migration (tag 1) ========================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Subsidy (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Simulation (tag 3) ================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Delayed_operation (tag 4) ========================= - + +------------------------+----------+------------------------+ | Name | Size | Contents | +========================+==========+========================+ @@ -40902,11 +40902,11 @@ Full description +------------------------+----------+------------------------+ | delayed_operation_hash | 32 bytes | bytes | +------------------------+----------+------------------------+ - - + + X_41 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -40914,11 +40914,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_43 | +-----------------+----------------------+----------+ - - + + X_44 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -40926,14 +40926,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag) **************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -40947,11 +40947,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -40961,21 +40961,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -40993,14 +40993,14 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + beta.transaction_destination (22 bytes, 8-bit tag) ************************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -41008,11 +41008,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -41022,11 +41022,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + Smart_rollup (tag 3) ==================== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -41036,11 +41036,11 @@ Full description +----------------------+----------+------------------------+ | padding | 1 byte | padding | +----------------------+----------+------------------------+ - - + + Zk_rollup (tag 4) ================= - + +----------------+----------+------------------------+ | Name | Size | Contents | +================+==========+========================+ @@ -41050,14 +41050,14 @@ Full description +----------------+----------+------------------------+ | padding | 1 byte | padding | +----------------+----------+------------------------+ - - + + beta.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag) ************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -41065,11 +41065,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41079,21 +41079,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -41105,14 +41105,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -41124,11 +41124,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41138,21 +41138,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -41168,11 +41168,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + sapling.transaction.ciphertext ****************************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41190,11 +41190,11 @@ Full description +-----------------------+----------+------------------------------------+ | nonce_out | 24 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_66 **** - + +-----------------+----------------------+---------------------------------+ | Name | Size | Contents | +=================+======================+=================================+ @@ -41202,11 +41202,11 @@ Full description +-----------------+----------------------+---------------------------------+ | Unnamed field 1 | Determined from data | $sapling.transaction.ciphertext | +-----------------+----------------------+---------------------------------+ - - + + X_65 **** - + +-----------------------------+----------+------------------------------------+ | Name | Size | Contents | +=============================+==========+====================================+ @@ -41218,14 +41218,14 @@ Full description +-----------------------------+----------+------------------------------------+ | nullifiers | Variable | sequence of bytes | +-----------------------------+----------+------------------------------------+ - - + + X_71 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -41233,21 +41233,21 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_65 | +---------+----------------------+------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -41257,11 +41257,11 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_65 | +---------+----------------------+------------------------+ - - + + alloc (tag 3) ============= - + +-----------+----------------------+------------------------------------+ | Name | Size | Contents | +===========+======================+====================================+ @@ -41271,11 +41271,11 @@ Full description +-----------+----------------------+------------------------------------+ | memo_size | 2 bytes | unsigned 16-bit big-endian integer | +-----------+----------------------+------------------------------------+ - - + + X_72 **** - + +-----------------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=============================+======================+=========================================+ @@ -41287,14 +41287,14 @@ Full description +-----------------------------+----------------------+-----------------------------------------+ | value | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------------+----------------------+-----------------------------------------+ - - + + X_83 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41304,21 +41304,21 @@ Full description +-----------------------+----------+------------------------------------+ | updates | Variable | sequence of $X_72 | +-----------------------+----------+------------------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -41330,11 +41330,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_72 | +-----------------------+----------------------+------------------------------------+ - - + + alloc (tag 3) ============= - + +-----------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================+ @@ -41348,14 +41348,14 @@ Full description +-----------------------+----------------------+-----------------------------------------+ | value_type | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------+----------------------+-----------------------------------------+ - - + + X_84 (Determined from data, 8-bit tag) ************************************** - + big_map (tag 0) =============== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -41365,11 +41365,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_83 | +------+----------------------+------------------------+ - - + + sapling_state (tag 1) ===================== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -41379,11 +41379,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_71 | +------+----------------------+------------------------+ - - + + beta.lazy_storage_diff ********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41391,14 +41391,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_84 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -41422,11 +41422,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41436,21 +41436,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -41478,11 +41478,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + X_111 ***** - + +--------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==============+======================+=========================================+ @@ -41492,11 +41492,11 @@ Full description +--------------+----------------------+-----------------------------------------+ | content | Determined from data | $micheline.beta.michelson_v1.expression | +--------------+----------------------+-----------------------------------------+ - - + + X_114 ***** - + +---------+----------------------+-------------------------------+ | Name | Size | Contents | +=========+======================+===============================+ @@ -41504,11 +41504,11 @@ Full description +---------+----------------------+-------------------------------+ | amount | Determined from data | $Z.t | +---------+----------------------+-------------------------------+ - - + + X_110 ***** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -41518,14 +41518,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_114 | +-----------------------+----------------------+------------------------------------+ - - + + X_144 (Determined from data, 8-bit tag) *************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -41559,11 +41559,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -41575,14 +41575,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_receipt | Variable | sequence of $X_110 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -41590,11 +41590,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_144 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41604,21 +41604,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -41630,14 +41630,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_144 | +------------------------------+----------------------+-------------------------------------+ - - + + beta.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag) ************************************************************************************ - + transaction (tag 1) =================== - + +----------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +==================================+======================+=============================================================+ @@ -41657,11 +41657,11 @@ Full description +----------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.transaction | +----------------------------------+----------------------+-------------------------------------------------------------+ - - + + origination (tag 2) =================== - + +--------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+=============================================================+ @@ -41681,11 +41681,11 @@ Full description +--------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.origination | +--------------------------------+----------------------+-------------------------------------------------------------+ - - + + delegation (tag 3) ================== - + +--------------------------------+----------------------+------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+============================================================+ @@ -41701,11 +41701,11 @@ Full description +--------------------------------+----------------------+------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.delegation | +--------------------------------+----------------------+------------------------------------------------------------+ - - + + event (tag 4) ============= - + +-------------------------------+----------------------+-------------------------------------------------------+ | Name | Size | Contents | +===============================+======================+=======================================================+ @@ -41727,11 +41727,11 @@ Full description +-------------------------------+----------------------+-------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.event | +-------------------------------+----------------------+-------------------------------------------------------+ - - + + X_40 **** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -41745,14 +41745,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag) ***************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -41766,11 +41766,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41780,21 +41780,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -41812,11 +41812,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_186 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -41830,14 +41830,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag) ********************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -41853,11 +41853,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41867,21 +41867,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -41901,11 +41901,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_329 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -41919,14 +41919,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_475 (54 bytes, 8-bit tag) *************************** - + v0 (tag 0) ========== - + +------------+----------+----------------------------------+ | Name | Size | Contents | +============+==========+==================================+ @@ -41938,14 +41938,14 @@ Full description +------------+----------+----------------------------------+ | commitment | 48 bytes | bytes | +------------+----------+----------------------------------+ - - + + beta.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -41955,11 +41955,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -41969,21 +41969,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -41997,11 +41997,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + X_470 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42015,14 +42015,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag) ************************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -42034,11 +42034,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42048,21 +42048,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42078,11 +42078,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_606 ***** - + +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==================================================================+ @@ -42096,24 +42096,24 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ - - + + X_760 (Determined from data, 8-bit tag) *************************************** - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +-----------+----------------------+------------------------+ | Name | Size | Contents | +===========+======================+========================+ @@ -42121,14 +42121,14 @@ Full description +-----------+----------------------+------------------------+ | whitelist | Determined from data | $X_29 | +-----------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag) *********************************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42150,11 +42150,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42164,21 +42164,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42204,11 +42204,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_746 ***** - + +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+============================================================================+ @@ -42222,37 +42222,37 @@ Full description +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ - - + + X_906 (1 byte, 8-bit tag) ************************* - + Conflict_resolved (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Timeout (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_907 (Determined from data, 8-bit tag) *************************************** - + Loser (tag 0) ============= - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -42262,34 +42262,34 @@ Full description +--------+----------+------------------------+ | player | 21 bytes | $public_key_hash | +--------+----------+------------------------+ - - + + Draw (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_908 (Determined from data, 8-bit tag) *************************************** - + Ongoing (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Ended (tag 1) ============= - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -42297,14 +42297,14 @@ Full description +--------+----------------------+------------------------+ | result | Determined from data | $X_907 | +--------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -42318,11 +42318,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42332,21 +42332,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42364,11 +42364,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_901 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42382,14 +42382,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -42405,11 +42405,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42419,21 +42419,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42453,11 +42453,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1200 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42471,14 +42471,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +-------------------+----------------------+----------------------------------+ | Name | Size | Contents | +===================+======================+==================================+ @@ -42490,11 +42490,11 @@ Full description +-------------------+----------------------+----------------------------------+ | commitment_hash | 32 bytes | bytes | +-------------------+----------------------+----------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42504,21 +42504,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -42534,11 +42534,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | commitment_hash | 32 bytes | bytes | +------------------------------+----------------------+-------------------------------------+ - - + + X_1340 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42552,11 +42552,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_1475 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42570,14 +42570,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -42595,11 +42595,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42609,21 +42609,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42645,11 +42645,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1611 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42663,14 +42663,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag) *************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -42688,11 +42688,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42702,21 +42702,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42738,11 +42738,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1751 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42756,14 +42756,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag) ************************************************************************************************ - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -42779,11 +42779,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42793,21 +42793,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -42827,11 +42827,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_2309 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42845,11 +42845,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2449 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42863,11 +42863,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2589 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -42881,14 +42881,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2809 (Determined from data, 8-bit tag) **************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -42922,11 +42922,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -42938,14 +42938,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_updates | Variable | sequence of $X_110 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag) *********************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -42953,11 +42953,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_2809 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -42967,21 +42967,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_3 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -42993,11 +42993,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_2809 | +------------------------------+----------------------+-------------------------------------+ - - + + X_2770 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -43011,11 +43011,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_3108 ****** - + +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=========================================================================+ @@ -43029,11 +43029,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | consensus_key | 21 bytes | $public_key_hash | +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ - - + + X_3120 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -43043,11 +43043,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | allocated_destination_contract | 1 byte | boolean (0 for false, 255 for true) | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation_metadata.alpha.balance_updates ********************************************* - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -43055,11 +43055,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_41 | +-----------------------+----------+------------------------------------+ - - + + X_3128 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -43071,14 +43071,14 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | balance_updates | Variable | sequence of $X_41 | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag) ************************************************************************************ - + Seed_nonce_revelation (tag 1) ============================= - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -43090,11 +43090,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -43110,11 +43110,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3128 | +-----------------------+----------------------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------------------+--------------------------------------+ | Name | Size | Contents | +=======================+======================+======================================+ @@ -43130,11 +43130,11 @@ Full description +-----------------------+----------------------+--------------------------------------+ | metadata | Determined from data | $X_3128 | +-----------------------+----------------------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -43146,11 +43146,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -43164,11 +43164,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -43182,11 +43182,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -43202,11 +43202,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3128 | +-----------------------+----------------------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -43216,11 +43216,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43234,11 +43234,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_3120 | +---------------+----------------------+------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -43254,11 +43254,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3108 | +--------------------+----------------------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -43274,11 +43274,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3108 | +--------------------+----------------------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -43296,11 +43296,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3108 | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43320,11 +43320,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1475 | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -43350,11 +43350,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2770 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -43380,11 +43380,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2589 | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -43406,11 +43406,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2449 | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -43432,11 +43432,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_2309 | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -43458,11 +43458,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_1475 | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -43484,11 +43484,11 @@ Full description +---------------+----------------------+------------------------------+ | metadata | Determined from data | $X_606 | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43508,11 +43508,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1475 | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -43548,11 +43548,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1751 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -43584,11 +43584,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | metadata | Determined from data | $X_1611 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -43610,11 +43610,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1475 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43634,11 +43634,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1340 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43660,11 +43660,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1200 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43688,11 +43688,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_901 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43714,11 +43714,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_901 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -43744,11 +43744,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_746 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43770,11 +43770,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_606 | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43794,11 +43794,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_470 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -43830,11 +43830,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | metadata | Determined from data | $X_329 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -43858,11 +43858,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_186 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -43884,14 +43884,14 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_40 | +---------------+----------------------+------------------------+ - - + + X_3146 (Variable, 8-bit tag) **************************** - + Operation_with_metadata (tag 0) =============================== - + +-----------------------+----------+-----------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=================================================================+ @@ -43903,11 +43903,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------+ - - + + Operation_without_metadata (tag 1) ================================== - + +-----------------------+----------+--------------------------------------------+ | Name | Size | Contents | +=======================+==========+============================================+ @@ -43919,14 +43919,14 @@ Full description +-----------------------+----------+--------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+--------------------------------------------+ - - + + bls_signature_prefix (33 bytes, 8-bit tag) ****************************************** - + Bls_prefix (tag 3) ================== - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -43934,14 +43934,14 @@ Full description +-----------------+----------+------------------------+ | Unnamed field 0 | 32 bytes | bytes | +-----------------+----------+------------------------+ - - + + beta.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag) *********************************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -43951,11 +43951,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -43969,11 +43969,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -43987,11 +43987,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -44001,11 +44001,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -44019,11 +44019,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -44037,11 +44037,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -44055,11 +44055,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -44067,11 +44067,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_31 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -44083,11 +44083,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -44097,11 +44097,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -44115,11 +44115,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -44133,11 +44133,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -44153,11 +44153,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44175,11 +44175,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -44203,11 +44203,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_30 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -44231,11 +44231,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -44255,11 +44255,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -44279,11 +44279,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -44303,11 +44303,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -44327,11 +44327,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44349,11 +44349,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -44387,11 +44387,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -44421,11 +44421,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_29 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -44445,11 +44445,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_3 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44467,11 +44467,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44491,11 +44491,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_26 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44517,11 +44517,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44541,11 +44541,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_19 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -44569,11 +44569,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44593,11 +44593,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44615,11 +44615,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -44649,11 +44649,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -44675,11 +44675,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_9 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -44699,11 +44699,11 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_1 | +---------------+----------------------+------------------------+ - - + + Signature_prefix (tag 255) ========================== - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -44711,14 +44711,14 @@ Full description +------------------+----------+------------------------+ | signature_prefix | 33 bytes | $bls_signature_prefix | +------------------+----------+------------------------+ - - + + X_3209 (Variable, 8-bit tag) **************************** - + Operation with too large metadata (tag 0) ========================================= - + +-------------------------------+----------+----------------------------------------------------------------+ | Name | Size | Contents | +===============================+==========+================================================================+ @@ -44728,11 +44728,11 @@ Full description +-------------------------------+----------+----------------------------------------------------------------+ | signature_suffix | 64 bytes | bytes | +-------------------------------+----------+----------------------------------------------------------------+ - - + + Operation without metadata (tag 1) ================================== - + +-------------------------------+----------+----------------------------------------------------------------+ | Name | Size | Contents | +===============================+==========+================================================================+ @@ -44742,11 +44742,11 @@ Full description +-------------------------------+----------+----------------------------------------------------------------+ | signature_suffix | 64 bytes | bytes | +-------------------------------+----------+----------------------------------------------------------------+ - - + + Operation with metadata (tag 2) =============================== - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -44754,11 +44754,11 @@ Full description +-----------------+----------+------------------------+ | Unnamed field 0 | Variable | $X_3146 | +-----------------+----------+------------------------+ - - + + operation ********* - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -44774,11 +44774,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | $X_3209 | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +--------------------------+----------+------------------------------------+ | Name | Size | Contents | +==========================+==========+====================================+ @@ -44788,17 +44788,17 @@ Full description +--------------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $operation | +--------------------------+----------+------------------------------------+ - +
- + .. _GET_..--block_id--operations--list_offset : **GET ..//operations/?[version=]&[force_metadata]&[metadata=]** .. raw:: html - +
@@ -47398,7 +47398,7 @@ Full description "annots"?: [ $unistring ... ] } $operation: { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -47406,14 +47406,14 @@ Full description "signature"?: $Signature.V1, "metadata": "too large" } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, "contents": [ $beta.operation.alpha.contents ... ], "signature"?: $Signature.V1 } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -47421,7 +47421,7 @@ Full description [ $beta.operation.alpha.operation_contents_and_result ... ], "signature"?: $Signature.V1 } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -47476,14 +47476,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $operation | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -47491,11 +47491,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -47503,11 +47503,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -47515,11 +47515,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -47527,23 +47527,23 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_2 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -47551,11 +47551,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_3 *** - + +-----------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================+ @@ -47567,11 +47567,11 @@ Full description +-----------------------+----------+-------------------------------------+ | exit_validity | 1 byte | boolean (0 for false, 255 for true) | +-----------------------+----------+-------------------------------------+ - - + + X_1 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -47579,11 +47579,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_3 | +-----------------+----------------------+----------+ - - + + X_6 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -47593,11 +47593,11 @@ Full description +-----------------------+----------+------------------------------------+ | fee | 32 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_4 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -47605,11 +47605,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_6 | +-----------------+----------------------+----------+ - - + + X_7 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -47617,11 +47617,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -47639,23 +47639,23 @@ Full description +-----------------------+----------------------+------------------------------------+ | proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_10 **** - + +--------+----------------------+----------+ | Name | Size | Contents | +========+======================+==========+ @@ -47663,11 +47663,11 @@ Full description +--------+----------------------+----------+ | amount | Determined from data | $Z.t | +--------+----------------------+----------+ - - + + X_9 *** - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -47683,11 +47683,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | payload | Variable | sequence of bytes | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer): ******************************************************************* - + +-------------+--------------------------------+ | Case number | Encoded string | +=============+================================+ @@ -48007,14 +48007,14 @@ Full description +-------------+--------------------------------+ | 157 | Ticket | +-------------+--------------------------------+ - - + + micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag) ************************************************************************ - + Int (tag 0) =========== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -48022,11 +48022,11 @@ Full description +------+----------------------+------------------------+ | int | Determined from data | $Z.t | +------+----------------------+------------------------+ - - + + String (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48036,11 +48036,11 @@ Full description +-----------------------+----------+------------------------------------+ | string | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Sequence (tag 2) ================ - + +-----------------------+----------+-----------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================================+ @@ -48050,11 +48050,11 @@ Full description +-----------------------+----------+-----------------------------------------------------+ | Unnamed field 0 | Variable | sequence of $micheline.beta.michelson_v1.expression | +-----------------------+----------+-----------------------------------------------------+ - - + + Prim__no_args__no_annots (tag 3) ================================ - + +------+--------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+========+===================================================================================+ @@ -48062,11 +48062,11 @@ Full description +------+--------+-----------------------------------------------------------------------------------+ | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) | +------+--------+-----------------------------------------------------------------------------------+ - - + + Prim__no_args__some_annots (tag 4) ================================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -48078,11 +48078,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__no_annots (tag 5) ============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -48092,11 +48092,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__some_annots (tag 6) ================================ - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -48110,11 +48110,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__no_annots (tag 7) =============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -48126,11 +48126,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg2 | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__some_annots (tag 8) ================================= - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -48146,11 +48146,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__generic (tag 9) ===================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -48166,11 +48166,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Bytes (tag 10) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48180,14 +48180,14 @@ Full description +-----------------------+----------+------------------------------------+ | bytes | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.contract_id (22 bytes, 8-bit tag) ************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -48195,11 +48195,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -48209,24 +48209,24 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + X_13 (Determined from data, 8-bit tag) ************************************** - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +----------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==========+======================+=========================================+ @@ -48238,11 +48238,11 @@ Full description +----------+----------------------+-----------------------------------------+ | ticketer | 22 bytes | $beta.contract_id | +----------+----------------------+-----------------------------------------+ - - + + X_8 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -48250,44 +48250,44 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_13 | +-----------------+----------------------+----------+ - - + + X_16 (1 byte, 8-bit tag) ************************ - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Fee (tag 2) =========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_14 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -48295,11 +48295,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | 1 byte | $X_16 | +-----------------+----------------------+----------+ - - + + X_17 **** - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -48309,11 +48309,11 @@ Full description +------------------+----------+------------------------+ | commitment_proof | 96 bytes | bytes | +------------------+----------+------------------------+ - - + + X_18 **** - + +-------+----------+------------------+ | Name | Size | Contents | +=======+==========+==================+ @@ -48321,11 +48321,11 @@ Full description +-------+----------+------------------+ | bob | 21 bytes | $public_key_hash | +-------+----------+------------------+ - - + + X_19 **** - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -48335,14 +48335,14 @@ Full description +-----------------+---------+----------------------------------+ | page_index | 2 bytes | signed 16-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + X_20 (Determined from data, 8-bit tag) ************************************** - + raw data proof (tag 0) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48352,21 +48352,21 @@ Full description +-----------------------+----------+------------------------------------+ | raw_data | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + metadata proof (tag 1) ====================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + dal page proof (tag 2) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48378,24 +48378,24 @@ Full description +-----------------------+----------+------------------------------------+ | dal_proof | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + dal parameters proof (tag 3) ============================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_21 (Determined from data, 8-bit tag) ************************************** - + inbox proof (tag 0) =================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -48409,11 +48409,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | serialized_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + reveal proof (tag 1) ==================== - + +--------------+----------------------+------------------------+ | Name | Size | Contents | +==============+======================+========================+ @@ -48421,21 +48421,21 @@ Full description +--------------+----------------------+------------------------+ | reveal_proof | Determined from data | $X_20 | +--------------+----------------------+------------------------+ - - + + first input (tag 2) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_22 **** - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -48445,14 +48445,14 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | tick | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + X_23 (Determined from data, 8-bit tag) ************************************** - + Dissection (tag 0) ================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48462,11 +48462,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_22 | +-----------------------+----------+------------------------------------+ - - + + Proof (tag 1) ============= - + +-----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +===================================+======================+=====================================+ @@ -48480,14 +48480,14 @@ Full description +-----------------------------------+----------------------+-------------------------------------+ | input_proof | Determined from data | $X_21 | +-----------------------------------+----------------------+-------------------------------------+ - - + + X_24 (Determined from data, 8-bit tag) ************************************** - + Start (tag 0) ============= - + +--------------------------+----------+------------------------+ | Name | Size | Contents | +==========================+==========+========================+ @@ -48497,11 +48497,11 @@ Full description +--------------------------+----------+------------------------+ | opponent_commitment_hash | 32 bytes | bytes | +--------------------------+----------+------------------------+ - - + + Move (tag 1) ============ - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -48511,11 +48511,11 @@ Full description +--------+----------------------+------------------------+ | step | Determined from data | $X_23 | +--------+----------------------+------------------------+ - - + + X_25 **** - + +------------------+----------+----------------------------------+ | Name | Size | Contents | +==================+==========+==================================+ @@ -48527,11 +48527,11 @@ Full description +------------------+----------+----------------------------------+ | number_of_ticks | 8 bytes | signed 64-bit big-endian integer | +------------------+----------+----------------------------------+ - - + + X_27 (Enumeration: unsigned 8-bit integer): ******************************************* - + +-------------+----------------+ | Case number | Encoded string | +=============+================+ @@ -48541,11 +48541,11 @@ Full description +-------------+----------------+ | 2 | riscv | +-------------+----------------+ - - + + X_28 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48553,14 +48553,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $public_key_hash | +-----------------------+----------+------------------------------------+ - - + + public_key (Determined from data, 8-bit tag) ******************************************** - + Ed25519 (tag 0) =============== - + +--------------------+----------+------------------------+ | Name | Size | Contents | +====================+==========+========================+ @@ -48568,11 +48568,11 @@ Full description +--------------------+----------+------------------------+ | Ed25519.Public_key | 32 bytes | bytes | +--------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -48580,11 +48580,11 @@ Full description +----------------------+----------+------------------------+ | Secp256k1.Public_key | 33 bytes | bytes | +----------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -48592,11 +48592,11 @@ Full description +-----------------+----------+------------------------+ | P256.Public_key | 33 bytes | bytes | +-----------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -48604,14 +48604,14 @@ Full description +----------------------+----------+------------------------+ | Bls12_381.Public_key | 48 bytes | bytes | +----------------------+----------+------------------------+ - - + + beta.contract_id.originated (22 bytes, 8-bit tag) ************************************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -48621,11 +48621,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + beta.scripted.contracts *********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48637,114 +48637,114 @@ Full description +-----------------------+----------+------------------------------------+ | storage | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.entrypoint (Determined from data, 8-bit tag) ************************************************* - + default (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + root (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + do (tag 2) ========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate (tag 3) ==================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + remove_delegate (tag 4) ======================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + deposit (tag 5) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + stake (tag 6) ============= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + unstake (tag 7) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + finalize_unstake (tag 8) ======================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate_parameters (tag 9) =============================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + named (tag 255) =============== - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -48754,11 +48754,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + X_29 **** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -48768,11 +48768,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + X_30 **** - + +-----------------+-----------+----------+ | Name | Size | Contents | +=================+===========+==========+ @@ -48780,14 +48780,14 @@ Full description +-----------------+-----------+----------+ | Unnamed field 1 | 100 bytes | bytes | +-----------------+-----------+----------+ - - + + beta.inlined.preattestation.contents (43 bytes, 8-bit tag) ********************************************************** - + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -48801,11 +48801,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + beta.inlined.preattestation *************************** - + +------------+----------+---------------------------------------+ | Name | Size | Contents | +============+==========+=======================================+ @@ -48815,11 +48815,11 @@ Full description +------------+----------+---------------------------------------+ | signature | Variable | bytes | +------------+----------+---------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -48827,104 +48827,104 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.per_block_votes (1 byte, 8-bit tag) **************************************** - + case_0 (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_1 (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_2 (tag 2) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_4 (tag 4) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_5 (tag 5) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_6 (tag 6) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_8 (tag 8) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_9 (tag 9) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_10 (tag 10) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + beta.block_header.alpha.full_header *********************************** - + +---------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================================+==========+=====================================+ @@ -48960,14 +48960,14 @@ Full description +---------------------------------------+----------+-------------------------------------+ | signature | Variable | bytes | +---------------------------------------+----------+-------------------------------------+ - - + + beta.inlined.attestation_mempool.contents (Determined from data, 8-bit tag) *************************************************************************** - + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -48981,11 +48981,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -49001,11 +49001,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + beta.inlined.attestation ************************ - + +------------+----------------------+--------------------------------------------+ | Name | Size | Contents | +============+======================+============================================+ @@ -49015,14 +49015,14 @@ Full description +------------+----------------------+--------------------------------------------+ | signature | Variable | bytes | +------------+----------------------+--------------------------------------------+ - - + + beta.operation.alpha.contents (Determined from data, 8-bit tag) *************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -49032,11 +49032,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -49050,11 +49050,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -49068,11 +49068,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -49082,11 +49082,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -49100,11 +49100,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -49118,11 +49118,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -49136,11 +49136,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -49148,11 +49148,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_30 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -49164,11 +49164,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -49178,11 +49178,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -49196,11 +49196,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -49214,11 +49214,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -49234,11 +49234,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49256,11 +49256,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -49284,11 +49284,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_29 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -49312,11 +49312,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -49336,11 +49336,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -49360,11 +49360,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -49384,11 +49384,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -49408,11 +49408,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49430,11 +49430,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -49468,11 +49468,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -49502,11 +49502,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_28 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -49526,11 +49526,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_2 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49548,11 +49548,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49572,11 +49572,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49598,11 +49598,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_24 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49622,11 +49622,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -49650,11 +49650,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49674,11 +49674,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49696,11 +49696,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_17 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -49730,11 +49730,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -49756,11 +49756,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_8 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -49780,14 +49780,14 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_0 | +---------------+----------------------+------------------------+ - - + + beta.staker (Determined from data, 8-bit tag) ********************************************* - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -49797,11 +49797,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -49809,14 +49809,14 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + beta.bond_id (21 bytes, 8-bit tag) ********************************** - + Smart_rollup_bond_id (tag 1) ============================ - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -49824,14 +49824,14 @@ Full description +--------------+----------+------------------------+ | smart_rollup | 20 bytes | bytes | +--------------+----------+------------------------+ - - + + beta.frozen_staker (Determined from data, 8-bit tag) **************************************************** - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -49841,11 +49841,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -49853,11 +49853,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Baker (tag 2) ============= - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -49865,11 +49865,11 @@ Full description +-----------------+----------+------------------------+ | baker_own_stake | 21 bytes | $public_key_hash | +-----------------+----------+------------------------+ - - + + Baker_edge (tag 3) ================== - + +------------+----------+------------------------+ | Name | Size | Contents | +============+==========+========================+ @@ -49877,14 +49877,14 @@ Full description +------------+----------+------------------------+ | baker_edge | 21 bytes | $public_key_hash | +------------+----------+------------------------+ - - + + X_41 (Determined from data, 8-bit tag) ************************************** - + Contract (tag 0) ================ - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -49894,11 +49894,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Block_fees (tag 2) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -49906,11 +49906,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Deposits (tag 4) ================ - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -49920,11 +49920,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Nonce_revelation_rewards (tag 5) ================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -49932,11 +49932,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Attesting_rewards (tag 7) ========================= - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -49944,11 +49944,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_rewards (tag 8) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -49956,11 +49956,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_bonuses (tag 9) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -49968,11 +49968,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Storage_fees (tag 11) ===================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -49980,11 +49980,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Double_signing_punishments (tag 12) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -49992,11 +49992,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Lost_attesting_rewards (tag 13) =============================== - + +---------------+----------+-------------------------------------+ | Name | Size | Contents | +===============+==========+=====================================+ @@ -50010,11 +50010,11 @@ Full description +---------------+----------+-------------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +---------------+----------+-------------------------------------+ - - + + Liquidity_baking_subsidies (tag 14) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50022,11 +50022,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Burned (tag 15) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50034,11 +50034,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Commitments (tag 16) ==================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -50048,11 +50048,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Bootstrap (tag 17) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50060,11 +50060,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Invoice (tag 18) ================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50072,11 +50072,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Initial_commitments (tag 19) ============================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50084,11 +50084,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Minted (tag 20) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50096,11 +50096,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Frozen_bonds (tag 21) ===================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -50112,11 +50112,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Smart_rollup_refutation_punishments (tag 24) ============================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50124,11 +50124,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Smart_rollup_refutation_rewards (tag 25) ======================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -50136,11 +50136,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Unstaked_deposits (tag 26) ========================== - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -50152,11 +50152,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Staking_delegator_numerator (tag 27) ==================================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -50166,11 +50166,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Staking_delegate_denominator (tag 28) ===================================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -50180,54 +50180,54 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + X_42 (Determined from data, 8-bit tag) ************************************** - + Block_application (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Protocol_migration (tag 1) ========================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Subsidy (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Simulation (tag 3) ================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Delayed_operation (tag 4) ========================= - + +------------------------+----------+------------------------+ | Name | Size | Contents | +========================+==========+========================+ @@ -50235,11 +50235,11 @@ Full description +------------------------+----------+------------------------+ | delayed_operation_hash | 32 bytes | bytes | +------------------------+----------+------------------------+ - - + + X_40 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -50247,11 +50247,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_42 | +-----------------+----------------------+----------+ - - + + X_43 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50259,14 +50259,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag) **************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -50280,11 +50280,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50294,21 +50294,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -50326,14 +50326,14 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + beta.transaction_destination (22 bytes, 8-bit tag) ************************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -50341,11 +50341,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -50355,11 +50355,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + Smart_rollup (tag 3) ==================== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -50369,11 +50369,11 @@ Full description +----------------------+----------+------------------------+ | padding | 1 byte | padding | +----------------------+----------+------------------------+ - - + + Zk_rollup (tag 4) ================= - + +----------------+----------+------------------------+ | Name | Size | Contents | +================+==========+========================+ @@ -50383,14 +50383,14 @@ Full description +----------------+----------+------------------------+ | padding | 1 byte | padding | +----------------+----------+------------------------+ - - + + beta.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag) ************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -50398,11 +50398,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50412,21 +50412,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -50438,14 +50438,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -50457,11 +50457,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50471,21 +50471,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -50501,11 +50501,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + sapling.transaction.ciphertext ****************************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50523,11 +50523,11 @@ Full description +-----------------------+----------+------------------------------------+ | nonce_out | 24 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_65 **** - + +-----------------+----------------------+---------------------------------+ | Name | Size | Contents | +=================+======================+=================================+ @@ -50535,11 +50535,11 @@ Full description +-----------------+----------------------+---------------------------------+ | Unnamed field 1 | Determined from data | $sapling.transaction.ciphertext | +-----------------+----------------------+---------------------------------+ - - + + X_64 **** - + +-----------------------------+----------+------------------------------------+ | Name | Size | Contents | +=============================+==========+====================================+ @@ -50551,14 +50551,14 @@ Full description +-----------------------------+----------+------------------------------------+ | nullifiers | Variable | sequence of bytes | +-----------------------------+----------+------------------------------------+ - - + + X_70 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -50566,21 +50566,21 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_64 | +---------+----------------------+------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -50590,11 +50590,11 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_64 | +---------+----------------------+------------------------+ - - + + alloc (tag 3) ============= - + +-----------+----------------------+------------------------------------+ | Name | Size | Contents | +===========+======================+====================================+ @@ -50604,11 +50604,11 @@ Full description +-----------+----------------------+------------------------------------+ | memo_size | 2 bytes | unsigned 16-bit big-endian integer | +-----------+----------------------+------------------------------------+ - - + + X_71 **** - + +-----------------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=============================+======================+=========================================+ @@ -50620,14 +50620,14 @@ Full description +-----------------------------+----------------------+-----------------------------------------+ | value | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------------+----------------------+-----------------------------------------+ - - + + X_82 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50637,21 +50637,21 @@ Full description +-----------------------+----------+------------------------------------+ | updates | Variable | sequence of $X_71 | +-----------------------+----------+------------------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -50663,11 +50663,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_71 | +-----------------------+----------------------+------------------------------------+ - - + + alloc (tag 3) ============= - + +-----------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================+ @@ -50681,14 +50681,14 @@ Full description +-----------------------+----------------------+-----------------------------------------+ | value_type | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------+----------------------+-----------------------------------------+ - - + + X_83 (Determined from data, 8-bit tag) ************************************** - + big_map (tag 0) =============== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -50698,11 +50698,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_82 | +------+----------------------+------------------------+ - - + + sapling_state (tag 1) ===================== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -50712,11 +50712,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_70 | +------+----------------------+------------------------+ - - + + beta.lazy_storage_diff ********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50724,14 +50724,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_83 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -50755,11 +50755,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50769,21 +50769,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -50811,11 +50811,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + X_110 ***** - + +--------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==============+======================+=========================================+ @@ -50825,11 +50825,11 @@ Full description +--------------+----------------------+-----------------------------------------+ | content | Determined from data | $micheline.beta.michelson_v1.expression | +--------------+----------------------+-----------------------------------------+ - - + + X_113 ***** - + +---------+----------------------+-------------------------------+ | Name | Size | Contents | +=========+======================+===============================+ @@ -50837,11 +50837,11 @@ Full description +---------+----------------------+-------------------------------+ | amount | Determined from data | $Z.t | +---------+----------------------+-------------------------------+ - - + + X_109 ***** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -50851,14 +50851,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_113 | +-----------------------+----------------------+------------------------------------+ - - + + X_143 (Determined from data, 8-bit tag) *************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -50892,11 +50892,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -50908,14 +50908,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_receipt | Variable | sequence of $X_109 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -50923,11 +50923,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_143 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -50937,21 +50937,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -50963,14 +50963,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_143 | +------------------------------+----------------------+-------------------------------------+ - - + + beta.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag) ************************************************************************************ - + transaction (tag 1) =================== - + +----------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +==================================+======================+=============================================================+ @@ -50990,11 +50990,11 @@ Full description +----------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.transaction | +----------------------------------+----------------------+-------------------------------------------------------------+ - - + + origination (tag 2) =================== - + +--------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+=============================================================+ @@ -51014,11 +51014,11 @@ Full description +--------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.origination | +--------------------------------+----------------------+-------------------------------------------------------------+ - - + + delegation (tag 3) ================== - + +--------------------------------+----------------------+------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+============================================================+ @@ -51034,11 +51034,11 @@ Full description +--------------------------------+----------------------+------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.delegation | +--------------------------------+----------------------+------------------------------------------------------------+ - - + + event (tag 4) ============= - + +-------------------------------+----------------------+-------------------------------------------------------+ | Name | Size | Contents | +===============================+======================+=======================================================+ @@ -51060,11 +51060,11 @@ Full description +-------------------------------+----------------------+-------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.event | +-------------------------------+----------------------+-------------------------------------------------------+ - - + + X_39 **** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51078,14 +51078,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag) ***************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -51099,11 +51099,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51113,21 +51113,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51145,11 +51145,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_185 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51163,14 +51163,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag) ********************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -51186,11 +51186,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51200,21 +51200,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51234,11 +51234,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_328 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51252,14 +51252,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_474 (54 bytes, 8-bit tag) *************************** - + v0 (tag 0) ========== - + +------------+----------+----------------------------------+ | Name | Size | Contents | +============+==========+==================================+ @@ -51271,14 +51271,14 @@ Full description +------------+----------+----------------------------------+ | commitment | 48 bytes | bytes | +------------+----------+----------------------------------+ - - + + beta.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -51288,11 +51288,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51302,21 +51302,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -51330,11 +51330,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + X_469 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51348,14 +51348,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag) ************************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -51367,11 +51367,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51381,21 +51381,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51411,11 +51411,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_605 ***** - + +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==================================================================+ @@ -51429,24 +51429,24 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ - - + + X_759 (Determined from data, 8-bit tag) *************************************** - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +-----------+----------------------+------------------------+ | Name | Size | Contents | +===========+======================+========================+ @@ -51454,14 +51454,14 @@ Full description +-----------+----------------------+------------------------+ | whitelist | Determined from data | $X_28 | +-----------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag) *********************************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51483,11 +51483,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51497,21 +51497,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51537,11 +51537,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_745 ***** - + +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+============================================================================+ @@ -51555,37 +51555,37 @@ Full description +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ - - + + X_905 (1 byte, 8-bit tag) ************************* - + Conflict_resolved (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Timeout (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_906 (Determined from data, 8-bit tag) *************************************** - + Loser (tag 0) ============= - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -51595,34 +51595,34 @@ Full description +--------+----------+------------------------+ | player | 21 bytes | $public_key_hash | +--------+----------+------------------------+ - - + + Draw (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_907 (Determined from data, 8-bit tag) *************************************** - + Ongoing (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Ended (tag 1) ============= - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -51630,14 +51630,14 @@ Full description +--------+----------------------+------------------------+ | result | Determined from data | $X_906 | +--------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -51651,11 +51651,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51665,21 +51665,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51697,11 +51697,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_900 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51715,14 +51715,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -51738,11 +51738,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51752,21 +51752,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51786,11 +51786,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1199 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51804,14 +51804,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +-------------------+----------------------+----------------------------------+ | Name | Size | Contents | +===================+======================+==================================+ @@ -51823,11 +51823,11 @@ Full description +-------------------+----------------------+----------------------------------+ | commitment_hash | 32 bytes | bytes | +-------------------+----------------------+----------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51837,21 +51837,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -51867,11 +51867,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | commitment_hash | 32 bytes | bytes | +------------------------------+----------------------+-------------------------------------+ - - + + X_1339 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51885,11 +51885,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_1474 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51903,14 +51903,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -51928,11 +51928,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -51942,21 +51942,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -51978,11 +51978,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1610 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -51996,14 +51996,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag) *************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -52021,11 +52021,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -52035,21 +52035,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -52071,11 +52071,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1750 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -52089,14 +52089,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag) ************************************************************************************************ - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -52112,11 +52112,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -52126,21 +52126,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -52160,11 +52160,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_2308 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -52178,11 +52178,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2448 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -52196,11 +52196,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2588 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -52214,14 +52214,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2808 (Determined from data, 8-bit tag) **************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -52255,11 +52255,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -52271,14 +52271,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_updates | Variable | sequence of $X_109 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag) *********************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -52286,11 +52286,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_2808 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -52300,21 +52300,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -52326,11 +52326,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_2808 | +------------------------------+----------------------+-------------------------------------+ - - + + X_2769 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -52344,11 +52344,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_3107 ****** - + +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=========================================================================+ @@ -52362,11 +52362,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | consensus_key | 21 bytes | $public_key_hash | +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ - - + + X_3119 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -52376,11 +52376,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | allocated_destination_contract | 1 byte | boolean (0 for false, 255 for true) | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation_metadata.alpha.balance_updates ********************************************* - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -52388,11 +52388,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_40 | +-----------------------+----------+------------------------------------+ - - + + X_3127 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -52404,14 +52404,14 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag) ************************************************************************************ - + Seed_nonce_revelation (tag 1) ============================= - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -52423,11 +52423,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -52443,11 +52443,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3127 | +-----------------------+----------------------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------------------+--------------------------------------+ | Name | Size | Contents | +=======================+======================+======================================+ @@ -52463,11 +52463,11 @@ Full description +-----------------------+----------------------+--------------------------------------+ | metadata | Determined from data | $X_3127 | +-----------------------+----------------------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -52479,11 +52479,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -52497,11 +52497,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -52515,11 +52515,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -52535,11 +52535,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3127 | +-----------------------+----------------------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -52549,11 +52549,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -52567,11 +52567,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_3119 | +---------------+----------------------+------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -52587,11 +52587,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3107 | +--------------------+----------------------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -52607,11 +52607,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3107 | +--------------------+----------------------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -52629,11 +52629,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3107 | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -52653,11 +52653,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1474 | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -52683,11 +52683,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2769 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -52713,11 +52713,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2588 | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -52739,11 +52739,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2448 | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -52765,11 +52765,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_2308 | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -52791,11 +52791,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_1474 | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -52817,11 +52817,11 @@ Full description +---------------+----------------------+------------------------------+ | metadata | Determined from data | $X_605 | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -52841,11 +52841,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1474 | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -52881,11 +52881,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1750 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -52917,11 +52917,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | metadata | Determined from data | $X_1610 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -52943,11 +52943,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1474 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -52967,11 +52967,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1339 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -52993,11 +52993,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1199 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53021,11 +53021,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_900 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53047,11 +53047,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_900 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -53077,11 +53077,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_745 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53103,11 +53103,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_605 | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53127,11 +53127,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_469 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -53163,11 +53163,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | metadata | Determined from data | $X_328 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -53191,11 +53191,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_185 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53217,14 +53217,14 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_39 | +---------------+----------------------+------------------------+ - - + + X_3145 (Variable, 8-bit tag) **************************** - + Operation_with_metadata (tag 0) =============================== - + +-----------------------+----------+-----------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=================================================================+ @@ -53236,11 +53236,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------+ - - + + Operation_without_metadata (tag 1) ================================== - + +-----------------------+----------+--------------------------------------------+ | Name | Size | Contents | +=======================+==========+============================================+ @@ -53252,14 +53252,14 @@ Full description +-----------------------+----------+--------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+--------------------------------------------+ - - + + bls_signature_prefix (33 bytes, 8-bit tag) ****************************************** - + Bls_prefix (tag 3) ================== - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -53267,14 +53267,14 @@ Full description +-----------------+----------+------------------------+ | Unnamed field 0 | 32 bytes | bytes | +-----------------+----------+------------------------+ - - + + beta.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag) *********************************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -53284,11 +53284,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -53302,11 +53302,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -53320,11 +53320,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -53334,11 +53334,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -53352,11 +53352,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -53370,11 +53370,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -53388,11 +53388,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -53400,11 +53400,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_30 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -53416,11 +53416,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -53430,11 +53430,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -53448,11 +53448,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -53466,11 +53466,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -53486,11 +53486,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53508,11 +53508,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -53536,11 +53536,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_29 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -53564,11 +53564,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -53588,11 +53588,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -53612,11 +53612,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -53636,11 +53636,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -53660,11 +53660,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53682,11 +53682,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -53720,11 +53720,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -53754,11 +53754,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_28 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -53778,11 +53778,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_2 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53800,11 +53800,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53824,11 +53824,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53850,11 +53850,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_24 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53874,11 +53874,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -53902,11 +53902,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53926,11 +53926,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -53948,11 +53948,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_17 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -53982,11 +53982,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -54008,11 +54008,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_8 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -54032,11 +54032,11 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_0 | +---------------+----------------------+------------------------+ - - + + Signature_prefix (tag 255) ========================== - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -54044,14 +54044,14 @@ Full description +------------------+----------+------------------------+ | signature_prefix | 33 bytes | $bls_signature_prefix | +------------------+----------+------------------------+ - - + + X_3208 (Variable, 8-bit tag) **************************** - + Operation with too large metadata (tag 0) ========================================= - + +-------------------------------+----------+----------------------------------------------------------------+ | Name | Size | Contents | +===============================+==========+================================================================+ @@ -54061,11 +54061,11 @@ Full description +-------------------------------+----------+----------------------------------------------------------------+ | signature_suffix | 64 bytes | bytes | +-------------------------------+----------+----------------------------------------------------------------+ - - + + Operation without metadata (tag 1) ================================== - + +-------------------------------+----------+----------------------------------------------------------------+ | Name | Size | Contents | +===============================+==========+================================================================+ @@ -54075,11 +54075,11 @@ Full description +-------------------------------+----------+----------------------------------------------------------------+ | signature_suffix | 64 bytes | bytes | +-------------------------------+----------+----------------------------------------------------------------+ - - + + Operation with metadata (tag 2) =============================== - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -54087,11 +54087,11 @@ Full description +-----------------+----------+------------------------+ | Unnamed field 0 | Variable | $X_3145 | +-----------------+----------+------------------------+ - - + + operation ********* - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -54107,17 +54107,17 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | $X_3208 | +-----------------------+----------+------------------------------------+ - +
- + .. _GET_..--block_id--operations--list_offset--operation_offset : **GET ..//operations//?[version=]&[force_metadata]&[metadata=]** .. raw:: html - +
@@ -56717,7 +56717,7 @@ Full description "annots"?: [ $unistring ... ] } $operation: { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -56725,14 +56725,14 @@ Full description "signature"?: $Signature.V1, "metadata": "too large" } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, "contents": [ $beta.operation.alpha.contents ... ], "signature"?: $Signature.V1 } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -56740,7 +56740,7 @@ Full description [ $beta.operation.alpha.operation_contents_and_result ... ], "signature"?: $Signature.V1 } || { /* An operation's shell header. */ - "protocol": "Pryvov7W58MarviENnpHhtywmQbLZYg4pWpzNLdBHMSQnUuujVY", + "protocol": "PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT", "chain_id": $Chain_id, "hash": $Operation_hash, "branch": $block_hash, @@ -56803,14 +56803,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | $X_3208 | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -56818,11 +56818,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -56830,11 +56830,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -56842,11 +56842,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -56854,23 +56854,23 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + N.t *** - + A variable-length sequence of bytes encoding a Zarith natural number. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). Size bits ignored, the data is the binary representation of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | N.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_2 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -56878,11 +56878,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + X_3 *** - + +-----------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================+ @@ -56894,11 +56894,11 @@ Full description +-----------------------+----------+-------------------------------------+ | exit_validity | 1 byte | boolean (0 for false, 255 for true) | +-----------------------+----------+-------------------------------------+ - - + + X_1 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -56906,11 +56906,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_3 | +-----------------+----------------------+----------+ - - + + X_6 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -56920,11 +56920,11 @@ Full description +-----------------------+----------+------------------------------------+ | fee | 32 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_4 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -56932,11 +56932,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_6 | +-----------------+----------------------+----------+ - - + + X_7 *** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -56944,11 +56944,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of bytes | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -56966,23 +56966,23 @@ Full description +-----------------------+----------------------+------------------------------------+ | proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Z.t *** - + A variable-length sequence of bytes encoding a Zarith integer. Each byte has a running unary size bit: the most significant bit of each byte indicates whether this is the last byte in the sequence (0) or whether the sequence continues (1). The second most significant bit of the first byte is reserved for the sign (0 for positive, 1 for negative). Size and sign bits ignored, the data is the binary representation of the absolute value of the number in little-endian order. - + +------+----------------------+----------+ | Name | Size | Contents | +======+======================+==========+ | Z.t | Determined from data | bytes | +------+----------------------+----------+ - - + + X_10 **** - + +--------+----------------------+----------+ | Name | Size | Contents | +========+======================+==========+ @@ -56990,11 +56990,11 @@ Full description +--------+----------------------+----------+ | amount | Determined from data | $Z.t | +--------+----------------------+----------+ - - + + X_9 *** - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -57010,11 +57010,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | payload | Variable | sequence of bytes | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + beta.michelson.v1.primitives (Enumeration: unsigned 8-bit integer): ******************************************************************* - + +-------------+--------------------------------+ | Case number | Encoded string | +=============+================================+ @@ -57334,14 +57334,14 @@ Full description +-------------+--------------------------------+ | 157 | Ticket | +-------------+--------------------------------+ - - + + micheline.beta.michelson_v1.expression (Determined from data, 8-bit tag) ************************************************************************ - + Int (tag 0) =========== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -57349,11 +57349,11 @@ Full description +------+----------------------+------------------------+ | int | Determined from data | $Z.t | +------+----------------------+------------------------+ - - + + String (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -57363,11 +57363,11 @@ Full description +-----------------------+----------+------------------------------------+ | string | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Sequence (tag 2) ================ - + +-----------------------+----------+-----------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=====================================================+ @@ -57377,11 +57377,11 @@ Full description +-----------------------+----------+-----------------------------------------------------+ | Unnamed field 0 | Variable | sequence of $micheline.beta.michelson_v1.expression | +-----------------------+----------+-----------------------------------------------------+ - - + + Prim__no_args__no_annots (tag 3) ================================ - + +------+--------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+========+===================================================================================+ @@ -57389,11 +57389,11 @@ Full description +------+--------+-----------------------------------------------------------------------------------+ | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see beta.michelson.v1.primitives) | +------+--------+-----------------------------------------------------------------------------------+ - - + + Prim__no_args__some_annots (tag 4) ================================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -57405,11 +57405,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__no_annots (tag 5) ============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -57419,11 +57419,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__1_arg__some_annots (tag 6) ================================ - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -57437,11 +57437,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__no_annots (tag 7) =============================== - + +------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +======+======================+===================================================================================+ @@ -57453,11 +57453,11 @@ Full description +------+----------------------+-----------------------------------------------------------------------------------+ | arg2 | Determined from data | $micheline.beta.michelson_v1.expression | +------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__2_args__some_annots (tag 8) ================================= - + +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+===================================================================================+ @@ -57473,11 +57473,11 @@ Full description +-----------------------+----------------------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------------------+-----------------------------------------------------------------------------------+ - - + + Prim__generic (tag 9) ===================== - + +-----------------------+----------+-----------------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+===================================================================================+ @@ -57493,11 +57493,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------------------------+ | annots | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------------------------+ - - + + Bytes (tag 10) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -57507,14 +57507,14 @@ Full description +-----------------------+----------+------------------------------------+ | bytes | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.contract_id (22 bytes, 8-bit tag) ************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -57522,11 +57522,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -57536,24 +57536,24 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + X_13 (Determined from data, 8-bit tag) ************************************** - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +----------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==========+======================+=========================================+ @@ -57565,11 +57565,11 @@ Full description +----------+----------------------+-----------------------------------------+ | ticketer | 22 bytes | $beta.contract_id | +----------+----------------------+-----------------------------------------+ - - + + X_8 *** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -57577,44 +57577,44 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_13 | +-----------------+----------------------+----------+ - - + + X_16 (1 byte, 8-bit tag) ************************ - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Fee (tag 2) =========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_14 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -57622,11 +57622,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | 1 byte | $X_16 | +-----------------+----------------------+----------+ - - + + X_17 **** - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -57636,11 +57636,11 @@ Full description +------------------+----------+------------------------+ | commitment_proof | 96 bytes | bytes | +------------------+----------+------------------------+ - - + + X_18 **** - + +-------+----------+------------------+ | Name | Size | Contents | +=======+==========+==================+ @@ -57648,11 +57648,11 @@ Full description +-------+----------+------------------+ | bob | 21 bytes | $public_key_hash | +-------+----------+------------------+ - - + + X_19 **** - + +-----------------+---------+----------------------------------+ | Name | Size | Contents | +=================+=========+==================================+ @@ -57662,14 +57662,14 @@ Full description +-----------------+---------+----------------------------------+ | page_index | 2 bytes | signed 16-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + + X_20 (Determined from data, 8-bit tag) ************************************** - + raw data proof (tag 0) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -57679,21 +57679,21 @@ Full description +-----------------------+----------+------------------------------------+ | raw_data | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + metadata proof (tag 1) ====================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + dal page proof (tag 2) ====================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -57705,24 +57705,24 @@ Full description +-----------------------+----------+------------------------------------+ | dal_proof | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + dal parameters proof (tag 3) ============================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_21 (Determined from data, 8-bit tag) ************************************** - + inbox proof (tag 0) =================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -57736,11 +57736,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | serialized_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + reveal proof (tag 1) ==================== - + +--------------+----------------------+------------------------+ | Name | Size | Contents | +==============+======================+========================+ @@ -57748,21 +57748,21 @@ Full description +--------------+----------------------+------------------------+ | reveal_proof | Determined from data | $X_20 | +--------------+----------------------+------------------------+ - - + + first input (tag 2) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_22 **** - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -57772,14 +57772,14 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | tick | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + X_23 (Determined from data, 8-bit tag) ************************************** - + Dissection (tag 0) ================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -57789,11 +57789,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_22 | +-----------------------+----------+------------------------------------+ - - + + Proof (tag 1) ============= - + +-----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +===================================+======================+=====================================+ @@ -57807,14 +57807,14 @@ Full description +-----------------------------------+----------------------+-------------------------------------+ | input_proof | Determined from data | $X_21 | +-----------------------------------+----------------------+-------------------------------------+ - - + + X_24 (Determined from data, 8-bit tag) ************************************** - + Start (tag 0) ============= - + +--------------------------+----------+------------------------+ | Name | Size | Contents | +==========================+==========+========================+ @@ -57824,11 +57824,11 @@ Full description +--------------------------+----------+------------------------+ | opponent_commitment_hash | 32 bytes | bytes | +--------------------------+----------+------------------------+ - - + + Move (tag 1) ============ - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -57838,11 +57838,11 @@ Full description +--------+----------------------+------------------------+ | step | Determined from data | $X_23 | +--------+----------------------+------------------------+ - - + + X_25 **** - + +------------------+----------+----------------------------------+ | Name | Size | Contents | +==================+==========+==================================+ @@ -57854,11 +57854,11 @@ Full description +------------------+----------+----------------------------------+ | number_of_ticks | 8 bytes | signed 64-bit big-endian integer | +------------------+----------+----------------------------------+ - - + + X_27 (Enumeration: unsigned 8-bit integer): ******************************************* - + +-------------+----------------+ | Case number | Encoded string | +=============+================+ @@ -57868,11 +57868,11 @@ Full description +-------------+----------------+ | 2 | riscv | +-------------+----------------+ - - + + X_28 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -57880,14 +57880,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $public_key_hash | +-----------------------+----------+------------------------------------+ - - + + public_key (Determined from data, 8-bit tag) ******************************************** - + Ed25519 (tag 0) =============== - + +--------------------+----------+------------------------+ | Name | Size | Contents | +====================+==========+========================+ @@ -57895,11 +57895,11 @@ Full description +--------------------+----------+------------------------+ | Ed25519.Public_key | 32 bytes | bytes | +--------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -57907,11 +57907,11 @@ Full description +----------------------+----------+------------------------+ | Secp256k1.Public_key | 33 bytes | bytes | +----------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -57919,11 +57919,11 @@ Full description +-----------------+----------+------------------------+ | P256.Public_key | 33 bytes | bytes | +-----------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -57931,14 +57931,14 @@ Full description +----------------------+----------+------------------------+ | Bls12_381.Public_key | 48 bytes | bytes | +----------------------+----------+------------------------+ - - + + beta.contract_id.originated (22 bytes, 8-bit tag) ************************************************* - + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -57948,11 +57948,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + beta.scripted.contracts *********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -57964,114 +57964,114 @@ Full description +-----------------------+----------+------------------------------------+ | storage | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.entrypoint (Determined from data, 8-bit tag) ************************************************* - + default (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + root (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + do (tag 2) ========== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate (tag 3) ==================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + remove_delegate (tag 4) ======================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + deposit (tag 5) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + stake (tag 6) ============= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + unstake (tag 7) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + finalize_unstake (tag 8) ======================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + set_delegate_parameters (tag 9) =============================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + named (tag 255) =============== - + +-----------------------+----------+------------------------+ | Name | Size | Contents | +=======================+==========+========================+ @@ -58081,11 +58081,11 @@ Full description +-----------------------+----------+------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------+ - - + + X_29 **** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -58095,11 +58095,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + X_30 **** - + +-----------------+-----------+----------+ | Name | Size | Contents | +=================+===========+==========+ @@ -58107,14 +58107,14 @@ Full description +-----------------+-----------+----------+ | Unnamed field 1 | 100 bytes | bytes | +-----------------+-----------+----------+ - - + + beta.inlined.preattestation.contents (43 bytes, 8-bit tag) ********************************************************** - + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -58128,11 +58128,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + beta.inlined.preattestation *************************** - + +------------+----------+---------------------------------------+ | Name | Size | Contents | +============+==========+=======================================+ @@ -58142,11 +58142,11 @@ Full description +------------+----------+---------------------------------------+ | signature | Variable | bytes | +------------+----------+---------------------------------------+ - - + + fitness.elem ************ - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -58154,104 +58154,104 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + beta.per_block_votes (1 byte, 8-bit tag) **************************************** - + case_0 (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_1 (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_2 (tag 2) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_4 (tag 4) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_5 (tag 5) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_6 (tag 6) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_8 (tag 8) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_9 (tag 9) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + case_10 (tag 10) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + beta.block_header.alpha.full_header *********************************** - + +---------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +=======================================+==========+=====================================+ @@ -58287,14 +58287,14 @@ Full description +---------------------------------------+----------+-------------------------------------+ | signature | Variable | bytes | +---------------------------------------+----------+-------------------------------------+ - - + + beta.inlined.attestation_mempool.contents (Determined from data, 8-bit tag) *************************************************************************** - + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -58308,11 +58308,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -58328,11 +58328,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + beta.inlined.attestation ************************ - + +------------+----------------------+--------------------------------------------+ | Name | Size | Contents | +============+======================+============================================+ @@ -58342,14 +58342,14 @@ Full description +------------+----------------------+--------------------------------------------+ | signature | Variable | bytes | +------------+----------------------+--------------------------------------------+ - - + + beta.operation.alpha.contents (Determined from data, 8-bit tag) *************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -58359,11 +58359,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -58377,11 +58377,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -58395,11 +58395,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -58409,11 +58409,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -58427,11 +58427,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -58445,11 +58445,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -58463,11 +58463,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -58475,11 +58475,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_30 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -58491,11 +58491,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -58505,11 +58505,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -58523,11 +58523,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -58541,11 +58541,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -58561,11 +58561,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -58583,11 +58583,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -58611,11 +58611,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_29 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -58639,11 +58639,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -58663,11 +58663,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -58687,11 +58687,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -58711,11 +58711,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -58735,11 +58735,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -58757,11 +58757,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -58795,11 +58795,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -58829,11 +58829,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_28 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -58853,11 +58853,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_2 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -58875,11 +58875,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -58899,11 +58899,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -58925,11 +58925,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_24 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -58949,11 +58949,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -58977,11 +58977,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -59001,11 +59001,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -59023,11 +59023,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_17 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -59057,11 +59057,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -59083,11 +59083,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_8 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -59107,14 +59107,14 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_0 | +---------------+----------------------+------------------------+ - - + + beta.staker (Determined from data, 8-bit tag) ********************************************* - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -59124,11 +59124,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -59136,14 +59136,14 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + beta.bond_id (21 bytes, 8-bit tag) ********************************** - + Smart_rollup_bond_id (tag 1) ============================ - + +--------------+----------+------------------------+ | Name | Size | Contents | +==============+==========+========================+ @@ -59151,14 +59151,14 @@ Full description +--------------+----------+------------------------+ | smart_rollup | 20 bytes | bytes | +--------------+----------+------------------------+ - - + + beta.frozen_staker (Determined from data, 8-bit tag) **************************************************** - + Single (tag 0) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -59168,11 +59168,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Shared (tag 1) ============== - + +----------+----------+------------------------+ | Name | Size | Contents | +==========+==========+========================+ @@ -59180,11 +59180,11 @@ Full description +----------+----------+------------------------+ | delegate | 21 bytes | $public_key_hash | +----------+----------+------------------------+ - - + + Baker (tag 2) ============= - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -59192,11 +59192,11 @@ Full description +-----------------+----------+------------------------+ | baker_own_stake | 21 bytes | $public_key_hash | +-----------------+----------+------------------------+ - - + + Baker_edge (tag 3) ================== - + +------------+----------+------------------------+ | Name | Size | Contents | +============+==========+========================+ @@ -59204,14 +59204,14 @@ Full description +------------+----------+------------------------+ | baker_edge | 21 bytes | $public_key_hash | +------------+----------+------------------------+ - - + + X_41 (Determined from data, 8-bit tag) ************************************** - + Contract (tag 0) ================ - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -59221,11 +59221,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Block_fees (tag 2) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59233,11 +59233,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Deposits (tag 4) ================ - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -59247,11 +59247,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Nonce_revelation_rewards (tag 5) ================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59259,11 +59259,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Attesting_rewards (tag 7) ========================= - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59271,11 +59271,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_rewards (tag 8) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59283,11 +59283,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Baking_bonuses (tag 9) ====================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59295,11 +59295,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Storage_fees (tag 11) ===================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59307,11 +59307,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Double_signing_punishments (tag 12) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59319,11 +59319,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Lost_attesting_rewards (tag 13) =============================== - + +---------------+----------+-------------------------------------+ | Name | Size | Contents | +===============+==========+=====================================+ @@ -59337,11 +59337,11 @@ Full description +---------------+----------+-------------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +---------------+----------+-------------------------------------+ - - + + Liquidity_baking_subsidies (tag 14) =================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59349,11 +59349,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Burned (tag 15) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59361,11 +59361,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Commitments (tag 16) ==================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -59375,11 +59375,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Bootstrap (tag 17) ================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59387,11 +59387,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Invoice (tag 18) ================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59399,11 +59399,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Initial_commitments (tag 19) ============================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59411,11 +59411,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Minted (tag 20) =============== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59423,11 +59423,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Frozen_bonds (tag 21) ===================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -59439,11 +59439,11 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + Smart_rollup_refutation_punishments (tag 24) ============================================ - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59451,11 +59451,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Smart_rollup_refutation_rewards (tag 25) ======================================== - + +--------+---------+----------------------------------+ | Name | Size | Contents | +========+=========+==================================+ @@ -59463,11 +59463,11 @@ Full description +--------+---------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+---------+----------------------------------+ - - + + Unstaked_deposits (tag 26) ========================== - + +--------+----------------------+----------------------------------+ | Name | Size | Contents | +========+======================+==================================+ @@ -59479,11 +59479,11 @@ Full description +--------+----------------------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +--------+----------------------+----------------------------------+ - - + + Staking_delegator_numerator (tag 27) ==================================== - + +-----------+----------+----------------------------------+ | Name | Size | Contents | +===========+==========+==================================+ @@ -59493,11 +59493,11 @@ Full description +-----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +-----------+----------+----------------------------------+ - - + + Staking_delegate_denominator (tag 28) ===================================== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -59507,54 +59507,54 @@ Full description +----------+----------+----------------------------------+ | change | 8 bytes | signed 64-bit big-endian integer | +----------+----------+----------------------------------+ - - + + X_42 (Determined from data, 8-bit tag) ************************************** - + Block_application (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Protocol_migration (tag 1) ========================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Subsidy (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Simulation (tag 3) ================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Delayed_operation (tag 4) ========================= - + +------------------------+----------+------------------------+ | Name | Size | Contents | +========================+==========+========================+ @@ -59562,11 +59562,11 @@ Full description +------------------------+----------+------------------------+ | delayed_operation_hash | 32 bytes | bytes | +------------------------+----------+------------------------+ - - + + X_40 **** - + +-----------------+----------------------+----------+ | Name | Size | Contents | +=================+======================+==========+ @@ -59574,11 +59574,11 @@ Full description +-----------------+----------------------+----------+ | Unnamed field 1 | Determined from data | $X_42 | +-----------------+----------------------+----------+ - - + + X_43 **** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -59586,14 +59586,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag) **************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -59607,11 +59607,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -59621,21 +59621,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -59653,14 +59653,14 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + beta.transaction_destination (22 bytes, 8-bit tag) ************************************************** - + Implicit (tag 0) ================ - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -59668,11 +59668,11 @@ Full description +---------------------------+----------+------------------------+ | Signature.Public_key_hash | 21 bytes | $public_key_hash | +---------------------------+----------+------------------------+ - - + + Originated (tag 1) ================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -59682,11 +59682,11 @@ Full description +---------------+----------+------------------------+ | padding | 1 byte | padding | +---------------+----------+------------------------+ - - + + Smart_rollup (tag 3) ==================== - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -59696,11 +59696,11 @@ Full description +----------------------+----------+------------------------+ | padding | 1 byte | padding | +----------------------+----------+------------------------+ - - + + Zk_rollup (tag 4) ================= - + +----------------+----------+------------------------+ | Name | Size | Contents | +================+==========+========================+ @@ -59710,14 +59710,14 @@ Full description +----------------+----------+------------------------+ | padding | 1 byte | padding | +----------------+----------+------------------------+ - - + + beta.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag) ************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -59725,11 +59725,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -59739,21 +59739,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -59765,14 +59765,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -59784,11 +59784,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -59798,21 +59798,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -59828,11 +59828,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + sapling.transaction.ciphertext ****************************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -59850,11 +59850,11 @@ Full description +-----------------------+----------+------------------------------------+ | nonce_out | 24 bytes | bytes | +-----------------------+----------+------------------------------------+ - - + + X_65 **** - + +-----------------+----------------------+---------------------------------+ | Name | Size | Contents | +=================+======================+=================================+ @@ -59862,11 +59862,11 @@ Full description +-----------------+----------------------+---------------------------------+ | Unnamed field 1 | Determined from data | $sapling.transaction.ciphertext | +-----------------+----------------------+---------------------------------+ - - + + X_64 **** - + +-----------------------------+----------+------------------------------------+ | Name | Size | Contents | +=============================+==========+====================================+ @@ -59878,14 +59878,14 @@ Full description +-----------------------------+----------+------------------------------------+ | nullifiers | Variable | sequence of bytes | +-----------------------------+----------+------------------------------------+ - - + + X_70 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -59893,21 +59893,21 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_64 | +---------+----------------------+------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +---------+----------------------+------------------------+ | Name | Size | Contents | +=========+======================+========================+ @@ -59917,11 +59917,11 @@ Full description +---------+----------------------+------------------------+ | updates | Determined from data | $X_64 | +---------+----------------------+------------------------+ - - + + alloc (tag 3) ============= - + +-----------+----------------------+------------------------------------+ | Name | Size | Contents | +===========+======================+====================================+ @@ -59931,11 +59931,11 @@ Full description +-----------+----------------------+------------------------------------+ | memo_size | 2 bytes | unsigned 16-bit big-endian integer | +-----------+----------------------+------------------------------------+ - - + + X_71 **** - + +-----------------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=============================+======================+=========================================+ @@ -59947,14 +59947,14 @@ Full description +-----------------------------+----------------------+-----------------------------------------+ | value | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------------+----------------------+-----------------------------------------+ - - + + X_82 (Determined from data, 8-bit tag) ************************************** - + update (tag 0) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -59964,21 +59964,21 @@ Full description +-----------------------+----------+------------------------------------+ | updates | Variable | sequence of $X_71 | +-----------------------+----------+------------------------------------+ - - + + remove (tag 1) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + copy (tag 2) ============ - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -59990,11 +59990,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_71 | +-----------------------+----------------------+------------------------------------+ - - + + alloc (tag 3) ============= - + +-----------------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================+ @@ -60008,14 +60008,14 @@ Full description +-----------------------+----------------------+-----------------------------------------+ | value_type | Determined from data | $micheline.beta.michelson_v1.expression | +-----------------------+----------------------+-----------------------------------------+ - - + + X_83 (Determined from data, 8-bit tag) ************************************** - + big_map (tag 0) =============== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -60025,11 +60025,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_82 | +------+----------------------+------------------------+ - - + + sapling_state (tag 1) ===================== - + +------+----------------------+------------------------+ | Name | Size | Contents | +======+======================+========================+ @@ -60039,11 +60039,11 @@ Full description +------+----------------------+------------------------+ | diff | Determined from data | $X_70 | +------+----------------------+------------------------+ - - + + beta.lazy_storage_diff ********************** - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60051,14 +60051,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_83 | +-----------------------+----------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -60082,11 +60082,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60096,21 +60096,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -60138,11 +60138,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + X_110 ***** - + +--------------+----------------------+-----------------------------------------+ | Name | Size | Contents | +==============+======================+=========================================+ @@ -60152,11 +60152,11 @@ Full description +--------------+----------------------+-----------------------------------------+ | content | Determined from data | $micheline.beta.michelson_v1.expression | +--------------+----------------------+-----------------------------------------+ - - + + X_113 ***** - + +---------+----------------------+-------------------------------+ | Name | Size | Contents | +=========+======================+===============================+ @@ -60164,11 +60164,11 @@ Full description +---------+----------------------+-------------------------------+ | amount | Determined from data | $Z.t | +---------+----------------------+-------------------------------+ - - + + X_109 ***** - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -60178,14 +60178,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | updates | Variable | sequence of $X_113 | +-----------------------+----------------------+------------------------------------+ - - + + X_143 (Determined from data, 8-bit tag) *************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -60219,11 +60219,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -60235,14 +60235,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_receipt | Variable | sequence of $X_109 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -60250,11 +60250,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_143 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60264,21 +60264,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -60290,14 +60290,14 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_143 | +------------------------------+----------------------+-------------------------------------+ - - + + beta.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag) ************************************************************************************ - + transaction (tag 1) =================== - + +----------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +==================================+======================+=============================================================+ @@ -60317,11 +60317,11 @@ Full description +----------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.transaction | +----------------------------------+----------------------+-------------------------------------------------------------+ - - + + origination (tag 2) =================== - + +--------------------------------+----------------------+-------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+=============================================================+ @@ -60341,11 +60341,11 @@ Full description +--------------------------------+----------------------+-------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.origination | +--------------------------------+----------------------+-------------------------------------------------------------+ - - + + delegation (tag 3) ================== - + +--------------------------------+----------------------+------------------------------------------------------------+ | Name | Size | Contents | +================================+======================+============================================================+ @@ -60361,11 +60361,11 @@ Full description +--------------------------------+----------------------+------------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.delegation | +--------------------------------+----------------------+------------------------------------------------------------+ - - + + event (tag 4) ============= - + +-------------------------------+----------------------+-------------------------------------------------------+ | Name | Size | Contents | +===============================+======================+=======================================================+ @@ -60387,11 +60387,11 @@ Full description +-------------------------------+----------------------+-------------------------------------------------------+ | result | Determined from data | $beta.operation.alpha.internal_operation_result.event | +-------------------------------+----------------------+-------------------------------------------------------+ - - + + X_39 **** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -60405,14 +60405,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag) ***************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -60426,11 +60426,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60440,21 +60440,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -60472,11 +60472,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_185 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -60490,14 +60490,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag) ********************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -60513,11 +60513,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60527,21 +60527,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -60561,11 +60561,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_328 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -60579,14 +60579,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_474 (54 bytes, 8-bit tag) *************************** - + v0 (tag 0) ========== - + +------------+----------+----------------------------------+ | Name | Size | Contents | +============+==========+==================================+ @@ -60598,14 +60598,14 @@ Full description +------------+----------+----------------------------------+ | commitment | 48 bytes | bytes | +------------+----------+----------------------------------+ - - + + beta.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +-------------------+----------------------+------------------------+ | Name | Size | Contents | +===================+======================+========================+ @@ -60615,11 +60615,11 @@ Full description +-------------------+----------------------+------------------------+ | consumed_milligas | Determined from data | $N.t | +-------------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60629,21 +60629,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -60657,11 +60657,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------+----------------------+-------------------------------------+ - - + + X_469 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -60675,14 +60675,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag) ************************************************************************************************* - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -60694,11 +60694,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60708,21 +60708,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -60738,11 +60738,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | consumed_milligas | Determined from data | $N.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_605 ***** - + +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==================================================================+ @@ -60756,24 +60756,24 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+------------------------------------------------------------------+ - - + + X_759 (Determined from data, 8-bit tag) *************************************** - + Public (tag 0) ============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Private (tag 1) =============== - + +-----------+----------------------+------------------------+ | Name | Size | Contents | +===========+======================+========================+ @@ -60781,14 +60781,14 @@ Full description +-----------+----------------------+------------------------+ | whitelist | Determined from data | $X_28 | +-----------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag) *********************************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -60810,11 +60810,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60824,21 +60824,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -60864,11 +60864,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_745 ***** - + +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+============================================================================+ @@ -60882,37 +60882,37 @@ Full description +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+----------------------------------------------------------------------------+ - - + + X_905 (1 byte, 8-bit tag) ************************* - + Conflict_resolved (tag 0) ========================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Timeout (tag 1) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_906 (Determined from data, 8-bit tag) *************************************** - + Loser (tag 0) ============= - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -60922,34 +60922,34 @@ Full description +--------+----------+------------------------+ | player | 21 bytes | $public_key_hash | +--------+----------+------------------------+ - - + + Draw (tag 1) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_907 (Determined from data, 8-bit tag) *************************************** - + Ongoing (tag 0) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Ended (tag 1) ============= - + +--------+----------------------+------------------------+ | Name | Size | Contents | +========+======================+========================+ @@ -60957,14 +60957,14 @@ Full description +--------+----------------------+------------------------+ | result | Determined from data | $X_906 | +--------+----------------------+------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -60978,11 +60978,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -60992,21 +60992,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -61024,11 +61024,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_900 ***** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61042,14 +61042,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag) ******************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -61065,11 +61065,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61079,21 +61079,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -61113,11 +61113,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1199 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61131,14 +61131,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag) ******************************************************************************************* - + Applied (tag 0) =============== - + +-------------------+----------------------+----------------------------------+ | Name | Size | Contents | +===================+======================+==================================+ @@ -61150,11 +61150,11 @@ Full description +-------------------+----------------------+----------------------------------+ | commitment_hash | 32 bytes | bytes | +-------------------+----------------------+----------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61164,21 +61164,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -61194,11 +61194,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | commitment_hash | 32 bytes | bytes | +------------------------------+----------------------+-------------------------------------+ - - + + X_1339 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61212,11 +61212,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_1474 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61230,14 +61230,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag) ********************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -61255,11 +61255,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61269,21 +61269,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -61305,11 +61305,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | size | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1610 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61323,14 +61323,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag) *************************************************************************************** - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -61348,11 +61348,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61362,21 +61362,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -61398,11 +61398,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | paid_storage_size_diff | Determined from data | $Z.t | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_1750 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61416,14 +61416,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + beta.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag) ************************************************************************************************ - + Applied (tag 0) =============== - + +------------------------------------------------------------------+----------------------+------------------------------------+ | Name | Size | Contents | +==================================================================+======================+====================================+ @@ -61439,11 +61439,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+------------------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61453,21 +61453,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------------------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=====================================+ @@ -61487,11 +61487,11 @@ Full description +------------------------------------------------------------------+----------------------+-------------------------------------+ | global_address | 32 bytes | bytes | +------------------------------------------------------------------+----------------------+-------------------------------------+ - - + + X_2308 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61505,11 +61505,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2448 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61523,11 +61523,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2588 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61541,14 +61541,14 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_2808 (Determined from data, 8-bit tag) **************************************** - + To_contract (tag 0) =================== - + +------------------------------------------------------------------+----------------------+------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+==========================================+ @@ -61582,11 +61582,11 @@ Full description +------------------------------------------------------------------+----------------------+------------------------------------------+ | lazy_storage_diff | Determined from data | $beta.lazy_storage_diff | +------------------------------------------------------------------+----------------------+------------------------------------------+ - - + + To_smart_rollup (tag 2) ======================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -61598,14 +61598,14 @@ Full description +-----------------------+----------------------+------------------------------------+ | ticket_updates | Variable | sequence of $X_109 | +-----------------------+----------------------+------------------------------------+ - - + + beta.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag) *********************************************************************************** - + Applied (tag 0) =============== - + +-----------------+----------------------+------------------------+ | Name | Size | Contents | +=================+======================+========================+ @@ -61613,11 +61613,11 @@ Full description +-----------------+----------------------+------------------------+ | Unnamed field 0 | Determined from data | $X_2808 | +-----------------+----------------------+------------------------+ - - + + Failed (tag 1) ============== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61627,21 +61627,21 @@ Full description +-----------------------+----------+------------------------------------+ | errors | Variable | sequence of $X_2 | +-----------------------+----------+------------------------------------+ - - + + Skipped (tag 2) =============== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Backtracked (tag 3) =================== - + +------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==============================+======================+=====================================+ @@ -61653,11 +61653,11 @@ Full description +------------------------------+----------------------+-------------------------------------+ | Unnamed field 0 | Determined from data | $X_2808 | +------------------------------+----------------------+-------------------------------------+ - - + + X_2769 ****** - + +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+======================+=================================================================+ @@ -61671,11 +61671,11 @@ Full description +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ | internal_operation_results | Variable | sequence of $beta.apply_internal_results.alpha.operation_result | +------------------------------------------------------------------+----------------------+-----------------------------------------------------------------+ - - + + X_3107 ****** - + +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=========================================================================+ @@ -61689,11 +61689,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ | consensus_key | 21 bytes | $public_key_hash | +------------------------------------------------------------------+----------+-------------------------------------------------------------------------+ - - + + X_3119 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -61703,11 +61703,11 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | allocated_destination_contract | 1 byte | boolean (0 for false, 255 for true) | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation_metadata.alpha.balance_updates ********************************************* - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61715,11 +61715,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_40 | +-----------------------+----------+------------------------------------+ - - + + X_3127 ****** - + +------------------------------------------------------------------+----------+-------------------------------------+ | Name | Size | Contents | +==================================================================+==========+=====================================+ @@ -61731,14 +61731,14 @@ Full description +------------------------------------------------------------------+----------+-------------------------------------+ | balance_updates | Variable | sequence of $X_40 | +------------------------------------------------------------------+----------+-------------------------------------+ - - + + beta.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag) ************************************************************************************ - + Seed_nonce_revelation (tag 1) ============================= - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -61750,11 +61750,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -61770,11 +61770,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3127 | +-----------------------+----------------------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------------------+--------------------------------------+ | Name | Size | Contents | +=======================+======================+======================================+ @@ -61790,11 +61790,11 @@ Full description +-----------------------+----------------------+--------------------------------------+ | metadata | Determined from data | $X_3127 | +-----------------------+----------------------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -61806,11 +61806,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -61824,11 +61824,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -61842,11 +61842,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -61862,11 +61862,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3127 | +-----------------------+----------------------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+----------------------+------------------------------------------------+ | Name | Size | Contents | +==========+======================+================================================+ @@ -61876,11 +61876,11 @@ Full description +----------+----------------------+------------------------------------------------+ | metadata | Determined from data | $beta.operation_metadata.alpha.balance_updates | +----------+----------------------+------------------------------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -61894,11 +61894,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_3119 | +---------------+----------------------+------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -61914,11 +61914,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3107 | +--------------------+----------------------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -61934,11 +61934,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3107 | +--------------------+----------------------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -61956,11 +61956,11 @@ Full description +--------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_3107 | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -61980,11 +61980,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1474 | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -62010,11 +62010,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2769 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -62040,11 +62040,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2588 | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -62066,11 +62066,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_2448 | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -62092,11 +62092,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_2308 | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -62118,11 +62118,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | metadata | Determined from data | $X_1474 | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -62144,11 +62144,11 @@ Full description +---------------+----------------------+------------------------------+ | metadata | Determined from data | $X_605 | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62168,11 +62168,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1474 | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -62208,11 +62208,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1750 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -62244,11 +62244,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | metadata | Determined from data | $X_1610 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -62270,11 +62270,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_1474 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62294,11 +62294,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1339 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62320,11 +62320,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_1199 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62348,11 +62348,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_900 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62374,11 +62374,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_900 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -62404,11 +62404,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_745 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62430,11 +62430,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_605 | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62454,11 +62454,11 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_469 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -62490,11 +62490,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | metadata | Determined from data | $X_328 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -62518,11 +62518,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | metadata | Determined from data | $X_185 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62544,14 +62544,14 @@ Full description +---------------+----------------------+------------------------+ | metadata | Determined from data | $X_39 | +---------------+----------------------+------------------------+ - - + + X_3145 (Variable, 8-bit tag) **************************** - + Operation_with_metadata (tag 0) =============================== - + +-----------------------+----------+-----------------------------------------------------------------+ | Name | Size | Contents | +=======================+==========+=================================================================+ @@ -62563,11 +62563,11 @@ Full description +-----------------------+----------+-----------------------------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+-----------------------------------------------------------------+ - - + + Operation_without_metadata (tag 1) ================================== - + +-----------------------+----------+--------------------------------------------+ | Name | Size | Contents | +=======================+==========+============================================+ @@ -62579,14 +62579,14 @@ Full description +-----------------------+----------+--------------------------------------------+ | signature | Variable | bytes | +-----------------------+----------+--------------------------------------------+ - - + + bls_signature_prefix (33 bytes, 8-bit tag) ****************************************** - + Bls_prefix (tag 3) ================== - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -62594,14 +62594,14 @@ Full description +-----------------+----------+------------------------+ | Unnamed field 0 | 32 bytes | bytes | +-----------------+----------+------------------------+ - - + + beta.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag) *********************************************************************************** - + Seed_nonce_revelation (tag 1) ============================= - + +-------+----------+----------------------------------+ | Name | Size | Contents | +=======+==========+==================================+ @@ -62611,11 +62611,11 @@ Full description +-------+----------+----------------------------------+ | nonce | 32 bytes | bytes | +-------+----------+----------------------------------+ - - + + Double_attestation_evidence (tag 2) =================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -62629,11 +62629,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.attestation | +-----------------------+----------+------------------------------------+ - - + + Double_baking_evidence (tag 3) ============================== - + +-----------------------+----------+--------------------------------------+ | Name | Size | Contents | +=======================+==========+======================================+ @@ -62647,11 +62647,11 @@ Full description +-----------------------+----------+--------------------------------------+ | bh2 | Variable | $beta.block_header.alpha.full_header | +-----------------------+----------+--------------------------------------+ - - + + Activate_account (tag 4) ======================== - + +--------+----------+------------------------+ | Name | Size | Contents | +========+==========+========================+ @@ -62661,11 +62661,11 @@ Full description +--------+----------+------------------------+ | secret | 20 bytes | bytes | +--------+----------+------------------------+ - - + + Proposals (tag 5) ================= - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -62679,11 +62679,11 @@ Full description +-----------------------+----------+------------------------------------+ | proposals | Variable | sequence of at most 20 bytes | +-----------------------+----------+------------------------------------+ - - + + Ballot (tag 6) ============== - + +----------+----------+----------------------------------+ | Name | Size | Contents | +==========+==========+==================================+ @@ -62697,11 +62697,11 @@ Full description +----------+----------+----------------------------------+ | ballot | 1 byte | signed 8-bit integer | +----------+----------+----------------------------------+ - - + + Double_preattestation_evidence (tag 7) ====================================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -62715,11 +62715,11 @@ Full description +-----------------------+----------+------------------------------------+ | op2 | Variable | $beta.inlined.preattestation | +-----------------------+----------+------------------------------------+ - - + + Vdf_revelation (tag 8) ====================== - + +----------+-----------+------------------------+ | Name | Size | Contents | +==========+===========+========================+ @@ -62727,11 +62727,11 @@ Full description +----------+-----------+------------------------+ | solution | 200 bytes | $X_30 | +----------+-----------+------------------------+ - - + + Drain_delegate (tag 9) ====================== - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -62743,11 +62743,11 @@ Full description +---------------+----------+------------------------+ | destination | 21 bytes | $public_key_hash | +---------------+----------+------------------------+ - - + + Failing_noop (tag 17) ===================== - + +-----------------------+----------+------------------------------------+ | Name | Size | Contents | +=======================+==========+====================================+ @@ -62757,11 +62757,11 @@ Full description +-----------------------+----------+------------------------------------+ | arbitrary | Variable | bytes | +-----------------------+----------+------------------------------------+ - - + + Preattestation (tag 20) ======================= - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -62775,11 +62775,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation (tag 21) ==================== - + +--------------------+----------+------------------------------------+ | Name | Size | Contents | +====================+==========+====================================+ @@ -62793,11 +62793,11 @@ Full description +--------------------+----------+------------------------------------+ | block_payload_hash | 32 bytes | bytes | +--------------------+----------+------------------------------------+ - - + + Attestation_with_dal (tag 23) ============================= - + +--------------------+----------------------+------------------------------------+ | Name | Size | Contents | +====================+======================+====================================+ @@ -62813,11 +62813,11 @@ Full description +--------------------+----------------------+------------------------------------+ | dal_attestation | Determined from data | $Z.t | +--------------------+----------------------+------------------------------------+ - - + + Reveal (tag 107) ================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -62835,11 +62835,11 @@ Full description +---------------+----------------------+------------------------+ | public_key | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transaction (tag 108) ===================== - + +----------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +==================================+======================+=====================================+ @@ -62863,11 +62863,11 @@ Full description +----------------------------------+----------------------+-------------------------------------+ | parameters | Determined from data | $X_29 | +----------------------------------+----------------------+-------------------------------------+ - - + + Origination (tag 109) ===================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -62891,11 +62891,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | script | Determined from data | $beta.scripted.contracts | +--------------------------------+----------------------+-------------------------------------+ - - + + Delegation (tag 110) ==================== - + +--------------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +================================+======================+=====================================+ @@ -62915,11 +62915,11 @@ Full description +--------------------------------+----------------------+-------------------------------------+ | delegate | 21 bytes | $public_key_hash | +--------------------------------+----------------------+-------------------------------------+ - - + + Register_global_constant (tag 111) ================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -62939,11 +62939,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | value | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Set_deposits_limit (tag 112) ============================ - + +-----------------------------+----------------------+-------------------------------------+ | Name | Size | Contents | +=============================+======================+=====================================+ @@ -62963,11 +62963,11 @@ Full description +-----------------------------+----------------------+-------------------------------------+ | limit | Determined from data | $N.t | +-----------------------------+----------------------+-------------------------------------+ - - + + Increase_paid_storage (tag 113) =============================== - + +---------------+----------------------+------------------------------+ | Name | Size | Contents | +===============+======================+==============================+ @@ -62987,11 +62987,11 @@ Full description +---------------+----------------------+------------------------------+ | destination | 22 bytes | $beta.contract_id.originated | +---------------+----------------------+------------------------------+ - - + + Update_consensus_key (tag 114) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63009,11 +63009,11 @@ Full description +---------------+----------------------+------------------------+ | pk | Determined from data | $public_key | +---------------+----------------------+------------------------+ - - + + Transfer_ticket (tag 158) ========================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -63047,11 +63047,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | entrypoint | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_originate (tag 200) ================================ - + +---------------------------------+----------------------+-----------------------------------------------------------+ | Name | Size | Contents | +=================================+======================+===========================================================+ @@ -63081,11 +63081,11 @@ Full description +---------------------------------+----------------------+-----------------------------------------------------------+ | whitelist | Determined from data | $X_28 | +---------------------------------+----------------------+-----------------------------------------------------------+ - - + + Smart_rollup_add_messages (tag 201) =================================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -63105,11 +63105,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | message | Variable | sequence of $X_2 | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_cement (tag 202) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63127,11 +63127,11 @@ Full description +---------------+----------------------+------------------------+ | rollup | 20 bytes | bytes | +---------------+----------------------+------------------------+ - - + + Smart_rollup_publish (tag 203) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63151,11 +63151,11 @@ Full description +---------------+----------------------+------------------------+ | commitment | 76 bytes | $X_25 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_refute (tag 204) ============================= - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63177,11 +63177,11 @@ Full description +---------------+----------------------+------------------------+ | refutation | Determined from data | $X_24 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_timeout (tag 205) ============================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63201,11 +63201,11 @@ Full description +---------------+----------------------+------------------------+ | stakers | 42 bytes | $X_18 | +---------------+----------------------+------------------------+ - - + + Smart_rollup_execute_outbox_message (tag 206) ============================================= - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -63229,11 +63229,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | output_proof | Variable | bytes | +-----------------------+----------------------+------------------------------------+ - - + + Smart_rollup_recover_bond (tag 207) =================================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63253,11 +63253,11 @@ Full description +---------------+----------------------+------------------------+ | staker | 21 bytes | $public_key_hash | +---------------+----------------------+------------------------+ - - + + Dal_publish_commitment (tag 230) ================================ - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63275,11 +63275,11 @@ Full description +---------------+----------------------+------------------------+ | slot_header | 145 bytes | $X_17 | +---------------+----------------------+------------------------+ - - + + Zk_rollup_origination (tag 250) =============================== - + +-----------------------+----------------------+-------------------------------------------------------------------------+ | Name | Size | Contents | +=======================+======================+=========================================================================+ @@ -63309,11 +63309,11 @@ Full description +-----------------------+----------------------+-------------------------------------------------------------------------+ | nb_ops | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------------+----------------------+-------------------------------------------------------------------------+ - - + + Zk_rollup_publish (tag 251) =========================== - + +-----------------------+----------------------+------------------------------------+ | Name | Size | Contents | +=======================+======================+====================================+ @@ -63335,11 +63335,11 @@ Full description +-----------------------+----------------------+------------------------------------+ | op | Variable | sequence of $X_8 | +-----------------------+----------------------+------------------------------------+ - - + + Zk_rollup_update (tag 252) ========================== - + +---------------+----------------------+------------------------+ | Name | Size | Contents | +===============+======================+========================+ @@ -63359,11 +63359,11 @@ Full description +---------------+----------------------+------------------------+ | update | Determined from data | $X_0 | +---------------+----------------------+------------------------+ - - + + Signature_prefix (tag 255) ========================== - + +------------------+----------+------------------------+ | Name | Size | Contents | +==================+==========+========================+ @@ -63371,14 +63371,14 @@ Full description +------------------+----------+------------------------+ | signature_prefix | 33 bytes | $bls_signature_prefix | +------------------+----------+------------------------+ - - + + X_3208 (Variable, 8-bit tag) **************************** - + Operation with too large metadata (tag 0) ========================================= - + +-------------------------------+----------+----------------------------------------------------------------+ | Name | Size | Contents | +===============================+==========+================================================================+ @@ -63388,11 +63388,11 @@ Full description +-------------------------------+----------+----------------------------------------------------------------+ | signature_suffix | 64 bytes | bytes | +-------------------------------+----------+----------------------------------------------------------------+ - - + + Operation without metadata (tag 1) ================================== - + +-------------------------------+----------+----------------------------------------------------------------+ | Name | Size | Contents | +===============================+==========+================================================================+ @@ -63402,11 +63402,11 @@ Full description +-------------------------------+----------+----------------------------------------------------------------+ | signature_suffix | 64 bytes | bytes | +-------------------------------+----------+----------------------------------------------------------------+ - - + + Operation with metadata (tag 2) =============================== - + +-----------------+----------+------------------------+ | Name | Size | Contents | +=================+==========+========================+ @@ -63414,10 +63414,10 @@ Full description +-----------------+----------+------------------------+ | Unnamed field 0 | Variable | $X_3145 | +-----------------+----------+------------------------+ - +
- + .. _GET_..--block_id--operations_metadata_hash : @@ -63425,7 +63425,7 @@ Full description **GET ..//operations_metadata_hash** .. raw:: html - +
@@ -63450,11 +63450,11 @@ Full description +===================================+==========+==========+ | Operation_metadata_list_list_hash | 32 bytes | bytes | +-----------------------------------+----------+----------+ - - + +
- + .. _GET_..--block_id--protocols : @@ -63462,7 +63462,7 @@ Full description **GET ..//protocols** .. raw:: html - +
@@ -63492,11 +63492,11 @@ Full description +---------------+----------+----------+ | next_protocol | 32 bytes | bytes | +---------------+----------+----------+ - - + +
- + .. _GET_..--block_id--resulting_context_hash : @@ -63504,7 +63504,7 @@ Full description **GET ..//resulting_context_hash** .. raw:: html - +
@@ -63529,11 +63529,11 @@ Full description +==============+==========+==========+ | Context_hash | 32 bytes | bytes | +--------------+----------+----------+ - - + +
- + .. _GET_..--block_id--votes--ballot_list : @@ -63541,7 +63541,7 @@ Full description **GET ..//votes/ballot_list** .. raw:: html - +
@@ -63572,14 +63572,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -63587,11 +63587,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -63599,11 +63599,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -63611,11 +63611,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -63623,11 +63623,11 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + X_0 *** - + +--------+----------+----------------------+ | Name | Size | Contents | +========+==========+======================+ @@ -63635,10 +63635,10 @@ Full description +--------+----------+----------------------+ | ballot | 1 byte | signed 8-bit integer | +--------+----------+----------------------+ - +
- + .. _GET_..--block_id--votes--ballots : @@ -63646,7 +63646,7 @@ Full description **GET ..//votes/ballots** .. raw:: html - +
@@ -63675,11 +63675,11 @@ Full description +------+---------+----------------------------------+ | pass | 8 bytes | signed 64-bit big-endian integer | +------+---------+----------------------------------+ - - + +
- + .. _GET_..--block_id--votes--current_period : @@ -63687,7 +63687,7 @@ Full description **GET ..//votes/current_period** .. raw:: html - +
@@ -63732,64 +63732,64 @@ Full description +---------------+---------+----------------------------------+ | remaining | 4 bytes | signed 32-bit big-endian integer | +---------------+---------+----------------------------------+ - - + + X_1 (1 byte, 8-bit tag) *********************** - + Proposal (tag 0) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + exploration (tag 1) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Cooldown (tag 2) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Promotion (tag 3) ================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Adoption (tag 4) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_0 *** - + +----------------+---------+----------------------------------+ | Name | Size | Contents | +================+=========+==================================+ @@ -63799,10 +63799,10 @@ Full description +----------------+---------+----------------------------------+ | start_position | 4 bytes | signed 32-bit big-endian integer | +----------------+---------+----------------------------------+ - +
- + .. _GET_..--block_id--votes--current_proposal : @@ -63810,7 +63810,7 @@ Full description **GET ..//votes/current_proposal** .. raw:: html - +
@@ -63837,24 +63837,24 @@ Full description +=================+======================+==========+ | Unnamed field 0 | Determined from data | $X_0 | +-----------------+----------------------+----------+ - - + + X_0 (Determined from data, 8-bit tag) ************************************* - + None (tag 0) ============ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Some (tag 1) ============ - + +---------------+----------+------------------------+ | Name | Size | Contents | +===============+==========+========================+ @@ -63862,10 +63862,10 @@ Full description +---------------+----------+------------------------+ | Protocol_hash | 32 bytes | bytes | +---------------+----------+------------------------+ - +
- + .. _GET_..--block_id--votes--current_quorum : @@ -63873,7 +63873,7 @@ Full description **GET ..//votes/current_quorum** .. raw:: html - +
@@ -63892,11 +63892,11 @@ Full description +=================+=========+==================================+ | Unnamed field 0 | 4 bytes | signed 32-bit big-endian integer | +-----------------+---------+----------------------------------+ - - + +
- + .. _GET_..--block_id--votes--listings : @@ -63904,7 +63904,7 @@ Full description **GET ..//votes/listings** .. raw:: html - +
@@ -63939,14 +63939,14 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + public_key_hash (21 bytes, 8-bit tag) ************************************* - + Ed25519 (tag 0) =============== - + +-------------------------+----------+------------------------+ | Name | Size | Contents | +=========================+==========+========================+ @@ -63954,11 +63954,11 @@ Full description +-------------------------+----------+------------------------+ | Ed25519.Public_key_hash | 20 bytes | bytes | +-------------------------+----------+------------------------+ - - + + Secp256k1 (tag 1) ================= - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -63966,11 +63966,11 @@ Full description +---------------------------+----------+------------------------+ | Secp256k1.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + P256 (tag 2) ============ - + +----------------------+----------+------------------------+ | Name | Size | Contents | +======================+==========+========================+ @@ -63978,11 +63978,11 @@ Full description +----------------------+----------+------------------------+ | P256.Public_key_hash | 20 bytes | bytes | +----------------------+----------+------------------------+ - - + + Bls (tag 3) =========== - + +---------------------------+----------+------------------------+ | Name | Size | Contents | +===========================+==========+========================+ @@ -63990,11 +63990,11 @@ Full description +---------------------------+----------+------------------------+ | Bls12_381.Public_key_hash | 20 bytes | bytes | +---------------------------+----------+------------------------+ - - + + X_0 *** - + +--------------+----------+----------------------------------+ | Name | Size | Contents | +==============+==========+==================================+ @@ -64002,10 +64002,10 @@ Full description +--------------+----------+----------------------------------+ | voting_power | 8 bytes | signed 64-bit big-endian integer | +--------------+----------+----------------------------------+ - +
- + .. _GET_..--block_id--votes--proposal_count--pkh : @@ -64013,7 +64013,7 @@ Full description **GET ..//votes/proposal_count/** .. raw:: html - +
@@ -64032,11 +64032,11 @@ Full description +=================+=========+=========================================================================+ | Unnamed field 0 | 4 bytes | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 | +-----------------+---------+-------------------------------------------------------------------------+ - - + +
- + .. _GET_..--block_id--votes--proposals : @@ -64044,7 +64044,7 @@ Full description **GET ..//votes/proposals** .. raw:: html - +
@@ -64077,11 +64077,11 @@ Full description +-----------------------+----------+------------------------------------+ | Unnamed field 0 | Variable | sequence of $X_0 | +-----------------------+----------+------------------------------------+ - - + + X_0 *** - + +-----------------+----------+----------------------------------+ | Name | Size | Contents | +=================+==========+==================================+ @@ -64089,10 +64089,10 @@ Full description +-----------------+----------+----------------------------------+ | Unnamed field 1 | 8 bytes | signed 64-bit big-endian integer | +-----------------+----------+----------------------------------+ - +
- + .. _GET_..--block_id--votes--successor_period : @@ -64100,7 +64100,7 @@ Full description **GET ..//votes/successor_period** .. raw:: html - +
@@ -64145,64 +64145,64 @@ Full description +---------------+---------+----------------------------------+ | remaining | 4 bytes | signed 32-bit big-endian integer | +---------------+---------+----------------------------------+ - - + + X_1 (1 byte, 8-bit tag) *********************** - + Proposal (tag 0) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + exploration (tag 1) =================== - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Cooldown (tag 2) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Promotion (tag 3) ================= - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + Adoption (tag 4) ================ - + +------+--------+------------------------+ | Name | Size | Contents | +======+========+========================+ | Tag | 1 byte | unsigned 8-bit integer | +------+--------+------------------------+ - - + + X_0 *** - + +----------------+---------+----------------------------------+ | Name | Size | Contents | +================+=========+==================================+ @@ -64212,10 +64212,10 @@ Full description +----------------+---------+----------------------------------+ | start_position | 4 bytes | signed 32-bit big-endian integer | +----------------+---------+----------------------------------+ - +
- + .. _GET_..--block_id--votes--total_voting_power : @@ -64223,7 +64223,7 @@ Full description **GET ..//votes/total_voting_power** .. raw:: html - +
@@ -64244,11 +64244,7 @@ Full description +=================+=========+==================================+ | Unnamed field 0 | 8 bytes | signed 64-bit big-endian integer | +-----------------+---------+----------------------------------+ - - - -
- - + +
-- GitLab